1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from datetime import date, timedelta
from odoo import Command
from odoo.tests import tagged
from odoo.addons.point_of_sale.tests.test_frontend import TestPointOfSaleHttpCommon
from odoo.addons.point_of_sale.tests.common_setup_methods import setup_product_combo_items
@tagged("post_install", "-at_install")
class TestUi(TestPointOfSaleHttpCommon):
@classmethod
def setUpClass(cls):
super().setUpClass()
# Disable any programs during the test
cls.env['loyalty.program'].search([]).write({'active': False})
cls.promo_programs = cls.env["loyalty.program"]
# code promo program -> discount on specific products
cls.code_promo_program = cls.env['loyalty.program'].create({
'name': 'Promo Code Program - Discount on Specific Products',
'program_type': 'promotion',
'trigger': 'with_code',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'mode': 'with_code',
'code': 'promocode',
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 50,
'discount_mode': 'percent',
'discount_applicability': 'specific',
'discount_product_ids': cls.whiteboard_pen | cls.magnetic_board | cls.desk_organizer,
})],
})
cls.promo_programs |= cls.code_promo_program
# auto promo program on current order
# -> discount on cheapest product
cls.auto_promo_program_current = cls.env['loyalty.program'].create({
'name': 'Auto Promo Program - Cheapest Product',
'program_type': 'promotion',
'trigger': 'auto',
'rule_ids': [(0, 0, {})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 90,
'discount_mode': 'percent',
'discount_applicability': 'cheapest',
})]
})
cls.promo_programs |= cls.auto_promo_program_current
# auto promo program on next order
# -> discount on order (global discount)
cls.auto_promo_program_next = cls.env['loyalty.program'].create({
'name': 'Auto Promo Program - Global Discount',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'future',
'rule_ids': [(0, 0, {})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'order',
})]
})
cls.promo_programs |= cls.auto_promo_program_next
cls.promo_programs.write({
'pos_config_ids': [Command.link(cls.main_pos_config.id)],
})
# coupon program -> free product
cls.coupon_program = cls.env['loyalty.program'].create({
'name': 'Coupon Program - Buy 3 Take 2 Free Product',
'program_type': 'coupons',
'trigger': 'with_code',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'product_ids': cls.desk_organizer,
'reward_point_mode': 'unit',
'minimum_qty': 3,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': cls.desk_organizer.id,
'reward_product_qty': 1,
'required_points': 1.5,
})],
'pos_config_ids': [Command.link(cls.main_pos_config.id)],
})
# Create coupons for the coupon program and change the code
# to be able to use them in the frontend tour.
cls.env["loyalty.generate.wizard"].with_context(
{"active_id": cls.coupon_program.id}
).create({"coupon_qty": 4, 'points_granted': 4.5}).generate_coupons()
cls.coupon1, cls.coupon2, cls.coupon3, cls.coupon4 = cls.coupon_program.coupon_ids
cls.coupon1.write({"code": "1234"})
cls.coupon2.write({"code": "5678"})
cls.coupon3.write({"code": "1357"})
cls.coupon4.write({"code": "2468"})
def setUp(self):
super().setUp()
# Set the programs to the pos config.
# Remove fiscal position and pricelist.
self.main_pos_config.write({
'tax_regime_selection': False,
'use_pricelist': False,
})
self.main_pos_config.with_user(self.pos_user).open_ui()
def create_programs(self, details):
"""
Create loyalty programs based on the details given.
:param details: list of tuple ('name': str, 'program_type': 'gift_card' or 'ewallet')
"""
LoyaltyProgram = self.env['loyalty.program']
programs = {} # map: name -> program
for (name, program_type) in details:
program_id = LoyaltyProgram.create_from_template(program_type)['res_id']
program = LoyaltyProgram.browse(program_id)
program.write({'name': name})
programs[name] = program
return programs
def test_pos_loyalty_tour_basic(self):
"""PoS Loyalty Basic Tour"""
##
# Tour Part 1
# This part will generate coupons for `auto_promo_program_next`
# that will be used in the second part of the tour.
#
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.start_pos_tour("PosLoyaltyTour1")
# check coupon usage
self.assertEqual(self.coupon1.points, 0, 'The coupon should have consumed its points.')
self.assertEqual(self.coupon2.points, 4.5, 'The coupon was used but never validated.')
# check pos_order_count in each program
self.assertEqual(self.auto_promo_program_current.pos_order_count, 3)
self.assertEqual(self.auto_promo_program_next.pos_order_count, 0)
self.assertEqual(self.code_promo_program.pos_order_count, 1)
self.assertEqual(self.coupon_program.pos_order_count, 1)
# check number of generated coupons
self.assertEqual(len(self.auto_promo_program_next.coupon_ids), 5)
# check number of orders in the session
pos_session = self.main_pos_config.current_session_id
self.assertEqual(
len(pos_session.order_ids), 5, msg="5 orders were made in tour part1."
)
##
# Tour Part 2
# The coupons generated in the first part will be used in this tour.
#
# Manually set the code for some `auto_promo_program_next` coupons
# to be able to use them in defining the part2 tour.
(
promo_coupon1,
promo_coupon2,
promo_coupon3,
promo_coupon4,
*_,
) = self.auto_promo_program_next.coupon_ids
promo_coupon1.write({"code": "123456"})
promo_coupon2.write({"code": "345678"})
promo_coupon3.write({"code": "567890"})
promo_coupon4.write({"code": "098765"})
self.coupon2.points = 6
self.coupon3.points = 3
# use here the generated coupon
self.start_pos_tour("PosLoyaltyTour2")
# check pos_order_count in each program
self.assertEqual(self.auto_promo_program_current.pos_order_count, 6)
self.assertEqual(self.auto_promo_program_next.pos_order_count, 2)
self.assertEqual(self.code_promo_program.pos_order_count, 2)
self.assertEqual(self.coupon_program.pos_order_count, 3)
def test_loyalty_validity_dates_and_use(self):
# Tests date validity and max usage for an automatic program.
self.auto_promo_program_current.write({
'date_to': date.today() - timedelta(days=2),
'limit_usage': True,
'max_usage': 1,
})
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
# First tour check that the promotion is not applied
self.start_pos_tour("PosLoyaltyValidity1")
self.auto_promo_program_current.write({
'date_to': date.today() + timedelta(days=2),
})
# Second tour that does 2 orders, the first should have the rewards, the second should not
self.start_pos_tour("PosLoyaltyValidity2")
def test_loyalty_free_product_rewards(self):
free_product = self.env['loyalty.program'].create({
'name': 'Buy 2 Take 1 desk_organizer',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'product_ids': self.desk_organizer,
'reward_point_mode': 'unit',
'minimum_qty': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': self.desk_organizer.id,
'reward_product_qty': 1,
'required_points': 2,
})],
})
free_other_product = self.env['loyalty.program'].create({
'name': 'Buy 3 magnetic_board, Take 1 whiteboard_pen',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'product_ids': self.magnetic_board,
'reward_point_mode': 'unit',
'minimum_qty': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': self.whiteboard_pen.id,
'reward_product_qty': 1,
'required_points': 3,
})],
})
free_multi_product = self.env['loyalty.program'].create({
'name': '2 items of shelves, get desk_pad/monitor_stand free',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'product_ids': (self.wall_shelf | self.small_shelf).ids,
'reward_point_mode': 'unit',
'minimum_qty': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_tag_id': self.env['product.tag'].create({
'name': 'reward_product_tag',
'product_product_ids': (self.desk_pad | self.monitor_stand).ids,
}).id,
'reward_product_qty': 1,
'required_points': 2,
})],
})
(self.promo_programs | self.coupon_program).write({'active': False})
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.start_pos_tour("PosLoyaltyFreeProductTour")
# Keep the tour to generate 4 orders for the free_product and free_other_product programs.
# 2 of them don't use a program.
# 1 uses free_product.
# 1 uses free_other_product.
# This is to take into account the fact that during tours, we can't test the "non-occurence" of something.
# It would be nice to have a check like: Validate that a reward is "not" there.
self.assertEqual(free_product.pos_order_count, 1)
self.assertEqual(free_other_product.pos_order_count, 2)
# There is the 5th order that tests multi_product reward.
# It attempted to add one reward product, removed it, then add the second.
# The second reward was synced with the order.
self.assertEqual(free_multi_product.pos_order_count, 1)
def test_loyalty_free_product_loyalty_program(self):
# In this program, each whiteboard pen gives 1 point.
# 4 points can be used to get a free whiteboard pen.
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
loyalty_program = self.env['loyalty.program'].create({
'name': 'Buy 4 whiteboard_pen, Take 1 whiteboard_pen',
'program_type': 'loyalty',
'trigger': 'auto',
'applies_on': 'both',
'rule_ids': [(0, 0, {
'product_ids': self.whiteboard_pen.ids,
'reward_point_mode': 'unit',
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': self.whiteboard_pen.id,
'reward_product_qty': 1,
'required_points': 4,
})],
})
(self.promo_programs | self.coupon_program).write({'active': False})
partner_aaa = self.env['res.partner'].create({'name': 'AAA Test Partner'})
partner_bbb = self.env['res.partner'].create({'name': 'BBB Test Partner'})
partner_ccc = self.env['res.partner'].create({'name': 'CCC Test Partner'})
# Part 1
self.start_pos_tour("PosLoyaltyLoyaltyProgram1")
aaa_loyalty_card = loyalty_program.coupon_ids.filtered(lambda coupon: coupon.partner_id.id == partner_aaa.id)
self.assertEqual(loyalty_program.pos_order_count, 1)
self.assertAlmostEqual(aaa_loyalty_card.points, 4)
# Part 2
self.start_pos_tour("PosLoyaltyLoyaltyProgram2")
self.assertEqual(loyalty_program.pos_order_count, 2, msg='Only 2 orders should have reward lines.')
self.assertAlmostEqual(aaa_loyalty_card.points, 1)
bbb_loyalty_card = loyalty_program.coupon_ids.filtered(lambda coupon: coupon.partner_id.id == partner_bbb.id)
ccc_loyalty_card = loyalty_program.coupon_ids.filtered(lambda coupon: coupon.partner_id.id == partner_ccc.id)
self.assertAlmostEqual(bbb_loyalty_card.points, 3, msg='Reference: Order3_BBB')
self.assertAlmostEqual(ccc_loyalty_card.points, 4, msg='Reference: Order2_CCC')
reward_orderline = self.main_pos_config.current_session_id.order_ids[-1].lines.filtered(lambda line: line.is_reward_line)
self.assertEqual(len(reward_orderline.ids), 0, msg='Reference: Order4_no_reward. Last order should have no reward line.')
# Part 3
partner_ddd = self.env['res.partner'].create({'name': 'DDD Test Partner'})
self.env['loyalty.card'].create({
'partner_id': partner_ddd.id,
'program_id': loyalty_program.id,
'points': 100,
})
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyChangeRewardQty",
login="pos_user",
)
def test_loyalty_free_product_zero_sale_price_loyalty_program(self):
# In this program, each $ spent gives 1 point.
# 5 points can be used to get a free whiteboard pen.
# and the whiteboard pen sale price is zero
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.whiteboard_pen.write({'lst_price': 1})
loyalty_program = self.env['loyalty.program'].create({
'name': 'Loyalty Program',
'program_type': 'loyalty',
'trigger': 'auto',
'applies_on': 'both',
'rule_ids': [(0, 0, {
'reward_point_amount': 1,
'reward_point_mode': 'money',
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': self.whiteboard_pen.id,
'reward_product_qty': 1,
'required_points': 5,
})],
})
(self.promo_programs | self.coupon_program).write({'active': False})
partner_aaa = self.env['res.partner'].create({'name': 'AAA Test Partner'})
self.start_pos_tour("PosLoyaltyLoyaltyProgram3")
aaa_loyalty_card = loyalty_program.coupon_ids.filtered(lambda coupon: coupon.partner_id.id == partner_aaa.id)
self.assertEqual(loyalty_program.pos_order_count, 1)
self.assertAlmostEqual(aaa_loyalty_card.points, 5.2)
def test_pos_loyalty_tour_max_amount(self):
"""Test the loyalty program with a maximum amount and product with different taxe."""
self.env['loyalty.program'].search([]).write({'active': False})
self.promo_product = self.env["product.product"].create(
{
"name": "Promo Product",
"type": "service",
"list_price": 30,
"available_in_pos": True,
}
)
tax01 = self.env["account.tax"].create({
"name": "C01 Tax",
"amount": "0.00",
})
tax02 = self.env["account.tax"].create({
"name": "C02 Tax",
"amount": "0.00",
})
self.productA = self.env["product.product"].create(
{
"name": "Product A",
"is_storable": True,
"list_price": 15,
"available_in_pos": True,
"taxes_id": [(6, 0, [tax01.id])],
}
)
# create another product with different taxes_id
self.productB = self.env["product.product"].create(
{
"name": "Product B",
"is_storable": True,
"list_price": 25,
"available_in_pos": True,
"taxes_id": [(6, 0, [tax02.id])]
}
)
self.env['loyalty.program'].create({
'name': 'Promo Program - Max Amount',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'product_domain': '[["product_variant_ids.name","=","Promo Product"]]',
'reward_point_mode': 'unit',
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount_product_ids': (self.productA | self.productB).ids,
'required_points': 1,
'discount': 100,
'discount_mode': 'percent',
'discount_applicability': 'specific',
'discount_max_amount': 40,
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.start_pos_tour("PosLoyaltyTour3")
def test_gift_card_program(self):
"""
Test for gift card program.
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
LoyaltyProgram = self.env['loyalty.program']
# Deactivate all other programs to avoid interference
(LoyaltyProgram.search([])).write({'pos_ok': False})
# But activate the gift_card_product_50 because it's shared among new gift card programs.
self.env.ref('loyalty.gift_card_product_50').write({'active': True})
# Create gift card program
gift_card_program = self.create_programs([('arbitrary_name', 'gift_card')])['arbitrary_name']
# Run the tour to create a gift card
self.start_pos_tour("GiftCardProgramTour1")
# Check that gift cards are created
self.assertEqual(len(gift_card_program.coupon_ids), 1)
# Change the code to 044123456 so that we can use it in the next tour.
# Make sure it starts with 044 because it's the prefix of the loyalty cards.
gift_card_program.coupon_ids.code = '044123456'
# Run the tour to use the gift card
self.start_pos_tour("GiftCardProgramTour2")
# Check that gift cards are used
self.assertEqual(gift_card_program.coupon_ids.points, 46.8)
def test_ewallet_program(self):
"""
Test for ewallet program.
- Collect points in EWalletProgramTour1.
- Use points in EWalletProgramTour2.
"""
LoyaltyProgram = self.env['loyalty.program']
# Deactivate all other programs to avoid interference
(LoyaltyProgram.search([])).write({'pos_ok': False})
# But activate the ewallet_product_50 because it's shared among new ewallet programs.
self.env.ref('loyalty.ewallet_product_50').write({'active': True})
# Create ewallet program
ewallet_program = self.create_programs([('arbitrary_name', 'ewallet')])['arbitrary_name']
# Create test partners
partner_aaa = self.env['res.partner'].create({'name': 'AAAAAAA'})
partner_bbb = self.env['res.partner'].create({'name': 'BBBBBBB'})
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
# Run the tour to topup ewallets.
self.start_pos_tour("EWalletProgramTour1")
# Check that ewallets are created for partner_aaa.
ewallet_aaa = self.env['loyalty.card'].search([('partner_id', '=', partner_aaa.id), ('program_id', '=', ewallet_program.id)])
self.assertEqual(len(ewallet_aaa), 1)
self.assertAlmostEqual(ewallet_aaa.points, 50, places=2)
# Check that ewallets are created for partner_bbb.
ewallet_bbb = self.env['loyalty.card'].search([('partner_id', '=', partner_bbb.id), ('program_id', '=', ewallet_program.id)])
self.assertEqual(len(ewallet_bbb), 1)
self.assertAlmostEqual(ewallet_bbb.points, 10, places=2)
# Run the tour consume ewallets.
self.start_pos_tour("EWalletProgramTour2")
# Check that ewallets are consumed for partner_aaa.
self.assertAlmostEqual(ewallet_aaa.points, 0, places=2)
# Check final balance after consumption and refund eWallet for partner_bbb.
self.assertAlmostEqual(ewallet_bbb.points, 20, places=2)
def test_multiple_gift_wallet_programs(self):
"""
Test for multiple gift_card and ewallet programs.
"""
LoyaltyProgram = self.env['loyalty.program']
# Deactivate all other programs to avoid interference
(LoyaltyProgram.search([])).write({'pos_ok': False})
# But activate the gift_card_product_50 and ewallet_product_50 because they're shared among new programs.
self.env.ref('loyalty.gift_card_product_50').write({'active': True})
self.env.ref('loyalty.ewallet_product_50').write({'active': True})
# Create programs
programs = self.create_programs([
('gift_card_1', 'gift_card'),
('gift_card_2', 'gift_card'),
('ewallet_1', 'ewallet'),
('ewallet_2', 'ewallet')
])
# Create test partners
partner_aaa = self.env['res.partner'].create({'name': 'AAAAAAA'})
partner_bbb = self.env['res.partner'].create({'name': 'BBBBBBB'})
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
# Run the tour to topup ewallets.
self.start_pos_tour("MultipleGiftWalletProgramsTour")
# Check the created gift cards.
self.assertEqual(len(programs['gift_card_1'].coupon_ids), 1)
self.assertAlmostEqual(programs['gift_card_1'].coupon_ids.points, 10)
self.assertEqual(len(programs['gift_card_2'].coupon_ids), 1)
self.assertAlmostEqual(programs['gift_card_2'].coupon_ids.points, 20)
# Check the created ewallets.
ewallet_1_aaa = self.env['loyalty.card'].search([('partner_id', '=', partner_aaa.id), ('program_id', '=', programs['ewallet_1'].id)])
self.assertEqual(len(ewallet_1_aaa), 1)
self.assertAlmostEqual(ewallet_1_aaa.points, 18, places=2)
ewallet_2_aaa = self.env['loyalty.card'].search([('partner_id', '=', partner_aaa.id), ('program_id', '=', programs['ewallet_2'].id)])
self.assertEqual(len(ewallet_2_aaa), 1)
self.assertAlmostEqual(ewallet_2_aaa.points, 40, places=2)
ewallet_1_bbb = self.env['loyalty.card'].search([('partner_id', '=', partner_bbb.id), ('program_id', '=', programs['ewallet_1'].id)])
self.assertEqual(len(ewallet_1_bbb), 1)
self.assertAlmostEqual(ewallet_1_bbb.points, 50, places=2)
ewallet_2_bbb = self.env['loyalty.card'].search([('partner_id', '=', partner_bbb.id), ('program_id', '=', programs['ewallet_2'].id)])
self.assertEqual(len(ewallet_2_bbb), 1)
self.assertAlmostEqual(ewallet_2_bbb.points, 0, places=2)
def test_coupon_change_pricelist(self):
"""Test coupon program with different pricelists."""
product_1 = self.env["product.product"].create(
{
"name": "Test Product 1",
"is_storable": True,
"list_price": 25,
"available_in_pos": True,
}
)
tax01 = self.env["account.tax"].create({
"name": "C01 Tax",
"amount": "0.00",
})
product_2 = self.env["product.product"].create(
{
"name": "Test Product 2",
"is_storable": True,
"list_price": 25,
"available_in_pos": True,
"taxes_id": [(6, 0, [tax01.id])],
}
)
pricelist = self.env["product.pricelist"].create({
"name": "Test multi-currency",
"currency_id": self.env.ref("base.USD").id,
"item_ids": [
(0, 0, {
"base": "standard_price",
"product_id": product_1.id,
"compute_price": "percentage",
"percent_price": 50,
}),
(0, 0, {
"base": "standard_price",
"product_id": product_2.id,
"compute_price": "percentage",
"percent_price": 50,
})
]
})
self.cash_journal = self.env['account.journal'].create(
{'name': 'CASH journal', 'type': 'cash', 'code': 'CSH00'})
self.cash_payment_method = self.env['pos.payment.method'].create({
'name': 'Cash Test',
'journal_id': self.cash_journal.id,
'receivable_account_id': self.main_pos_config.payment_method_ids.filtered(lambda s: s.is_cash_count).receivable_account_id.id
})
self.main_pos_config2 = self.main_pos_config.copy({
'payment_method_ids': self.cash_payment_method
})
loyalty_program = self.env['loyalty.program'].create({
'name': 'Coupon Program - Pricelist',
'program_type': 'coupons',
'trigger': 'with_code',
'applies_on': 'current',
'pos_ok': True,
'pos_config_ids': [Command.link(self.main_pos_config2.id)],
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'reward_point_amount': 1,
'minimum_amount': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'required_points': 1,
'discount': 100,
'discount_mode': 'percent',
'discount_applicability': 'order',
})],
})
self.env["loyalty.generate.wizard"].with_context(
{"active_id": loyalty_program.id}
).create({"coupon_qty": 1, 'points_granted': 4.5}).generate_coupons()
self.coupon1 = loyalty_program.coupon_ids
self.coupon1.write({"code": "abcda"})
self.main_pos_config2.write({
'use_pricelist': True,
'available_pricelist_ids': [(4, pricelist.id), (4, self.main_pos_config.pricelist_id.id)],
'pricelist_id': pricelist.id,
})
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.main_pos_config2.with_user(self.pos_user).open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config2.id,
"PosLoyaltyTour4",
login="pos_user",
)
def test_promotion_program_with_global_discount(self):
"""
- Create a promotion with a discount of 10%
- Create a product with no taxes
- Enable the global discount feature, and make sure the Discount product
has a tax set on it.
"""
if not self.env["ir.module.module"].search([("name", "=", "pos_discount"), ("state", "=", "installed")]):
self.skipTest("pos_discount module is required for this test")
LoyaltyProgram = self.env['loyalty.program']
(LoyaltyProgram.search([])).write({'pos_ok': False})
tax = self.env["account.tax"].create({
"name": "C01 Tax",
"amount": "0.00",
})
self.discount_product = self.env["product.product"].create(
{
"name": "Discount Product",
"type": "service",
"list_price": 0,
"available_in_pos": True,
"taxes_id": [(6, 0, [tax.id])],
}
)
self.cash_journal = self.env['account.journal'].create(
{'name': 'CASH journal', 'type': 'cash', 'code': 'CSHDI'})
self.cash_payment_method = self.env['pos.payment.method'].create({
'name': 'Cash Test',
'journal_id': self.cash_journal.id,
'receivable_account_id': self.main_pos_config.payment_method_ids.filtered(
lambda s: s.is_cash_count).receivable_account_id.id
})
self.main_pos_config2 = self.main_pos_config.copy({
'payment_method_ids': self.cash_payment_method
})
self.main_pos_config2.write({
'module_pos_discount' : True,
'discount_product_id': self.discount_product.id,
'discount_pc': 20,
})
self.loyalty_program = self.env['loyalty.program'].create({
'name': 'Coupon Program - Pricelist',
'program_type': 'coupons',
'trigger': 'with_code',
'applies_on': 'current',
'pos_ok': True,
'pos_config_ids': [Command.link(self.main_pos_config.id)],
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'reward_point_amount': 1,
'minimum_amount': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'required_points': 1,
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'order',
})],
})
self.product = self.env["product.product"].create(
{
"name": "Test Product 1",
"is_storable": True,
"list_price": 100,
"available_in_pos": True,
}
)
self.main_pos_config2.with_user(self.pos_user).open_ui()
self.start_pos_tour("PosCouponTour5", pos_config=self.main_pos_config2)
def test_loyalty_program_using_same_product(self):
"""
- Create a loyalty program giving free product A for 30 points
- Trigger the condition of the program using the same product A
"""
LoyaltyProgram = self.env['loyalty.program']
(LoyaltyProgram.search([])).write({'pos_ok': False})
self.product_a = self.env["product.product"].create({
"name": "Test Product A",
"is_storable": True,
"list_price": 10,
"available_in_pos": True,
})
self.loyalty_program = self.env['loyalty.program'].create({
'name': 'Loyalty Program Test',
'program_type': 'loyalty',
'trigger': 'auto',
'applies_on': 'both',
'pos_ok': True,
'pos_config_ids': [Command.link(self.main_pos_config.id)],
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'reward_point_amount': 10,
'minimum_amount': 5,
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'required_points': 30,
'reward_product_id': self.product_a.id,
'reward_product_qty': 1,
})],
})
partner_aaa = self.env['res.partner'].create({'name': 'AAA Partner'})
self.env['loyalty.card'].create({
'partner_id': partner_aaa.id,
'program_id': self.loyalty_program.id,
'points': 30,
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyFreeProductTour2")
def test_refund_with_gift_card(self):
"""When adding a gift card when there is a refund in the order, the amount
of the gift card is set to the amount of the refund"""
LoyaltyProgram = self.env['loyalty.program']
# Deactivate all other programs to avoid interference
(LoyaltyProgram.search([])).write({'pos_ok': False})
# But activate the gift_card_product_50 because it's shared among new gift card programs.
self.env.ref('loyalty.gift_card_product_50').write({'active': True})
# Create gift card program
self.create_programs([('arbitrary_name', 'gift_card')])
self.start_pos_tour("GiftCardWithRefundtTour")
def test_loyalty_program_specific_product(self):
#create a loyalty program with a rules of minimum 2 qty that applies on produt A and B and reward 5 points. The reward is 10$ per order in exchange of 2 points on product A and B
LoyaltyProgram = self.env['loyalty.program']
(LoyaltyProgram.search([])).write({'pos_ok': False})
self.product_a = self.env["product.product"].create({
"name": "Test Product A",
"is_storable": True,
"list_price": 40,
"available_in_pos": True,
"taxes_id": False,
})
self.product_b = self.env["product.product"].create({
"name": "Test Product B",
"is_storable": True,
"list_price": 40,
"available_in_pos": True,
"taxes_id": False,
})
self.loyalty_program = self.env['loyalty.program'].create({
'name': 'Loyalty Program Test',
'program_type': 'loyalty',
'trigger': 'auto',
'pos_ok': True,
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'reward_point_amount': 10,
'minimum_qty': 2,
'product_ids': [(6, 0, [self.product_a.id, self.product_b.id])],
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount_mode': 'per_order',
'required_points': 2,
'discount': 10,
'discount_applicability': 'specific',
'discount_product_ids': (self.product_a | self.product_b).ids,
}), (0, 0, {
'reward_type': 'discount',
'discount_mode': 'per_order',
'required_points': 5,
'discount': 30,
'discount_applicability': 'specific',
'discount_product_ids': (self.product_a | self.product_b).ids,
})],
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltySpecificDiscountTour")
def test_discount_specific_product_with_free_product(self):
LoyaltyProgram = self.env['loyalty.program']
(LoyaltyProgram.search([])).write({'pos_ok': False})
self.product_a = self.env['product.product'].create({
'name': 'Test Product A',
'is_storable': True,
'list_price': 40,
'available_in_pos': True,
'taxes_id': False,
})
self.product_b = self.env['product.product'].create({
'name': 'Test Product B',
'is_storable': True,
'list_price': 80,
'available_in_pos': True,
'taxes_id': False,
})
self.product_c = self.env['product.product'].create({
'name': 'Test Product C',
'is_storable': True,
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
})
self.env['loyalty.program'].create({
'name': 'Discount 10%',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'reward_point_amount': 1,
'minimum_amount': 10,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount_product_ids': self.product_c.ids,
'required_points': 1,
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'specific',
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.env['loyalty.program'].create({
'name': 'Buy product_a Take product_b',
'program_type': 'buy_x_get_y',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'product_ids': self.product_a.ids,
'reward_point_mode': 'unit',
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': self.product_b.id,
'reward_product_qty': 1,
'required_points': 1,
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.main_pos_config.open_ui()
self.start_pos_tour('PosLoyaltySpecificDiscountWithFreeProductTour')
def test_point_per_money_spent(self):
"""Test the point per $ spent feature"""
LoyaltyProgram = self.env['loyalty.program']
(LoyaltyProgram.search([])).write({'pos_ok': False})
self.loyalty_program = self.env['loyalty.program'].create({
'name': 'Loyalty Program Test',
'program_type': 'loyalty',
'trigger': 'auto',
'applies_on': 'both',
'pricelist_ids': [(4, self.main_pos_config.pricelist_id.id)],
'pos_ok': True,
'pos_config_ids': [Command.link(self.main_pos_config.id)],
'rule_ids': [(0, 0, {
'reward_point_mode': 'money',
'reward_point_amount': 0.1,
'minimum_amount': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'required_points': 100,
'discount': 1,
'discount_mode': 'per_point',
})],
})
self.product_a = self.env["product.product"].create({
"name": "Test Product A",
"is_storable": True,
"list_price": 265,
"available_in_pos": True,
"taxes_id": False,
})
partner_aaa = self.env['res.partner'].create({'name': 'AAA Partner'})
self.env['loyalty.card'].create({
'partner_id': partner_aaa.id,
'program_id': self.loyalty_program.id,
'points': 100,
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyTour6")
def test_coupon_program_without_rules(self):
self.env['loyalty.program'].search([]).write({'active': False})
self.env["product.product"].create(
{
"name": "Test Product",
"is_storable": True,
"list_price": 100,
"available_in_pos": True,
"taxes_id": False,
}
)
# creating a coupon program without any rule
loyalty_program = self.env['loyalty.program'].create({
'name': 'Coupon Program without rules',
'program_type': 'coupons',
'trigger': 'with_code',
'applies_on': 'current',
'pos_ok': True,
'rule_ids': [],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'order',
})],
})
self.env["loyalty.generate.wizard"].with_context(
{"active_id": loyalty_program.id}
).create({"coupon_qty": 1, 'points_granted': 1}).generate_coupons()
self.coupon1 = loyalty_program.coupon_ids
self.coupon1.write({"code": "abcda"})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyTour7")
def test_discount_with_reward_product_domain(self):
self.env['loyalty.program'].search([]).write({'active': False})
product_category_base = self.env.ref('product.product_category_1')
product_category_1 = self.env['product.category'].create({
'name': 'Office furnitures',
'parent_id': product_category_base.id
})
self.productA = self.env['product.product'].create(
{
'name': 'Product A',
'is_storable': True,
'list_price': 15,
'available_in_pos': True,
'taxes_id': False,
'categ_id': product_category_base.id
}
)
self.productB = self.env['product.product'].create(
{
'name': 'Product B',
'is_storable': True,
'list_price': 50,
'available_in_pos': True,
'taxes_id': False,
'categ_id': product_category_1.id
}
)
self.env['loyalty.program'].create({
'name': 'Discount on Specific Products',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'required_points': 1,
'discount': 50,
'discount_mode': 'percent',
'discount_applicability': 'specific',
'discount_product_domain': '["&", ("categ_id", "ilike", "office"), ("name", "ilike", "Product B")]',
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltySpecificDiscountWithRewardProductDomainTour")
def test_promotion_program_with_loyalty_program(self):
"""
- Create a promotion with a discount of 10%
- Create a loyalty program with a fixed discount of 10€
- Apply both programs to the order
- Check that no "infinity" discount is applied
"""
self.env['loyalty.program'].search([]).write({'active': False})
self.promo_program = self.env['loyalty.program'].create({
'name': 'Promo Program',
'program_type': 'promotion',
'pos_ok': True,
'rule_ids': [(0, 0, {
'minimum_amount': 0,
'minimum_qty': 0
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'order',
})],
})
self.discount_product = self.env["product.product"].create(
{
"name": "Discount Product",
"type": "service",
"list_price": 0,
"available_in_pos": True,
"taxes_id": False,
}
)
self.test_product = self.env["product.product"].create(
{
"name": "Test Product 1",
"is_storable": True,
"list_price": 100,
"available_in_pos": True,
"taxes_id": False,
}
)
self.loyalty_program = self.env["loyalty.program"].create(
{
"name": "Loyalty Program",
"program_type": "loyalty",
"pos_ok": True,
"rule_ids": [(0, 0, {
"minimum_amount": 1,
"minimum_qty": 1,
"reward_point_mode": "order",
"reward_point_amount": 500,
})],
"reward_ids": [(0, 0, {
"required_points": 500,
"reward_type": "discount",
"discount": "10",
"discount_mode": "per_order",
})],
}
)
partner = self.env['res.partner'].create({'name': 'AAA Partner'})
self.env['loyalty.card'].create({
'partner_id': partner.id,
'program_id': self.loyalty_program.id,
'points': 500,
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyPromotion")
def test_promo_with_free_product(self):
self.env['loyalty.program'].search([]).write({'active': False})
self.tax01 = self.env["account.tax"].create({
"name": "C01 Tax",
"amount": "15.00",
})
self.product_a = self.env["product.product"].create(
{
"name": "Product A",
"is_storable": True,
"list_price": 100,
"available_in_pos": True,
"taxes_id": [(6, 0, self.tax01.ids)],
}
)
self.product_b = self.env["product.product"].create(
{
"name": "Product B",
"is_storable": True,
"list_price": 100,
"available_in_pos": True,
"taxes_id": False,
}
)
self.free_product = self.env['loyalty.program'].create({
'name': 'Free Product A',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'reward_point_mode': 'unit',
'minimum_qty': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': self.product_a.id,
'reward_product_qty': 1,
'required_points': 1,
})],
})
self.env['loyalty.program'].create({
'name': 'Discount 50%',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'reward_point_amount': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'required_points': 1,
'discount': 50,
'discount_mode': 'percent',
})],
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyTour8")
def test_discount_specific_products(self):
self.env['loyalty.program'].search([]).write({'active': False})
product_category_base = self.env.ref('product.product_category_1')
product_category_1 = self.env['product.category'].create({
'name': 'Office furnitures',
'parent_id': product_category_base.id
})
self.productA = self.env['product.product'].create(
{
'name': 'Product A',
'is_storable': True,
'list_price': 15,
'available_in_pos': True,
'taxes_id': False,
'categ_id': product_category_base.id
}
)
self.productB = self.env['product.product'].create(
{
'name': 'Product B',
'is_storable': True,
'list_price': 50,
'available_in_pos': True,
'taxes_id': False,
'categ_id': product_category_1.id
}
)
self.env['loyalty.program'].create({
'name': 'Discount on Specific Products',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'reward_point_mode': 'order',
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'required_points': 1,
'discount': 50,
'discount_mode': 'percent',
'discount_applicability': 'specific',
'discount_product_category_id': product_category_1.id,
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltySpecificDiscountCategoryTour")
def test_promo_with_different_taxes(self):
self.env['loyalty.program'].search([]).write({'active': False})
self.tax01 = self.env["account.tax"].create({
"name": "C01 Tax",
"amount": "10.00",
})
self.product_a = self.env["product.product"].create(
{
"name": "Product A",
"is_storable": True,
"list_price": 100,
"available_in_pos": True,
"taxes_id": [(6, 0, self.tax01.ids)],
}
)
self.product_b = self.env["product.product"].create(
{
"name": "Product B",
"is_storable": True,
"list_price": 100,
"available_in_pos": True,
"taxes_id": False,
}
)
self.free_product = self.env['loyalty.program'].create({
'name': 'Free Product A',
'program_type': 'loyalty',
'trigger': 'auto',
'applies_on': 'both',
'rule_ids': [(0, 0, {
'reward_point_mode': 'money',
'reward_point_amount': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'required_points': 5,
'discount_mode': 'per_order',
'discount': 5,
})],
})
self.env['res.partner'].create({'name': 'AAA Partner'})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyTour9")
def test_ewallet_expiration_date(self):
LoyaltyProgram = self.env['loyalty.program']
# Deactivate all other programs to avoid interference
(LoyaltyProgram.search([])).write({'pos_ok': False})
# But activate the ewallet_product_50 because it's shared among new ewallet programs.
self.env.ref('loyalty.ewallet_product_50').write({'active': True})
# Create ewallet program
ewallet_program = self.create_programs([('arbitrary_name', 'ewallet')])['arbitrary_name']
# Create test partners
partner_aaa = self.env['res.partner'].create({'name': 'AAAA'})
#Create an eWallet for partner_aaa
self.env['loyalty.card'].create({
'partner_id': partner_aaa.id,
'program_id': ewallet_program.id,
'points': 50,
'expiration_date': date(2020, 1, 1),
})
self.main_pos_config.open_ui()
self.start_pos_tour("ExpiredEWalletProgramTour")
def test_loyalty_program_with_tagged_free_product(self):
self.env['loyalty.program'].search([]).write({'active': False})
free_product_tag = self.env['product.tag'].create({'name': 'Free Product'})
self.env['product.product'].create([
{
'name': 'Free Product A',
'is_storable': True,
'list_price': 1,
'available_in_pos': True,
'taxes_id': False,
'product_tag_ids': [(4, free_product_tag.id)],
},
{
'name': 'Free Product B',
'is_storable': True,
'list_price': 1,
'available_in_pos': True,
'taxes_id': False,
'product_tag_ids': [(4, free_product_tag.id)],
},
{
'name': 'Product Test',
'is_storable': True,
'list_price': 1,
'available_in_pos': True,
'taxes_id': False,
}
])
self.env['loyalty.program'].create({
'name': 'Free Product with Tag',
'program_type': 'loyalty',
'applies_on': 'both',
'trigger': 'auto',
'portal_visible': True,
'rule_ids': [(0, 0, {
'reward_point_mode': 'unit',
'minimum_qty': 1,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_tag_id': free_product_tag.id,
'reward_product_qty': 1,
'required_points': 1,
})],
})
self.env['res.partner'].create({'name': 'AAA Partner'})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyTour10")
def test_loyalty_program_with_next_order_coupon_free_product(self):
self.env['loyalty.program'].search([]).write({'active': False})
free_product = self.env['product.product'].create({
'name': 'Free Product',
'is_storable': True,
'list_price': 1,
'available_in_pos': True,
'taxes_id': False,
})
self.env['product.product'].create({
'name': 'Product Test',
'is_storable': True,
'list_price': 50,
'available_in_pos': True,
'taxes_id': False,
})
loyalty_program = self.env['loyalty.program'].create({
'name': 'Next Order Coupon Program',
'program_type': 'next_order_coupons',
'applies_on': 'future',
'trigger': 'auto',
'portal_visible': True,
'rule_ids': [(0, 0, {
'reward_point_mode': 'unit',
'minimum_amount': 100,
'minimum_qty': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_id': free_product.id,
'reward_product_qty': 1,
'required_points': 1,
})],
})
self.env['res.partner'].create({'name': 'AAA Partner'})
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyTour11.1")
coupon = loyalty_program.coupon_ids
self.assertEqual(len(coupon), 1, "Coupon not generated")
self.assertEqual(coupon.points, 3, "Coupon not generated with correct points")
coupon.write({"code": "123456"})
self.main_pos_config.open_ui()
self.start_pos_tour("PosLoyaltyTour11.2")
self.assertEqual(coupon.points, 0, "Coupon not used")
def test_loyalty_program_with_tagged_buy_x_get_y(self):
self.env['loyalty.program'].search([]).write({'active': False})
free_product_tag = self.env['product.tag'].create({'name': 'Free Product'})
self.env['product.product'].create([
{
'name': 'Free Product A',
'list_price': 1,
'available_in_pos': True,
'taxes_id': False,
'product_tag_ids': [(4, free_product_tag.id)],
},
{
'name': 'Free Product B',
'list_price': 5,
'available_in_pos': True,
'taxes_id': False,
'product_tag_ids': [(4, free_product_tag.id)],
},
])
self.env['loyalty.program'].create({
'name': 'Buy X get Y with Tag',
'program_type': 'buy_x_get_y',
'applies_on': 'current',
'trigger': 'auto',
'portal_visible': True,
'rule_ids': [(0, 0, {
'reward_point_mode': 'unit',
'minimum_qty': 1,
'product_tag_id': free_product_tag.id,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_tag_id': free_product_tag.id,
'reward_product_qty': 1,
'required_points': 2,
})],
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyTour12",
login="pos_user",
)
def test_promotion_with_min_amount_and_specific_product_rule(self):
"""
Test that the discount is applied iff the min amount is reached for the specified product.
"""
self.env['loyalty.program'].search([]).action_archive()
self.product_a = self.env['product.product'].create({
'name': "Product A",
'is_storable': True,
'list_price': 20,
'available_in_pos': True,
'taxes_id': False,
})
self.env['product.product'].create({
'name': "Product B",
'is_storable': True,
'list_price': 30,
'available_in_pos': True,
'taxes_id': False,
})
self.env['loyalty.program'].create({
'name': "Discount on specific products",
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [Command.create({
'minimum_amount': 40,
'product_ids': [Command.set(self.product_a.ids)],
})],
'reward_ids': [Command.create({
'reward_type': 'discount',
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'specific',
'discount_product_ids': [Command.set(self.product_a.ids)],
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.main_pos_config.open_ui()
self.start_tour(
'/pos/web?config_id=%d' % self.main_pos_config.id,
'PosLoyaltyMinAmountAndSpecificProductTour',
login='pos_user',
)
def test_gift_card_price_no_tax(self):
"""
Test that the gift card has the right price (especially does not include taxes)
"""
LoyaltyProgram = self.env['loyalty.program']
# Deactivate all other programs to avoid interference
(LoyaltyProgram.search([])).write({'pos_ok': False})
# But activate the gift_card_product_50 because it's shared among new gift card programs.
self.env.ref('loyalty.gift_card_product_50').write({'active': True})
# Create gift card program
gift_card_program = self.create_programs([('arbitrary_name', 'gift_card')])['arbitrary_name']
# Set a tax which should not be applied
gift_card_program.payment_program_discount_product_id.taxes_id = self.env['account.tax'].create({
'name': "Test Tax",
"amount_type": "percent",
'amount': 15,
})
# Generate 1$ gift card.
self.env["loyalty.generate.wizard"].with_context(
{"active_id": gift_card_program.id}
).create({"coupon_qty": 1, 'points_granted': 1}).generate_coupons()
# Change the code of the gift card.
gift_card_program.coupon_ids.code = '043123456'
# Run the tour. It will use the gift card.
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"GiftCardProgramPriceNoTaxTour",
login="pos_user"
)
def test_physical_gift_card_sale(self):
"""
Test that the manual gift card sold has been correctly generated.
"""
LoyaltyProgram = self.env['loyalty.program']
# Deactivate all other programs to avoid interference and activate the gift_card_product_50
LoyaltyProgram.search([]).write({'pos_ok': False})
self.env.ref('loyalty.gift_card_product_50').write({'active': True})
# Create gift card program
gift_card_program = self.create_programs([('arbitrary_name', 'gift_card')])['arbitrary_name']
# Run the tour
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PhysicalGiftCardProgramSaleTour",
login="pos_user"
)
expected_coupons = {
"test-card-0000": 125,
"new-card-0001": 250,
}
# Check if the expected coupon codes are present
coupon_codes = {coupon.code for coupon in gift_card_program.coupon_ids}
for expected_code in expected_coupons:
self.assertIn(expected_code, coupon_codes, f"Expected coupon code '{expected_code}' not found")
# Check if the expected number of coupons are generated
self.assertEqual(len(gift_card_program.coupon_ids), 3, "Three coupons should be generated")
# Check if the coupon codes and points match the expected values
for coupon in gift_card_program.coupon_ids:
if coupon.code in expected_coupons:
self.assertEqual(coupon.points, expected_coupons[coupon.code], f"Coupon points for '{coupon.code}' should be {expected_coupons[coupon.code]}")
else:
# This is the auto-generated coupon with 50 points
self.assertEqual(coupon.points, 100, "Auto-generated coupon should have 100 points")
# Check if the total points of all coupons match the expected value
total_points = sum(coupon.points for coupon in gift_card_program.coupon_ids)
self.assertEqual(total_points, 475, "Total points should be 425")
def test_dont_grant_points_reward_order_lines(self):
"""
Make sure that points granted per unit are only given
for the product -non reward- lines!
"""
self.env['loyalty.program'].search([]).write({'active': False})
loyalty_program = self.env['loyalty.program'].create({
'name': 'Loyalty Program',
'program_type': 'loyalty',
'applies_on': 'both',
'trigger': 'auto',
'rule_ids': [(0, 0, {
'reward_point_amount': 1,
'reward_point_mode': 'unit',
'minimum_qty': 2,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 100,
'discount_mode': 'percent',
'discount_applicability': 'cheapest',
'required_points': 2,
})],
})
partner = self.env['res.partner'].create({'name': 'Test Partner'})
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyDontGrantPointsForRewardOrderLines",
login="pos_user",
)
loyalty_card = loyalty_program.coupon_ids.filtered(lambda coupon: coupon.partner_id.id == partner.id)
self.assertTrue(loyalty_card)
self.assertFalse(loyalty_card.points)
def test_points_awarded_global_discount_code_no_domain_program(self):
"""
Check the calculation for points awarded when there is a global discount applied and the
loyalty program applies on all product (no domain).
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.env['loyalty.program'].search([]).write({'active': False})
self.product_a.write({
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
})
self.auto_promo_program_next.applies_on = 'current'
self.auto_promo_program_next.active = True
loyalty_program = self.create_programs([('Loyalty P', 'loyalty')])['Loyalty P']
partner_aaa = self.env['res.partner'].create({'name': 'AAAA'})
loyalty_card = self.env['loyalty.card'].create({
'program_id': loyalty_program.id,
'partner_id': partner_aaa.id,
'points': 0,
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyPointsGlobalDiscountProgramNoDomain",
login="pos_user",
)
self.assertEqual(loyalty_card.points, 90)
def test_points_awarded_discount_code_no_domain_program(self):
"""
Check the calculation for points awarded when there is a discount coupon applied and the
loyalty program applies on all product (no domain).
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.env['loyalty.program'].search([]).write({'active': False})
self.product_a.write({
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
})
self.product_b.write({
'list_price': 50,
'available_in_pos': True,
'taxes_id': False,
})
loyalty_program = self.create_programs([('Loyalty P', 'loyalty')])['Loyalty P']
loyalty_program.pos_config_ids = [Command.link(self.main_pos_config.id)]
partner_aaa = self.env['res.partner'].create({'name': 'AAAA'})
loyalty_card = self.env['loyalty.card'].create({
'program_id': loyalty_program.id,
'partner_id': partner_aaa.id,
'points': 0,
})
self.code_promo_program.active = True
self.code_promo_program.reward_ids.write(
{
'description': '10% on your order',
'discount': 10,
'discount_applicability': 'order',
'discount_product_ids': None
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyPointsDiscountNoDomainProgramNoDomain",
login="pos_user",
)
self.assertEqual(loyalty_card.points, 135)
def test_points_awarded_general_discount_code_specific_domain_program(self):
"""
Check the calculation for points awarded when there is a discount coupon applied and the
loyalty program applies on a sepcific domain. The discount code has no domain. The product
related to that discount is not in the domain of the loyalty program.
Expected behavior: The discount is not included in the computation of points
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
product_category_base = self.env.ref('product.product_category_1')
product_category_food = self.env['product.category'].create({
'name': 'Food',
'parent_id': product_category_base.id
})
self.env['loyalty.program'].search([]).write({'active': False})
self.product_a.write({
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
'categ_id': product_category_food.id,
})
self.product_b.write({
'list_price': 50,
'available_in_pos': True,
'taxes_id': False,
})
loyalty_program = self.create_programs([('Loyalty P', 'loyalty')])['Loyalty P']
loyalty_program.rule_ids.product_category_id = product_category_food.id
loyalty_program.pos_config_ids = [Command.link(self.main_pos_config.id)]
partner_aaa = self.env['res.partner'].create({'name': 'AAAA'})
loyalty_card = self.env['loyalty.card'].create({
'program_id': loyalty_program.id,
'partner_id': partner_aaa.id,
'points': 0,
})
self.code_promo_program.active = True
self.code_promo_program.reward_ids.write(
{
'description': '10% on your order',
'discount': 10,
'discount_applicability': 'order',
'discount_product_ids': None
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyPointsDiscountNoDomainProgramDomain",
login="pos_user",
)
self.assertEqual(loyalty_card.points, 100)
def test_points_awarded_specific_discount_code_specific_domain_program(self):
"""
Check the calculation for points awarded when there is a discount coupon applied and the
loyalty program applies on a sepcific domain. The discount code has the same domain as the
loyalty program. The product related to that discount code is set up to be included in the
domain of the loyalty program.
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
product_category_base = self.env.ref('product.product_category_1')
product_category_food = self.env['product.category'].create({
'name': 'Food',
'parent_id': product_category_base.id
})
self.env['loyalty.program'].search([]).write({'active': False})
self.product_a.write({
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
'categ_id': product_category_food.id,
})
self.product_b.write({
'list_price': 50,
'available_in_pos': True,
'taxes_id': False,
})
loyalty_program = self.create_programs([('Loyalty P', 'loyalty')])['Loyalty P']
loyalty_program.rule_ids.product_category_id = product_category_food.id
loyalty_program.pos_config_ids = [Command.link(self.main_pos_config.id)]
partner_aaa = self.env['res.partner'].create({'name': 'AAAA'})
loyalty_card = self.env['loyalty.card'].create({
'program_id': loyalty_program.id,
'partner_id': partner_aaa.id,
'points': 0,
})
self.code_promo_program.active = True
self.code_promo_program.reward_ids.write(
{
'description': '10% on your order',
'discount': 10,
'discount_product_ids': None,
'discount_product_category_id': product_category_food.id,
})
discount_product = self.env['product.product'].search([('id', '=', self.code_promo_program.reward_ids.discount_line_product_id.id)])
discount_product.categ_id = product_category_food.id
discount_product.name = "10% on food"
discount_product.available_in_pos = True
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyPointsDiscountWithDomainProgramDomain",
login="pos_user",
)
self.assertEqual(loyalty_card.points, 90)
def test_points_awarded_ewallet(self):
"""
Check the calculation for point awarded when using ewallet
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.env['loyalty.program'].search([]).write({'active': False})
self.product_a.write({
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
})
loyalty_program = self.create_programs([('Loyalty P', 'loyalty')])['Loyalty P']
loyalty_program.pos_config_ids = [Command.link(self.main_pos_config.id)]
partner_aaa = self.env['res.partner'].create({'name': 'AAAA'})
loyalty_card = self.env['loyalty.card'].create({
'program_id': loyalty_program.id,
'partner_id': partner_aaa.id,
'points': 0,
})
ewallet_program = self.env['loyalty.program'].create({
'name': 'eWallet Program',
'program_type': 'ewallet',
'trigger': 'auto',
'applies_on': 'future',
'reward_ids': [Command.create({
'reward_type': 'discount',
'discount_mode': 'per_point',
'discount': 1,
})],
'rule_ids': [Command.create({
'reward_point_amount': '1',
'reward_point_mode': 'money',
'product_ids': self.env.ref('loyalty.ewallet_product_50'),
})],
'trigger_product_ids': self.env.ref('loyalty.ewallet_product_50'),
})
self.env['loyalty.card'].create({
'program_id': ewallet_program.id,
'partner_id': partner_aaa.id,
'points': 10,
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/ui?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyPointsEwallet",
login="pos_user",
)
self.assertEqual(loyalty_card.points, 100)
def test_points_awarded_giftcard(self):
"""
Check the calculation for point awarded when using a gift card
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.env['loyalty.program'].search([]).write({'active': False})
self.env.ref('loyalty.gift_card_product_50').write({'active': True})
# Create gift card program
gift_card_program = self.create_programs([('arbitrary_name', 'gift_card')])['arbitrary_name']
self.product_a.write({
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
})
loyalty_program = self.create_programs([('Loyalty P', 'loyalty')])['Loyalty P']
loyalty_program.pos_config_ids = [Command.link(self.main_pos_config.id)]
partner_aaa = self.env['res.partner'].create({'name': 'AAAA'})
loyalty_card = self.env['loyalty.card'].create({
'program_id': loyalty_program.id,
'partner_id': partner_aaa.id,
'points': 0,
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyPointsGiftcard",
login="pos_user",
)
self.assertEqual(loyalty_card.points, 100)
def test_archived_reward_products(self):
"""
Check that a loyalty_reward with no active reward product is not loaded.
In the case where the reward is based on reward_product_tag_id we also check
the case where at least one reward is active.
"""
self.pos_user.write({
'groups_id': [
(4, self.env.ref('stock.group_stock_user').id),
]
})
self.env['loyalty.program'].search([]).write({'active': False})
free_product_tag = self.env['product.tag'].create({'name': 'Free Product'})
self.env['res.partner'].create({'name': 'AAAA'})
self.product_a.write({
'name': 'Test Product A',
'is_storable': True,
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
})
self.product_b.write({'product_tag_ids': [(4, free_product_tag.id)]})
product_c = self.env['product.product'].create(
{
'name': 'Free Product C',
'list_price': 1,
'available_in_pos': True,
'taxes_id': False,
'product_tag_ids': [(4, free_product_tag.id)],
}
)
LoyaltyProgram = self.env['loyalty.program']
loyalty_program = LoyaltyProgram.create(LoyaltyProgram._get_template_values()['loyalty'])
loyalty_program_tag = LoyaltyProgram.create(LoyaltyProgram._get_template_values()['loyalty'])
loyalty_program.reward_ids.write({
'reward_type': 'product',
'required_points': 1,
'reward_product_id': self.product_b,
})
loyalty_program_tag.reward_ids.write({
'reward_type': 'product',
'required_points': 1,
'reward_product_tag_id': free_product_tag.id,
})
self.product_b.active = False
product_c.active = False
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyArchivedRewardProductsInactive",
login="pos_user",
)
product_c.active = True
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyArchivedRewardProductsActive",
login="pos_user"
)
def test_change_reward_value_with_language(self):
"""
Verify that the displayed language is not en_US.
When a user has another language than en_US set,
he shouldn't have the en_US message displayed but the message of the active language.
For this test, we shouldn't have the description displayed for selecting the reward in en_US but in en_GB.
Description in en_US (unexpected): 'A en_US name which should not be displayed'
Description in en_GB (expected): '$ 2 on your order'
"""
self.env['loyalty.program'].search([]).write({'active': False})
self.env['res.lang']._activate_lang('en_GB')
env_gb = self.env(context={'lang': 'en_GB'})
self.pos_user.write({'lang': 'en_GB'})
loyalty_program = env_gb['loyalty.program'].create({
'name': 'Loyalty Program',
'program_type': 'loyalty',
'applies_on': 'both',
'trigger': 'auto',
'rule_ids': [(0, 0, {
'reward_point_amount': 1,
'reward_point_mode': 'money',
'minimum_qty': 0,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 2,
'discount_mode': 'per_order',
'discount_applicability': 'order',
'required_points': 1,
})],
})
loyalty_program.reward_ids.update_field_translations('description', {'en_US': 'A en_US name which should not be displayed'})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"ChangeRewardValueWithLanguage",
login="pos_user",
)
def test_loyalty_reward_product_tag(self):
"""
We test that a program using product tag to define reward products will
correctly compute the reward lines.
"""
self.env['loyalty.program'].search([]).write({'active': False})
free_product_tag = self.env['product.tag'].create({'name': 'Free Product Tag'})
self.product_a.write({'product_tag_ids': [(4, free_product_tag.id)], 'lst_price': 2, 'taxes_id': None, 'name': 'Product A'})
self.product_b.write({'product_tag_ids': [(4, free_product_tag.id)], 'lst_price': 5, 'taxes_id': None, 'name': 'Product B'})
self.env['loyalty.program'].create({
'name': 'Buy 2 Take 1 Free Product',
'program_type': 'buy_x_get_y',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [(0, 0, {
'product_ids': self.desk_organizer,
'reward_point_mode': 'unit',
'minimum_qty': 2,
})],
'reward_ids': [(0, 0, {
'reward_type': 'product',
'reward_product_tag_id': free_product_tag.id,
'reward_product_qty': 1,
'required_points': 2,
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyRewardProductTag",
login="pos_user",
)
def test_gift_card_rewards_using_taxes(self):
"""
Check the gift card value when the reward has taxes
"""
self.env['loyalty.program'].search([]).write({'active': False})
self.env.ref('loyalty.gift_card_product_50').write({'active': True})
gift_card_program = self.create_programs([('arbitrary_name', 'gift_card')])['arbitrary_name']
self.product_a = self.env["product.product"].create({
"name": "Test Product A",
"list_price": 100,
"available_in_pos": True,
"taxes_id": False,
})
self.tax01 = self.env["account.tax"].create({
"name": "C01 Tax",
"amount": "15.00",
})
gift_card_program.payment_program_discount_product_id.taxes_id = self.tax01
self.main_pos_config.open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosLoyaltyGiftCardTaxes",
login="accountman",
)
self.main_pos_config.current_session_id.close_session_from_ui()
def test_customer_loyalty_points_displayed(self):
"""
Verify that the loyalty points of a customer are well displayed.
This test will only work on big screens because the balance column is not shown when 'ui.isSmall == True'.
"""
self.env['loyalty.program'].search([]).write({'active': False})
john_doe = self.env['res.partner'].create({'name': 'John Doe'})
loyalty_program = self.create_programs([('Loyalty P', 'loyalty')])['Loyalty P']
self.env['loyalty.card'].create({
'partner_id': john_doe.id,
'program_id': loyalty_program.id,
'points': 0
})
self.product_a.write({
'list_price': 100,
'available_in_pos': True,
'taxes_id': False,
})
self.main_pos_config.open_ui()
self.start_tour("/pos/ui?config_id=%d" % self.main_pos_config.id, "CustomerLoyaltyPointsDisplayed", login="pos_user")
def test_cheapest_product_reward_pos_combo(self):
self.env['product.product'].create({
"name": "Expensive product",
"lst_price": 1000,
"available_in_pos": True,
})
self.env['product.product'].create({
"name": "Cheap product",
"lst_price": 1,
"available_in_pos": True,
})
setup_product_combo_items(self)
self.office_combo.write({'lst_price': 50})
self.env['loyalty.program'].search([]).write({'active': False})
self.env['loyalty.program'].create({
'name': 'Auto Promo Program - Cheapest Product',
'program_type': 'promotion',
'trigger': 'auto',
'rule_ids': [(0, 0, {
'minimum_qty': 2,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'cheapest',
})]
})
self.main_pos_config.with_user(self.pos_user).open_ui()
self.start_tour(f"/pos/ui?config_id={self.main_pos_config.id}", 'PosComboCheapestRewardProgram', login="pos_user")
def test_specific_product_reward_pos_combo(self):
setup_product_combo_items(self)
self.office_combo.write({'lst_price': 200})
self.env['loyalty.program'].search([]).write({'active': False})
self.env['loyalty.program'].create({
'name': 'Combo Product Promotion',
'program_type': 'promotion',
'trigger': 'auto',
'rule_ids': [(0, 0, {
'minimum_qty': 1,
'product_ids': self.office_combo.ids,
})],
'reward_ids': [(0, 0, {
'reward_type': 'discount',
'discount': 10,
'discount_mode': 'percent',
'discount_applicability': 'specific',
'discount_product_ids': self.office_combo.ids,
})]
})
self.main_pos_config.with_user(self.pos_user).open_ui()
self.start_tour(f"/pos/ui?config_id={self.main_pos_config.id}", 'PosComboSpecificProductProgram', login="pos_user")
def test_apply_reward_on_product_scan(self):
"""
Test that the rewards are correctly applied if the
product is scanned rather than added by hand.
"""
product = self.product_a
product.write({
'available_in_pos': True,
'barcode': '95412427100283',
})
self.env['loyalty.program'].search([]).write({'active': False})
self.env['loyalty.program'].create({
'name': 'My super program',
'program_type': 'promotion',
'trigger': 'auto',
'applies_on': 'current',
'rule_ids': [Command.create({
'product_ids': [Command.set(product.ids)],
'reward_point_mode': 'order',
})],
'reward_ids': [Command.create({
'reward_type': 'discount',
'discount': 50,
'discount_mode': 'percent',
'discount_applicability': 'order',
})],
'pos_config_ids': [Command.link(self.main_pos_config.id)],
})
self.main_pos_config.with_user(self.pos_admin).open_ui()
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosRewardProductScan",
login="pos_admin",
)
# check the same flow with gs1 nomenclature
self.env.company.nomenclature_id = self.env.ref('barcodes_gs1_nomenclature.default_gs1_nomenclature')
self.start_tour(
"/pos/web?config_id=%d" % self.main_pos_config.id,
"PosRewardProductScanGS1",
login="pos_admin",
)
|