cart2.js
242 KB
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
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
var t = getApp(), app = t, a = t.request, e = require("../../../../utils/common.js"),
s = require("../../../../utils/util.js"), rq = require("../../../../utils/request.js"), ut = s, o = require("../../../../utils/md5.js"), to = getApp();
var oo = t.globalData.setting, os = oo;
var regeneratorRuntime = require('../../../../utils/runtime.js');
var util_pay = require("../../../../utils/pay.js");
var zh_calc = require("zh_calculate.js");
var ladder_calc = require("ladder_calculate.js");
// 防抖函数用定时器
let timer;
Page({
data: {
url: t.globalData.setting.url,
resourceUrl: t.globalData.setting.resourceUrl,
imgUrl: t.globalData.setting.imghost,
goods: null,
order: null,
orderPrices: null,
coupons: null,
coupon: null,
invoiceToggle: !0,
payWithUserMoney: !0,
payWithPoints: !0,
maxWord: 0,
enterAddressPage: !1,
firstEnter: !0,
//页面获取的参数
param: null,
//提交订单的格式
formData: {
order_amount: 0,//支付金额
total_amount: 0,//总价
all_price: 0,//商品卖的总价
pay_points: 0,//使用积分
user_money: 0,//使用余额
couponCode: "",//使用优惠券(多单就用逗号隔开)
shipping_price: 0,//物流费用
},
/*-----------当是购物车结算的时候-------------*/
cartlist: null,
old_cartlist: null,
cartlist_y: null, //购物车原始列表
js_use_money: 0, //是否使用余额
is_all_zt: 1, //是否全部都是自提
/*----------------立即购买---------------------*/
is_b_now: 0, //0是购物车结算 1立即购买
bn_goods: null, //立即购买时候的调用商品
bn_use_money: 0,//是否使用余额
bn_exp_type: 1, //0是物流 1自提
bn_pick: 0, //选择的门店
bn_pickname: "", //选择的门店名称
bn_t_exp_t: 0, //判断商品和门店一起决定的物流自提的方式0 都可以 1自提 2物流
bn_is_order_yh: 1, //是不是订单优惠
bn_is_post_temp: 1, //是不是进行计算包邮模板
bn_plus_cut_price: 0, //显示等级卡会优惠多少钱
/*------------------------*/
user_addr: null,//物流
userinfo: null, //获取会员
/*----------物流选择--------*/
wu_arr: null,
index: 0,
w_sele_index: 0,
//判断页面是返回回来的还是 首次进入的
isclose: 1,
//申请提现的金额
txmon: 0,
yuer: 0,
//提交中,不重复提交
is_summit_ing: 0,
//--更优惠券抵用有关,立即购买的,如果是购物车,就要把相应的值,写入cartlist数组中--
ckeck_quan_price: 0,
check_quan_price_list: '',
check_quan_ware_list: '',
// 设计一个数组来存放已经选择了的券编号,coupon_no是券号,money是面值,coupon_price是真正优惠的价格,数组的下标是pickid
//using_quan[11]={coupon_no:"1212121",money:"20",coupon_price:"45"}
using_quan: {},
open_quan: 0,
//选择的券列表
selected_quan_list: null,
//选择的券的门店
selected_quan_pick: null,
is_close_quan: 0,
disabled: 0,
open_express: 0,//控制选择物流名列表 的属性
is_express: 0, //选中物流的属性
expres_name: "", //点击选定
isopen: 0, //券的说明
is_coupon: 1, //选择券的控制属性
is_shipping_code: "",//插入用户默认地址
wu_arr_txt: "", //要更新的物流的字段
sales_rules: 1, //默认是显示线上库存
isget_by_quan: {}, //是否调用了接口获取包邮券
get_by_quan_list: null, //立即购买的
get_by_quan_list_cart: {}, //购物车的
by_quan_list_cart: null, //点击选择的包邮列表
//如果是全场包邮了,或者是全场不包邮了,就不要选包邮券
is_no_by: {},
is_by: {},
is_quan_by: {},
//--购买赠送的商品--
buy_now_gift_goods: null,
//--订单优惠--
order_prom: {},
//-- 购物车优惠活动 --
prom_goods_map: {},
//-- order_prom_list --
order_prom_list_cart: null,
ispt_goods: 0, //是否平摊至单品,0要平摊 1不平摊
rank_switch: 0, //是不是开同等级卡
show_card: null, //显示的等级卡
card_name: '', //显示的卡的名称
card_cut_price: null,//减价多少钱
show_submit: 0, //提交按钮变正常显示
is_get_offline: 1,
tabs: ['门店自提', '快递邮寄'],
currentTabIndex: 1,
in_zhact_gdmap: {}, //不同门店参与同一活动的限购
hid_inp: 1,
user_note: "",
zhhe_act_map: {}, //组合活动的map表
zuhe_map_good: {}, //组合购的map表
ladder_map: {}, //阶梯促销的map表
is_no_past: 1,
state: 0, //阶梯促销的的立即购买也走购物车流程state=1
show_duo_gift: 0,
send_gf: {}, //多赠品的计算
send_lb: {},
dis_config: null,
bn_use_commission: 0, //是不是使用佣金
cart_use_commission: 0,
cart_commission: 0,
udata: null,//用户预存值,数据
//订单所有搭配购的
all_collocation_list: [],
appoint_pick_keyid: '',
is_pre_cut:0, //是否可以使用预存 0是不可以1的可以
coll_prom:{}, //搭配活动存储
yh_is_xz_yh:{},//优惠促销优惠券使用开关
same_ok:1, //同城配送的控制,默认ok
},
onLoad: function (t) {
wx.setNavigationBarTitle({ title: "填写订单", })
var th = this;
this.setData({ is_b_now: t.is_bnow == undefined ? 0 : t.is_bnow, });
th.data.param = t;
//清理一下,确保最新的系统配置
getApp().globalData.config2 = null;
//清空is_pick_up
getApp().request.put("/api/weshop/useraddress/updatePickUp", {
data: { user_id: getApp().globalData.user_id, is_pickup: 0 },
success: function (s) {
}
});
//阶梯购 或者 组合购的立即购买
if (t.state) {
th.data.state = 1;
}
getApp().promiseGet("/api/wx/weappSendlist/page", {
data: {
store_id: os.stoid,
typeid: "1001"
}
}).then(res => {
if (res.data.code == 0 && res.data.data.pageData.length > 0) {
var template_id = res.data.data.pageData[0].template_id;
th.setData({ template_id: template_id });
}
})
//判断是不是佣金抵扣
getApp().is_distribut(this);
},
onUnload: function () {
this.setData({ isclose: 1 })
},
onHide: function () {
this.setData({
isget_by_quan: {},
is_no_by: {},
is_by: {},
send_gf: {},
send_lb: {},
})
},
//----------子页返回父页触发----------
onShow: function () {
//富友支付取消支付强行回去
var fy=ut.fy_back("/pages/user/order_list/order_list",1);
if(fy) return false;
util_pay.set_fir();
var th = this;
th.data.g_cart_q_time = null;
if (th.data.isclose == 0) {
wx.navigateTo({
url: "/pages/index/index/index"
})
} else {
this.getuser_addr(function (ie) {
console.log("getuser_addr")
console.log(ie)
//地址切换要把包邮券清空
if (!th.data.user_addr || !ie || th.data.user_addr.address_id != ie.address_id) {
var using_quan = th.data.using_quan;
for (var i in using_quan) {
var item = using_quan[i];
if (item.isby == 1) {
var ob = {}, txt = "using_quan[" + i + "]";
ob[txt] = {};
th.setData(ob);
}
}
th.data.isget_by_quan = {};
}
//th.data.prom_goods_map = {};
th.data.is_summit_ing = 0;
//更换地址回来要重新调用计算价钱的接口
if (!th.data.user_addr || th.data.user_addr.address_id != ie.address_id) {
th.setData({ user_addr: ie });
if (th.data.is_b_now == 1) {
if (th.data.bn_goods) {
th.setData({ add_back: 1 });
//th.calculatePrice2();
}
} else {
if (th.data.cartlist) {
th.setData({ add_back: 1 });
//th.calculatePrice();
}
}
} else {
th.setData({ user_addr: ie });
}
});
var is_card_back = getApp().globalData.is_card_back;
//--更新默认地址--,看一下是不是跳到地址页面,同时也不是购买等级卡返回的,这里很重要,否则会重新更新收货物流公司
if (!getApp().globalData.is_cart_old && !is_card_back && !getApp().globalData.plus_buy_back) {
this.update_code();
} else {
getApp().globalData.is_cart_old = 0;
getApp().globalData.plus_buy_back = 0;
}
}
//先获取是否有关闭使用优惠券
getApp().getConfig2(function (ee) {
var json_d = JSON.parse(ee.switch_list);
//测试强行写死,后面一定要删除
//json_d.pickupway=2;
th.data.json_d = json_d;
th.data.ispt_goods = json_d.ispt_goods; //是不是平摊到单品的控制参数赋值
var is_default_logistics = json_d.is_default_logistics;
var is_same_city = json_d.is_same_city;
th.setData({
is_pre_cut:json_d.is_pre_cut,//预存是否可以使用0是不可以 ,1是可以
is_close_quan: json_d.is_close_quan,
sales_rules: ee.sales_rules,
rank_switch: json_d.rank_switch,
is_default_logistics: is_default_logistics,
is_same_city: is_same_city,
appoint_pick_keyid: json_d.appoint_pick_keyid
});
var rank_switch = json_d.rank_switch;
var max_price = -1;
var show_card = null;
var name = "";
//如果有开等级卡的时候,
//因为都是调接口,要返回在计算
if (rank_switch == 2) {
//-- 获取所有的等级卡, --
getApp().request.promiseGet("/api/weshop/plus/vip/mem/bership/list?storeId=" + os.stoid,
{}).then(res => {
if (res.data.code == 0) {
var plusCard = res.data.data;
//-- 循环判断,拿到最贵的那张卡 --
for (var ih in plusCard) {
if (plusCard[ih].IsStopBuy == true) {
continue;
}
if (max_price < 0) {
max_price = plusCard[ih].CardFee;
name = 'card' + plusCard[ih]['CorrPrice'];
show_card = plusCard[ih];
} else {
if (max_price < plusCard[ih].CardFee) {
max_price = plusCard[ih].CardFee;
name = 'card' + plusCard[ih]['CorrPrice'];
show_card = plusCard[ih];
}
}
}
if (show_card) {
name = name.toLowerCase();
th.setData({ card_name: name, show_card: show_card })
}
}
//-----先获取物流,再获取用户信息,再展示页面-----
th.get_wuliu(th.get_info(th.show_page));
})
} else {
//-----先获取物流,再获取用户信息,再展示页面-----
th.get_wuliu(th.get_info(th.show_page));
}
}, 1);
//值在这里换
getApp().globalData.plus_buy_back = 0;
},
//获取预存款余额
async getAdvancesum() {
/*-----获取线下会员的预存款和优惠券的数量-----*/
let url = "/api/weshop/users/getinfo/" + os.stoid + "/" + getApp().globalData.userInfo.user_id
await getApp().request.promiseGet(url, {
data: {
isShowLoading: 0,
},
}).then(su => {
if (su.data.code == 0 && su.data.data) {
var data = su.data.data;
if (!data) data = {};
data.cashcount = parseInt(data.cashcount);
this.setData({
udata: data,
});
}
})
},
//购物车预存开启关闭
prestore(e) {
let ind = e.currentTarget.dataset.ind;
let item = e.currentTarget.dataset.item
let txt = 'cartlist[' + ind + '].yck_off';
let txt1 = 'old_cartlist[' + ind + '].yck_off';
if (item.yck_off == 2) {
this.setData({ [txt]: 1, [txt1]: 1 })
} else if (item.yck_off == 1) {
this.setData({ [txt]: 2, [txt1]: 2 })
}
this.calculatePrice()//计算金额
},
//直接购买预存开启关闭
prestore2() {
let txt = 'bn_goods.yck_off';
if (this.data.bn_goods.yck_off == 2) {
this.setData({ [txt]: 1 })
} else if (this.data.bn_goods.yck_off == 1) {
this.setData({ [txt]: 2 })
}
//搭配购直接购买特殊处理
if(this.data.collocation_goods && this.data.collocation_goods.length>0 && this.data.cartlist){
let txt = 'cartlist[0].yck_off';
let txt1 = 'old_cartlist[0].yck_off';
if (this.data.cartlist[0].yck_off == 2) {
this.setData({ [txt]: 1, [txt1]: 1 })
} else if (this.data.cartlist[0].yck_off == 1) {
this.setData({ [txt]: 2, [txt1]: 2 })
}
this.calculatePrice()//计算金额
}else{
this.calculatePrice2()//计算金额
}
},
//计算商品预存款前置方法------------------------------------
async beforAdvancesum(cartList) {
// let cartList= this.data.cartlist
// let cartList= arr
// let length = cartList.length
if(!this.data.is_pre_cut){
return {}
}
wx.showLoading({
title: '加载中',
mask: true
})
// for (let i = 0; i < length; i++) {
let item = cartList;
let goods = item.goods
let keyid = item.sto.keyid
let listform = []
goods.map(ite => {
let obj = {
wareno: ite.goods_sn,
price: ite.goods_price,
qty: ite.goods_num
}
listform.push(obj)
})
let arr = await this.getGoodsAdvancesum(keyid, listform, cartList)
// }
wx.hideLoading()
return arr
},
//计算商品预存款请求方法------------------------------------
async getGoodsAdvancesum(storageid, listform, cartList) {
if(!getApp().globalData.config){
await getApp().request.promiseGet("/api/weshop/store/get/" + os.stoid,{
}).then(res=>{
if(res.data.code==0){
getApp().globalData.config = res.data.data
}
})
}
if(!getApp().globalData.config) return false;
let res = await getApp().request.promisePost(`/api/weshop/delphiapi/saveErpApi`, {
data: {
accdb: getApp().globalData.config.erpid,
ApiName: 'api.pos.shop.advancesum.seek',
usercode: "admin",
vipid: this.data.userinfo.erpvipid,
oddsum: "0",
advancesum: cartList.order_amount,
storageid: storageid,
listform
},
is_json: 1
})
console.log('计算商品的预存款');
console.log(res);
let yck = 0
let yckid = ""
let yckIdArr = []
let pre_json = null
if (res.data.code == 0 && res.data.data && res.data.data.length > 0) {
let resData = res.data.data
resData.map(ite => {
yck += ite.advancesum*1
yckIdArr.push(ite.advanceitemid)
})
pre_json = resData
}
yckid = yckIdArr.join()
let obj = {}
if (yck * 1 > 0) {
obj.yck_off = 1
} else {
obj.yck_off = 0
}
obj.yck = yck.toFixed(2)
obj.yckid = yckid
obj.pre_json = pre_json
return obj
},
//支付成功后预存处理请求
async setAdvancesum(item, number) {
let pre_json = item.pre_json ? JSON.parse(item.pre_json) : []
if (!pre_json.length) { return }
let listform = []
pre_json.map(ite => {
let ob = {
advanceitemid: ite.advanceitemid,
insum: "",
outsum: ite.advancesum,
remark: ""
}
listform.push(ob)
})
let obj = {
accdb: getApp().globalData.config.erpid,
ApiName: 'api.pos.shop.vipinfolist.save',
vipid: this.data.userinfo.erpvipid,
storageid: item.keyid,
operator: "admin",
number,
listform,
}
let res = await getApp().request.promisePost(`/api/weshop/delphiapi/saveErpApi`, {
data: obj,
is_json: 1
})
},
//-------------------获取物流---------------
get_wuliu(func) {
var th = this;
to.getwuliu(function (e) {
//系统是是否开启了默认的物流
if (th.data.is_default_logistics) {
//如果第一个不是开启默认,说明要让用户自己选
if (!e[0].is_default) {
th.setData({ is_default_logistics: 0 });
}
}
th.setData({ wu_arr: e })
typeof func == "function" && func();
})
},
//------获取会员信息-----先获取用户信息,在进行下一步---
get_info: function (func) {
var user_id = t.globalData.user_id;
to.auth.get_u(func);
},
//------获取会员收货地址-----
getuser_addr: function (func) {
var th = this;
a.get("/api/weshop/useraddress/page", {
data: { user_id: to.globalData.user_id, store_id: oo.stoid, pageSize: 600, t: Math.random() },
success: function (su) {
var item = null;
if (su.data.code == 0 && su.data.data && su.data.data.pageData) {
var user_addr = su.data.data.pageData;
var def_item = null;
for (var i = 0; i < user_addr.length; i++) {
if (user_addr[i]['is_default'] == 1) {
def_item = user_addr[i];
}
if (user_addr[i]['is_pickup'] == 1) {
item = user_addr[i];
}
}
if (item == null) item = def_item;
if (item == null) item = user_addr[0];
}
if (item == undefined) item = null;
if (!item) th.setData({ user_addr: null }); //地址为空的时候,要清空,因为返回的时候,有缓存
func(item);
}
});
},
//----------------展示页面,是再获取用户信息之后--------------
async show_page() {
var th = this, ta = this.data.param;
//获取用户预存款
await th.getAdvancesum()
//会员的信息,要获取最新
var user = getApp().globalData.userInfo;
getApp().request.get("/api/weshop/users/get/" + oo.stoid + "/" + user.user_id, {
data: { r: Math.random() },
success: function (e) {
getApp().globalData.userInfo = e.data.data;
th.setData({ userinfo: e.data.data });
//选获取地址
th.getuser_addr(function (addr) {
th.setData({ user_addr: addr });
//--------------------------立即购买------------------
if (ta.is_bnow == 1) {
//读取门店
//to.get_allsto(function (e) {
//th.setData({ allsto: e });
//获取立即购买的商品信息
th.get_buy_goods(ta.goods_id);
//});
} else {
//------------------------购物车结算----------------------
//读取门店
//to.get_allsto(function (e) {
//th.setData({ allsto: e });
//-------获取购物车已经选择的商品--------
if (!th.data.old_cartlist) {
th.data.prom_goods_map = {};
th.get_cart();
}
else {
th.calculatePrice();
}
//})
}
});
//获取提现金额
getApp().request.get("/api/weshop/withdrawals/summoney", {
data: { user_id: to.globalData.user_id, store_id: oo.stoid, status: 0 },
success: function (su) {
if (su.data.code == 0) {
var yuer = parseFloat(th.data.userinfo.user_money -
(th.data.userinfo.frozen_money > 0 ? th.data.userinfo.frozen_money : 0) - su.data.data.summoney).toFixed(2);
th.setData({ txmon: su.data.data.summoney, yuer: yuer });
}
}
});
},
});
},
//-- 获取搭配购商品 --
async set_collection(gd, arr, index) {
var th = this;
var user_id = getApp().globalData.user_id;
var collocation_list = [];
var pick = null;
var distr_t = 0;
//如果是购物车的时候,
if (arr) {
var idx = th.data.allsto.findIndex(function (e) {
return e.pickup_id == arr[index].pick_id
})
pick = th.data.allsto[idx];
var get_gd = null;
await getApp().request.promiseGet("/api/weshop/goods/get/" + os.stoid + "/" + gd.goods_id, {
}).then(res1 => {
if (res1.data.code == 0) {
get_gd = res1.data.data;
}
})
distr_t = pick.distr_type || get_gd.distr_type;
} else {
var gg = to.get_b_now();
//---获取门店---
await getApp().request.promiseGet("/api/weshop/pickup/get/" + oo.stoid + "/" + gg.pick_id, {})
.then(res => {
pick = res.data.data;
});
distr_t = gd.distr_type || pick.distr_type;
}
var prom=null;
await getApp().request.promiseGet("/api/weshop/goods/getGoodsPromListNew/"
+ os.stoid + "/" + gd.goods_id + "/0/" + user_id, {
}).then(res => {
if (res.data.code == 0 && res.data.data) {
var r_data = res.data.data;
if (r_data.collocationList) {
collocation_list = r_data.collocationList;
prom= r_data.collocationPromList;
}
}
})
if (!collocation_list) return null;
var new_arr = collocation_list;
// for (let i = 0; i < collocation_list.length; i++) {
// var item0 = collocation_list[i];
// //判断物流配送一样的
// if (item0.distr_type == 0 || item0.distr_type == distr_t) {
// new_arr.push(item0);
// }
// }
if (!new_arr.length) return null;
this.data.coll_prom[prom.id]=prom;
for (let i = 0; i < new_arr.length; i++) {
new_arr[i].is_coupon=prom.is_coupon;
}
if (arr) {
arr[index].collocationList = new_arr;
}
else th.setData({
all_collocation_list: new_arr
})
},
//-----真的获取购物车,入口--------
get_cart: function () {
var th = this, app = getApp();
var state = 0;
if (th.data.state) state = 1;
a.get("/api/weshop/cart/list", {
data: {
user_id: to.globalData.user_id, selected: 1, state: state,
store_id: oo.stoid, pageSize: 600
},
success: async function (su) {
//按门店分类的数组
var arr = new Array();
var carr = su.data.data.pageData;
th.setData({ is_all_zt: 1 });
//-- 找出所有的门店 --
var pick_id_arr = []; var len = carr.length;
for (var i = 0; i < len; i++) {
if (pick_id_arr.length == 0 || pick_id_arr.indexOf(carr[i].pick_id) == -1)
pick_id_arr.push(carr[i].pick_id);
}
var req_d = {
store_id: os.stoid, ids: pick_id_arr.join(',')
}
//-- 获取门店的列表 --
await getApp().request.promiseGet("/api/weshop/pickup/list", { data: req_d }).then(res => {
if (ut.ajax_ok(res)) {
th.data.allsto = res.data.data.pageData;
}
})
th.data.cartlist_y = carr; //存储原始购物车列表
th.data.in_zhact_gdmap = {};
//---是不是购买等级卡成功的返回---等级卡显示的判断---
var is_card_back = getApp().globalData.is_card_back;
//-- 判断组合购是总数量是不是存在 --
var no_zh_num={};
for (var i = 0; i < carr.length; i++) {
var item1 = carr[i];
//把已经购买了多少见的内容填入
var goodsbuynum = 0, promgoodsbuynum = 0;
//--要获得商品,该用户买了多少件,同步应用--
await getApp().request.promiseGet("/api/weshop/ordergoods/getUserBuyGoodsNum", {
data: {
store_id: os.stoid,
user_id: getApp().globalData.user_id,
goods_id: item1.goods_id,
prom_type: item1.prom_type,
prom_id: item1.prom_id
},
}).then(res => {
var buy_num_data = res.data.data;
if (buy_num_data.promgoodsbuynum) {
promgoodsbuynum = buy_num_data.promgoodsbuynum;
}
goodsbuynum = buy_num_data.goodsbuynum;
})
//如果有购买活动
item1.promgoodsbuynum = promgoodsbuynum;
//默认是包邮和优惠的
item1.is_order_yh=1;
item1.is_post_temp=1;
//如果是秒杀,团购的时候
if([1,2,6].indexOf(item1.prom_type)>-1){
var url= "/api/weshop/activitylist/getSJGoodsPriceNew/" + os.stoid
+ "/" + item1.goods_id + "/"+item1.prom_type+"/" + item1.prom_id + "/" + app.globalData.user_id;
await app.request.promiseGet(url,{}).then(res=>{
if(res.data.code==0){
console.log(res.data.data,"111");
item1.is_order_yh=res.data.data.is_order_yh;
item1.is_post_temp=res.data.data.is_post_temp;
}
})
}
//要把优惠活动加入,prom_goods_map中,赠品不要运算,代发商品不算优惠
if (item1.prom_type == 3 && item1.is_gift != 1 && !item1.whsle_id) {
// th.check_is_youhui(item1.goods_id, item1.pick_id);
//增加优惠活动次数限制
let limit_num= await th.getprom(item1) //活动限制次数
if(!limit_num){
await th.add_prom_goods_map(item1);
// item1.prom_id=''
// item1.prom_type=''
}else{
let user_pre_buynum = await th.getUserBuyPromNum_pre(item1.prom_id) //用户已经参与次数
if(user_pre_buynum<limit_num){
await th.add_prom_goods_map(item1);
}else{
// await th.add_prom_goods_map(item1);
item1.prom_id=''
item1.prom_type=''
}
}
}
//-- 如果组合购的总数量不足的处理 --
if(no_zh_num[item1.prom_id] && item1.prom_type == 7){
item1.prom_type = 0;
item1.prom_type1 = 0;
item1.prom_id = 0;
item1.prom_id1 = 0
}
//要把组合购的东西拿出来算一下,同时组合购的总数量要有存在
if (item1.prom_type == 7) {
if (!th.data.zuhe_map_good[item1.prom_id]) {
var isok = 1;
var is_flag = 1;
var store_count_ok=1;
//如果有组合购
var url = "/api/weshop/prom/zhbuy/get/" + os.stoid + "/" + item1.prom_id + '/' + getApp().globalData.userInfo.user_id;
await getApp().request.promiseGet(url, {}).then(res => {
if (res.data.code == 0 && res.data.data) {
//如果活动已经结束
if (res.data.data.is_end == 1) {
isok = 0;
}
if (ut.gettimestamp() > res.data.data.end_time) {
isok = 0;
}
item1.act = res.data.data;
//-- 在这里要判断一下活动的组合购总数量 --
if(item1.act.zh_num>0 && item1.act.zh_buy_num>=item1.act.zh_num){
store_count_ok = 0;
no_zh_num[item1.prom_id]=1;
//-- 清理一下活动的状态 --
item1.prom_type = 0;
item1.prom_type1 = 0;
item1.prom_id = 0;
item1.prom_id1 = 0
}else{
th.data.zhhe_act_map[item1.prom_id] = res.data.data;
}
} else {
//未找到商品的活动
is_flag = 0;
}
})
if (!isok) {
getApp().my_warnning("组合购的活动已经过期", 0, th);
return false;
}
//------ 先增组合活动的总数量的时候 -------
if(store_count_ok) {
var url1 = "/api/weshop/prom/zhbuyGoods/page";
var req_data = {
page: 1,
pageSize: 2000,
store_id: os.stoid,
zh_id: item1.prom_id,
}
await getApp().request.promiseGet(url1, {
data: req_data
}).then(res => {
if (ut.ajax_ok(res)) {
var gdlist = res.data.data.pageData;
gdlist.forEach(i => {
if (item1.goods_id == i.goods_id && !is_flag) {
item1.prom_type = 0;
item1.prom_type1 = 0;
item1.prom_id = 0;
item1.prom_id1 = 0
}
})
th.data.zuhe_map_good[item1.prom_id] = gdlist;
}
})
}
}
else {
item1.act = th.data.zhhe_act_map[item1.prom_id];
}
}
if (item1.prom_type == 10) {
if (!th.data.ladder_map[item1.prom_id]) {
//如果有预售
var isok = 1;
var is_flag = 1;
var act = null;
var url = "/api/weshop/prom/ladderForm/get/" + os.stoid + "/" + item1.prom_id;
await getApp().request.promiseGet(url, {}).then(res => {
console.log(res, 1000);
if (res.data.code == 0 && res.data.data) {
if (res.data.data.isuse != 1) {
isok = 0;
}
//如果活动已经结束
if (res.data.data.is_end == 1) {
isok = 0;
}
//已经结束
if (ut.gettimestamp() > res.data.data.end_time) {
isok = 0;
}
//还未开始
if (ut.gettimestamp() < res.data.data.start_time) {
isok = 0;
}
act = res.data.data;
} else {
//未找到商品的活动
is_flag = 0;
}
})
if (!isok) {
var url = '/api/weshop/cart/del/' + oo.stoid + '/' + item1.id;
getApp().request.delete(url, {});
th.data.ladder_map[item1.prom_id] = -1;
continue;
}
th.data.ladder_map[item1.prom_id] = act;
//-- 获取阶梯规则 --
var url1 = "/api/weshop/prom/ladderList/list";
var req_data = {
store_id: os.stoid,
form_id: item1.prom_id,
}
await getApp().request.promiseGet(url1, {
data: req_data
}).then(rs1 => {
if (rs1.data.code == 0 && rs1.data.data) {
var gdlist = rs1.data.data;
th.data.ladder_map[item1.prom_id].ladder_list = gdlist;
}
})
}
}
//-- 判断一下,获取搭配购的消息 --
if ((item1.prom_type == 0 || item1.prom_type == 5) && (!carr[i].collocationList || !carr[i].collocationList.length)) {
await th.set_collection(item1, carr, i);
}
}
//在分组的时候,就不要再调用接口,await
for (var i = 0; i < carr.length; i++) {
var item = carr[i];
//-- 如果是等级会员注册返回 --
if (is_card_back) {
th.data.card_name = th.data.userinfo.card_field;
//如果是秒杀的返回,就要把活动弄回0
if (item['prom_type'] == 1) {
item['prom_type'] = 0;
item['prom_id'] = 0;
}
// 拼团,搭配购不计算,赠品也不计算
if (item['prom_type'] != 5 && item['prom_type'] != 6 && !item.is_gift && !item['is_collocation'] && item.goods_price > item[th.data.card_name]) {
item.goods_price = item[th.data.card_name];
carr[i].goods_price = item[th.data.card_name];
}
} else {
// 拼团,搭配购不计算,赠品也不计算,同时会员还未购买等级会员
if (item[th.data.card_name] > 0 && item['prom_type'] != 5 && item['prom_type'] != 6 && !th.data.userinfo.card_field
&& !item.is_gift && !item['is_collocation'] && item.goods_price > item[th.data.card_name]) {
item.cut_price1 = item.goods_price - item[th.data.card_name];
carr[i].cut_price1 = (item.goods_price - item[th.data.card_name]) * item.goods_num;
}
}
item.original_img = oo.imghost + item.original_img;
var car_item = item;
/*----接口要弄出来的,先顶着-----*/
var pcid = car_item.pick_id;
var find = 0;
//----如果有就加进去,没有就新增一个----
//-----------循环查找门店-------------
if (arr.length > 0) {
for (var j = 0; j < arr.length; j++) {
if (arr[j].pickup_id == pcid) {
if (item.is_gift != 1) {
//确定配送方式
if (arr[j].distr_t == 0) {
arr[j].distr_t = car_item.distr_type;
}
var e_t = 0
switch (arr[j].distr_t) {
case 0:
e_t = 1;
if (th.data.json_d.pickupway && th.data.json_d.pickupway == 1) e_t = 0;
break;
case 1:
e_t = 1;
break;
case 2:
e_t = 0;
break;
}
arr[j].exp_type = e_t;
if (e_t == 0) th.setData({ is_all_zt: 0 });
//else if (e_t == 1) th.setData({ is_all_zt: 1 });
}
//-- 把等级卡会优惠多少钱装进去 --
if (car_item.cut_price1) arr[j].card_cut_price += car_item.cut_price1;
arr[j].goods.push(car_item);
if (car_item.collocationList) {
if (!arr[j].collocationList) arr[j].collocationList = car_item.collocationList;
else {
var arr_new = [...arr[j].collocationList, ...car_item.collocationList];
arr[j].collocationList = arr_new;
}
}
find = 1;
break;
}
}
}
//------如果没有找到-----
if (find == 0) {
var pikname = '', sto = null;
//----找到门店名称-----
for (var k = 0; k < th.data.allsto.length; k++) {
if (pcid == th.data.allsto[k].pickup_id) {
pikname = th.data.allsto[k].pickup_name;
sto = th.data.allsto[k];
break;
}
}
var e_t = 0, dis_t = 0;//物流方式,配送方式
if (item.distr_type == 0) {
dis_t = sto.distr_type;
} else {
dis_t = item.distr_type;
}
switch (dis_t) {
case 0:
e_t = 1;
//-- 系统后台有设置要默认的 --
if (th.data.json_d.pickupway && th.data.json_d.pickupway == 1) e_t = 0;
break;
case 1:
e_t = 1;
break;
case 2:
e_t = 0;
break;
}
//如果是物流的话,全部自提的控制要弄成0
if (e_t == 0) th.setData({ is_all_zt: 0 });
//else th.setData({ is_all_zt: 1 });
var narr = new Array();
narr.push(car_item);
//-----------拼装购物车结算的数组,如果有默认物流时要用默认物流编号,计算默认的物流,不管是不是自提都算一下-----------------
var m_wind = 0, def_exp_code = getApp().globalData.userInfo.def_exp_code;
if (def_exp_code && !th.data.is_default_logistics) {
for (var k = 0; k < th.data.wu_arr.length; k++) {
var item = th.data.wu_arr[k];
if (def_exp_code == item.code) {
m_wind = k;
}
}
}
var ie = {
pickup_id: pcid,
pname: pikname,
goods: narr,
wind: m_wind,
distr_t: dis_t,
card_cut_price: 0,
exp_type: e_t,
goods_price: 0,
shipping_price: 0,
user_money: 0,
total_amount: 0,
order_amount: 0,
user_note: "",
sto: sto
};
//-- 把等级卡会优惠多少钱装进去 --
if (car_item.cut_price1) ie.card_cut_price += car_item.cut_price1;
if (car_item.collocationList) {
ie.collocationList = car_item.collocationList;
}
arr.push(ie);
}
}
//-- 如果是回退回来的情况 --
if (th.data.cartlist && th.data.cartlist.length > 0) {
for (var kj in th.data.cartlist) {
for (var ih in arr) {
var ie = arr[ih];
if (ie.pickup_id == th.data.cartlist[kj].pickup_id) {
ie.exp_type = parseInt(th.data.cartlist[kj].exp_type);
ie.wind = parseInt(th.data.cartlist[kj].wind);
//-- 是不是全部自提清空 --
if (ie.exp_type == 0 || ie.exp_type == 2) th.setData({ is_all_zt: 0 });
break;
}
}
}
}
var cart_commission = 0;
//-- 循环计算一下线下取价 --
for (var k = 0; k < arr.length; k++) {
var c_item = arr[k];
var item = arr[k].goods;
var offline_price = 0;
var offline_num = 0;
//计算佣金的商品
var commission_gds = [];
for (var c = 0; c < item.length; c++) {
if (!item[c].is_gift) {
var hr = {
goods_id: item[c].goods_id,
goods_num: item[c].goods_num,
prom_type: item[c].prom_type,
prom_id: item[c].prom_id,
}
let req_d1 = {
user_id: getApp().globalData.user_id, goods_ids: [hr], store_id: os.stoid
}
await getApp().request.promisePost("/api/weshop/order/getrebateSum", {
is_json: 1, data: req_d1
}).then(grs => {
if (grs.data.code == 0) item[c].use_commission = grs.data.data;
});
commission_gds.push(hr);
}
if (th.data.sales_rules != 2) {
item[c].offline_price = 0;
}
//-- 如果这个商品是线下取价的时候 --
if (item[c].offline_price > 0 && item[c].prom_type != 7) {
offline_price += (item[c].goods_price - item[c].offline_price) * item[c].goods_num;
offline_num += item[c].goods_num;
}
}
if (offline_price > 0) {
c_item.offline_price = offline_price;
c_item.offline_num = offline_num;
c_item.is_offline = 1;
}
//获取购物车的佣金,此处要优化调用接口,获取佣金
var req_d = {
user_id: getApp().globalData.user_id, goods_ids: commission_gds, store_id: os.stoid
}
var back_data = null;
await getApp().request.promisePost("/api/weshop/order/getrebateSum", {
is_json: 1, data: req_d
}).then(rs => {
if (rs.data.code == 0) back_data = rs.data.data;
});
if (back_data && parseFloat(back_data)) {
c_item.can_usecommise = parseFloat(parseFloat(back_data).toFixed(2));
cart_commission += c_item.can_usecommise;
}
}
if (cart_commission) {
th.setData({ cart_commission });
}
//每一个门店内的组合购要进行拆分,
//还得把组合商品的多余商品的线下价格算一算
for (let var1 in arr) {
var u_item = arr[var1];
//把组合购进行分组
var obj = zh_calc.find_split(u_item);
if (!obj) continue;
//存储不同活动的商品列表
u_item.zh_prom_goods = {};
for (let var1 in obj) {
var h_item = obj[var1];
var gdlist = th.data.zuhe_map_good[h_item.prom_id];
//获取活动需要的商品列表
u_item.zh_prom_goods[h_item.prom_id] = { gdlist: gdlist, act: h_item.act };
}
zh_calc.fir_set_arr(u_item, th);
}
//每一个门店内的阶梯促销要进行拆分,
//还得把阶梯促销商品的多余商品的线下价格算一算
for (let var2 in arr) {
var u_item1 = arr[var2];
//把阶梯促销进行分组
var obj = ladder_calc.find_split(u_item1);
if (!obj) continue;
//存储不同阶梯促销活动的商品列表
u_item1.ladder_map = {};
for (let var1 in obj) {
var h_item = obj[var1];
var act = th.data.ladder_map[h_item.prom_id];
//获取活动需要的商品列表
u_item1.ladder_map[h_item.prom_id] = act;
}
ladder_calc.fir_set_arr(u_item1, th);
}
//-- 要判断总开关有没有同城配送 --
if(th.data.is_same_city) {
//----- 判断每一个商品的配送方式,和门店的配送方式 -------
for (var ik = 0; ik < arr.length; ik++) {
if (!arr[ik].sto.is_same_city) continue;
var fd = arr[ik].goods.filter(function (e) {
return e.is_same_city != 1 || e.whsle_id > 0
})
if (!fd || fd.length == 0) {
arr[ik].show_same_city = 1;
if (th.data.json_d.pickupway && th.data.json_d.pickupway == 2) {
arr[ik].exp_type=2;
th.setData({ is_all_zt: 0 });
}
}
}
}
//深拷贝
th.data.old_cartlist = JSON.parse(JSON.stringify(arr));
th.setData({
cartlist: arr,
});
//--- 获取一下看有没有优惠券 ----
setTimeout(function () {
var frozenQuan = null;
var url0 = "/api/weshop/users/frozenQuan/listFrozenQuan/" + app.globalData.user_id;
app.request.promiseGet(url0, { 1: 1 }).then(res => {
if (res.data.code == 0) {
frozenQuan = res.data.data;
th.data.frozenQuan = frozenQuan;
}
th.calculatePrice();
th.get_cart_quan();
})
}, 500)
}
});
},
//-----获取立即购买的商品信息,入口----
get_buy_goods: function (e) {
var th = this;
var gg = to.get_b_now();
//--------如果goods_id一样,就是要立即购买-----
if (e == gg.goods_id) {
a.get("/api/weshop/goods/get/" + oo.stoid + "/" + e, {
success: async function (t) {
var gd = t.data.data;
if (!gd) return false;
//-- 如果商品有同城配送的参数的时候,一件代发商品不能显示同城配送按钮 --
if (gd.is_same_city && th.data.is_same_city && gd.whsle_id <= 0) {
await getApp().request.promiseGet("/api/weshop/pickup/get/" + os.stoid + "/" + gg.pick_id, {}).then(res => {
if (res.data.code == 0) {
var pk = res.data.data;
if (pk && pk.is_same_city) {
th.setData({ show_same_city: 1 })
}
}
})
}
t.data.data.original_img = oo.imghost + t.data.data.original_img;
t.data.data['buynum'] = gg.goods_num;
var distr_t = 0, et = 0
if (t.data.data.is_minishop == 1 && getApp().is_sp_hao()) {
if (t.data.data.distr_type == 1 || gg.pick_dis == 1) {
wx.showToast({
title: "视频号仅支持物流",
icon: 'none',
duration: 2500
})
setTimeout(function () {
wx.navigateBack({ delta: 1 })
}, 1000)
return false
}
t.data.data.distr_type = 2;
th.setData({ show_same_city: 0 })
}
if (t.data.data.distr_type == 0) {
distr_t = gg.pick_dis;
} else {
distr_t = t.data.data.distr_type;
}
switch (distr_t) {
case 0:
et = 1;
//-- 系统后台有设置要默认的 --
if (th.data.json_d.pickupway && th.data.json_d.pickupway == 1) et = 0;
break;
case 1:
et = 1;
break;
case 2:
et = 0;
break;
}
if(th.data.show_same_city==1 && th.data.json_d.pickupway && th.data.json_d.pickupway == 2 ){
et = 2;
}
var m_wind = 0, def_exp_code = getApp().globalData.userInfo.def_exp_code;
if (et == 0 && def_exp_code && !th.data.is_default_logistics) {
for (var k = 0; k < th.data.wu_arr.length; k++) {
var item = th.data.wu_arr[k];
if (def_exp_code == item.code) {
m_wind = k;
}
}
}
if (th.data.bn_goods) {
et = th.data.bn_exp_type;
m_wind = th.data.index;
}
th.data.m_wind = m_wind;
//---是不是购买等级卡成功的返回---等级卡显示的判断---
var is_card_back = getApp().globalData.is_card_back;
if (is_card_back) {
th.data.card_name = th.data.userinfo.card_field;
gg.goods_price = gd[th.data.card_name];
getApp().globalData.is_card_back = 0;
th.setData({ card_cut_price: 0 });
//如果是秒杀的返回
if (gd.prom_type == 1) gd.prom_type = 0;
} else {
//--- 商家等级卡开通的情况下, 会员不是等级会员的情况, 商品有设置等级卡价格,同时等级卡价格小于商品的价格
//-- 搭配购的商品也可以单独购买,所以此时搭配购的商品要进行计算优惠 --
if (!gg.collocation_goods && gd['prom_type'] != 6 && th.data.card_name && gd[th.data.card_name] > 0 && gg.goods_price > gd[th.data.card_name] && !th.data.userinfo.card_field) {
var cut_p = (gg.goods_price - gd[th.data.card_name]) * gg.goods_num;
th.setData({ card_cut_price: cut_p });
}
}
//-- 当是搭配购的时候 --
gd.prom_type = gg.prom_type ? gg.prom_type : 0;
gd.prom_id = gg.prom_id ? gg.prom_id : 0;
//-- 判断是不是可以收藏 --
if (gd.prom_type == 5 && !th.data.all_collocation_list.length) {
await th.set_collection(gd);
}
if (gd.whsle_id > 0) {
gd.prom_type = gg.prom_type = 0;
gd.prom_id = gg.prom_id = 0;
}
switch (gd.prom_type) {
case 0:
case 3:
case 4:
case 5:
case 6:
case 7:
case 10:
//--此时开始计算商品的使用券相关,如果有等级价还要计算和等级价相关的,
// 如果有优惠促销,还要把促销的部分计算在内,因为促销还有不能使用优惠券--
t.data.data.shop_price = gg.goods_price;
t.data.data.goods_price = gg.goods_price;
t.data.data.goods_num = gg.goods_num;
th.data.ckeck_quan_price = t.data.data.shop_price * gg.goods_num;
th.data.check_quan_price_list = t.data.data.shop_price * gg.goods_num + "";
th.data.check_quan_ware_list = t.data.data.erpwareid + "";
//-- 如果有线下取价的时候 --
if (gg.offline_price) {
t.data.data.offline_price = gg.offline_price;
t.data.data.pricing_type = gg.pricing_type;
t.data.data.is_offline = 1;
th.data.ckeck_quan_price = t.data.data.offline_price * gg.goods_num;
th.data.check_quan_price_list = t.data.data.offline_price * gg.goods_num + "";
th.data.check_quan_ware_list = t.data.data.erpwareid + "";
}
t.data.data.prom_id = 0;
t.data.data.prom_type = 0;
//如果有开启佣金抵扣,同时会员是分销商的时候
if (getApp().globalData.userInfo.is_distribut
&& th.data.dis_config && th.data.dis_config.is_yongjin_dk) {
var fir_num = 0;
var sec_num = 0;
var thi_num = 0;
if (th.data.dis_config.pattern == 1) {
fir_num = (t.data.data.fir_rate || 0) * gg.goods_num;
sec_num = (t.data.data.sec_rate || 0) * gg.goods_num;
thi_num = (t.data.data.thi_rate || 0) * gg.goods_num;
} else {
fir_num = parseFloat((t.data.data.commission || 0) * gg.goods_num * (th.data.dis_config.firstRate || 0) / 100).toFixed(2);
sec_num = parseFloat((t.data.data.commission || 0) * gg.goods_num * (th.data.dis_config.secondRate || 0) / 100).toFixed(2);
thi_num = parseFloat((t.data.data.commission || 0) * gg.goods_num * (th.data.dis_config.thirdRate || 0) / 100).toFixed(2);
}
var c_num = getApp().get_commission(fir_num, sec_num, thi_num, th);
gd.use_commission = c_num;
t.data.data.use_commission = c_num;
}
//如果立即购买那边过来,就要读取接口,查看活动的优惠内容
if (gg.prom_type == 3) {
t.data.data.prom_id = gg.prom_id;
t.data.data.prom_type = 3;
//如果是优惠活动,就要调用活动,计算价格
// th.check_is_youhui(gg.goods_id, gg.pick_id);
th.buy_now_prom_goods(gg.prom_id, t.data.data, function (data) {
//判断一下购买商品的数量是不是超过
if (data.gift_goods_id && (!data.zp_mode || parseInt(data.zp_mode) == 0)) {
var num = data.zp_num ? data.zp_num : 1;
if (data.is_bz == 1) {
num = num * data.bs;
if (num > data.gift_limit_num) num = 0;
}
//如果赠品数量超出礼品库存,就取消
if (num > data['gift_storecount']) num = 0;
if (num > 0) {
var ob = {};
ob.is_gift = 1;
ob.prom_id = data.prom_id;
ob.goods_id = data.gift_goods_id;
ob.goods_name = data.gift_goods_name;
ob.goods_sn = data.gift_goods_sn;
ob.goods_color = data.gift_goods_color;
ob.goods_spec = data.gift_goods_spec;
ob.original_img = os.imghost + data.gift_original_img;
ob.market_price = data.gift_market_price;
ob.gift_id = data.gift_id;
ob.shop_price = 0;
ob.buynum = num;
ob.weight = data.gift_weight; //商品的重量
ob.exp_sum_type = data.gift_exp_sum_type; //商品的物流计算方式
ob.uniform_exp_sum = data.gift_uniform_exp_sum //统一运费的金额
var arr_gf = [];
arr_gf.push(ob);
th.setData({ buy_now_gift_goods: arr_gf });
}
}
th.setData({
bn_goods: data, bn_pickname: gg.pick_name, index: m_wind,
bn_pick: gg.pick_id, bn_t_exp_t: distr_t, bn_exp_type: et
});
//计算价格
th.calculatePrice2();
//获取优惠券
th.get_buy_now_quan();
})
} else {
//--看是不是搭配促销--
if (gg.prom_type == 5) {
t.data.data.prom_id = gg.prom_id;
t.data.data.prom_type = 5;
// th.is_coupon = gg.is_coupon;
// th.setData({
// is_coupon: gg.is_coupon
// });
if (gg.room_id) {
t.data.data.room_id = gg.room_id;
}
//--主商品要有导购id和导购类型--
if (gg.guide_id) {
t.data.data.guide_id = gg.guide_id;
t.data.data.guide_type = gg.guide_type;
}
if(gg.groupchat_id && gg.groupchat_id!='undefined'){
t.data.data.groupchat_id=groupchat_id;
}
//搭配购如果原来就有勾选,不能直接赋值,旧的要保留
if(!th.data.collocation_goods){
th.setData({ collocation_goods: gg.collocation_goods });
}
// if(th.data.collocation_goods && th.data.collocation_goods.length){
// if(gg.collocation_goods){
// let coll_goods=th.data.collocation_goods
// coll_goods.push(...gg.collocation_goods)
// th.setData({collocation_goods:coll_goods})
// }
// }else{
// th.setData({ collocation_goods: gg.collocation_goods });
// }
if (th.data.all_collocation_list && gg.collocation_goods && gg.collocation_goods.length>0) {
for (var i = 0; i < th.data.all_collocation_list.length; i++) {
var item0 = th.data.all_collocation_list[i];
var idx = gg.collocation_goods.findIndex(function (e) {
// return e.goods_id == item0.goods_id && e.prom_id == item0.prom_id;
return e.goods_id == item0.goods_id;
})
if (idx != -1) {
var txt = 'all_collocation_list[' + i + '].selected';
th.setData({ [txt]: 1 });
}else{
var txt = 'all_collocation_list[' + i + '].selected';
th.setData({ [txt]: 0 });
}
}
}
if( gg.collocation_goods && gg.collocation_goods.length>0){
//var narr=gg.collocation_goods;
//修改成深拷贝,确保返回是数据正确
var narr = JSON.parse(JSON.stringify(gg.collocation_goods));
narr.push(t.data.data);
await th.get_collocation_list(narr);
}
}
th.setData({
bn_goods: gd, bn_pickname: gg.pick_name, index: m_wind,
bn_pick: gg.pick_id, bn_t_exp_t: distr_t, bn_exp_type: et
});
//--搭配促销也是按照购物车的方式来计算优惠券--
if (gg.prom_type == 5 && th.data.collocation_goods && th.data.collocation_goods.length>0 ) {
var frozenQuan = null;
var url0 = "/api/weshop/users/frozenQuan/listFrozenQuan/" + app.globalData.user_id;
app.request.promiseGet(url0, { 1: 1 }).then(res => {
if (res.data.code == 0) {
frozenQuan = res.data.data;
th.data.frozenQuan = frozenQuan;
}
//计算价格
th.calculatePrice2();
th.get_cart_quan();
});
} else {
//计算价格
th.calculatePrice2();
//获取优惠券,
th.get_buy_now_quan();
}
}
break;
case 1: //---秒杀-----
var quanlist = null;
getApp().request.get("/api/weshop/activitylist/getSJGoodsPriceNew/" + gd.store_id
+ "/" + gd.goods_id + "/1/" + gd.prom_id + "/" + app.globalData.user_id, {
success: async function (tt) {
if (tt.data.code == 0) {
//t.data.data.shop_price = tt.data.data.prom_price;
gd.shop_price=t.data.data.shop_price = tt.data.data.prom_user_price;
th.data.ckeck_quan_price = 0;
gd.is_xz_yh = 1;
t.data.data.fir_rate = tt.data.data.fir_rate;
t.data.data.sec_rate = tt.data.data.sec_rate;
t.data.data.thi_rate = tt.data.data.thi_rate;
t.data.data.commission = tt.data.data.commission;
if (tt.data.data.is_order_yh) {
th.data.bn_is_order_yh = 1;
} else {
th.data.bn_is_order_yh = 0;
}
if (tt.data.data.is_post_temp) {
th.data.bn_is_post_temp = 1;
} else {
th.data.bn_is_post_temp = 0;
}
} else {
t.data.data.prom_id = 0;
t.data.data.prom_type = 0;
th.data.ckeck_quan_price = t.data.data.shop_price * gg.goods_num;
th.data.check_quan_price_list = t.data.data.shop_price * gg.goods_num + "";
th.data.check_quan_ware_list = t.data.data.erpwareid + "";
}
//-- 计算获得佣金的金额 --
if (getApp().globalData.userInfo.is_distribut
&& th.data.dis_config && th.data.dis_config.is_yongjin_dk) {
var c_num = getApp().get_commission2(th.data.dis_config, t.data.data, gg.goods_num);
gd.use_commission = c_num;
t.data.data.use_commission = c_num;
}
th.setData({
bn_goods: gd,
bn_pickname: gg.pick_name,
bn_exp_type: et,
index: m_wind,
bn_pick: gg.pick_id,
bn_t_exp_t: distr_t,
bn_exp_type: et
});
//计算价格
th.calculatePrice2();
//获取优惠券,如果有券的钱,就调用
if (th.data.ckeck_quan_price > 0) th.get_buy_now_quan();
}
});
break;
case 2: //--- 团购 ---
var quanlist = null;
getApp().request.get("/api/weshop/goods/groupBuy/getActInfo/" + os.stoid + "/" + gd.goods_id + "/" + gd.prom_id, {
success: async function (tt) {
if (tt.data.code == 0) {
//获取一下主表的信息
ut.get_active_info(2,gd.prom_id,os.stoid,function(e){
//t.data.data.shop_price = tt.data.data.prom_price;
gd.shop_price=t.data.data.shop_price = tt.data.data.price;
t.data.data.fir_rate = tt.data.data.fir_rate;
t.data.data.sec_rate = tt.data.data.sec_rate;
t.data.data.thi_rate = tt.data.data.thi_rate;
t.data.data.commission = tt.data.data.commission;
if(tt.data.data.is_order_yh){
th.data.bn_is_order_yh=1;
}else{
th.data.bn_is_order_yh=0;
}
if(tt.data.data.is_post_temp){
th.data.bn_is_post_temp=1;
}else{
th.data.bn_is_post_temp=0;
}
//-- 计算获得佣金的金额 --
if (getApp().globalData.userInfo.is_distribut
&& th.data.dis_config && th.data.dis_config.is_yongjin_dk) {
var c_num = getApp().get_commission(th.data.dis_config, t.data.data, gg.goods_num,th);
gd.use_commission = c_num;
t.data.data.use_commission = c_num;
}
if (tt.data.data.isQuan) {
th.data.ckeck_quan_price = t.data.data.shop_price * gg.goods_num;
th.data.check_quan_price_list = t.data.data.shop_price * gg.goods_num + "";
th.data.check_quan_ware_list = t.data.data.erpwareid + "";
} else {
gd.is_xz_yh = 1;
}
th.setData({
bn_goods: gd,
bn_pickname: gg.pick_name,
bn_exp_type: et,
index: m_wind,
bn_pick: gg.pick_id,
bn_t_exp_t: distr_t,
bn_exp_type: et
});
//-- 计算价格 --
th.calculatePrice2();
//获取优惠券,如果有券的钱,就调用
if (th.data.ckeck_quan_price > 0) th.get_buy_now_quan();
})
} else {
t.data.data.prom_id = 0;
t.data.data.prom_type = 0;
//-- 计算获得佣金的金额 --
if (getApp().globalData.userInfo.is_distribut
&& th.data.dis_config && th.data.dis_config.is_yongjin_dk) {
var c_num = getApp().get_commission2(th.data.dis_config, t.data.data, gg.goods_num);
gd.use_commission = c_num;
t.data.data.use_commission = c_num;
}
if (tt.data.data.isQuan) {
th.data.ckeck_quan_price = t.data.data.shop_price * gg.goods_num;
th.data.check_quan_price_list = t.data.data.shop_price * gg.goods_num + "";
th.data.check_quan_ware_list = t.data.data.erpwareid + "";
} else {
gd.is_xz_yh = 1;
}
th.setData({
bn_goods: gd,
bn_pickname: gg.pick_name,
bn_exp_type: et,
index: m_wind,
bn_pick: gg.pick_id,
bn_t_exp_t: distr_t,
bn_exp_type: et
});
//-- 计算价格 --
th.calculatePrice2();
//获取优惠券,如果有券的钱,就调用
if (th.data.ckeck_quan_price > 0) th.get_buy_now_quan();
}
}
});
break;
}
},
});
}
},
//---------------检查是否有收货地址-------------------
checkAddressList: function () {
var t = this;
return !(!this.data.order || null == this.data.order.userAddress) || (wx.showModal({
title: "请先填写或选择收货地址~",
success: function (a) {
a.confirm ? t.enterAddressPage() : wx.navigateBack();
},
fail: function () {
wx.navigateBack();
}
}), !1);
},
showInvoice: function () {
this.setData({
invoiceToggle: !this.data.invoiceToggle
});
},
keyUpChangePay1: function (t) {
this.setData({
payWithUserMoney: !(t.detail.value.length > 0)
});
},
keyUpChangePay2: function (t) {
this.setData({
payWithPoints: !(t.detail.value.length > 0)
});
},
keyUpChangeNum: function (t) {
var index = t.currentTarget.dataset.index;
var txt = "user_note." + index;
this.setData({
maxWord: t.detail.value.length,
[txt]: t.detail.value
});
},
calc_per: async function (c_arr) {
var send_gf = {};
var duo_zp_num_arr = {};
var th = this;
//-- 循环处理 --
for (var i in c_arr) {
var cart_item = c_arr[i]; //就是每一单的意思
//--优惠多少钱--
cart_item.cut_price = 0;
var pickid = cart_item.pickup_id;
var ord_goods = c_arr[i].goods; //就是每一单的从表的意思
var o_price = 0, q_conditin = 0;
//--------循环计算总价-----------
for (var j = 0; j < ord_goods.length; j++) {
if (ord_goods[j].whsle_id) continue;
o_price += ord_goods[j].goods_price * ord_goods[j].goods_num;
}
//---如果该门店的相关活动,就要算一下减价--
if (th.data.prom_goods_map[pickid]) {
var ob = th.data.prom_goods_map[pickid];
for (var ii in ob) {
var item_map = ob[ii];
if (item_map.bs == undefined || item_map.bs == null) {
//等待,获取一下优惠活动的信息
await getApp().request.promiseGet("/api/weshop/goods/getDiscount", {
data: {
price: parseFloat(item_map.price).toFixed(2), prom_id: item_map.prom_id,
goods_num: item_map.goods_num, user_id: getApp().globalData.user_id,
is_bz: item_map.is_bz
}
}).then(res => {
if (res.data.code == 0 && res.data.data.condition) {
var get_data = res.data.data;
item_map.is_bz = get_data.is_bz; //是不是倍增
item_map.bs = get_data.bs; //是不是倍数
item_map.is_past = get_data.is_past; //是不是包邮
item_map.prom_price = get_data.price >= 0 ? get_data.price : item_map.price;
item_map.s_intValue = get_data.intValue;
item_map.s_coupon_id = get_data.coupon_id;
item_map.s_coupon_num = get_data.coupon_num;
item_map.lbtitle = get_data.lbtitle;
item_map.zxlbtitle = get_data.zxlbtitle;
if (get_data.gift_id && parseInt(get_data.zp_mode) != 1
&& get_data.zp_num * item_map.bs <= get_data.limit_num
&& get_data.zp_num * item_map.bs <= get_data.gift_storecount
) {
item_map.gift_id = get_data.gift_id;
item_map.gift_goods_id = get_data.goods_id;
item_map.gift_goods_name = get_data.goods_name;
item_map.gift_goods_color = get_data.goodsinfo.goods_color ? get_data.goodsinfo.goods_color : '';
item_map.gift_goods_spec = get_data.goodsinfo.goods_spec ? get_data.goodsinfo.goods_spec : '';
item_map.gift_original_img = get_data.goodsinfo.original_img;
item_map.gift_limit_num = get_data.limit_num;
item_map.gift_storecount = get_data.gift_storecount;
item_map.gift_weight = get_data.goodsinfo.weight;
item_map.gift_exp_sum_type = get_data.goodsinfo.exp_sum_type;
item_map.uniform_exp_sum = get_data.goodsinfo.uniform_exp_sum;
item_map.whsle_id = get_data.goodsinfo.whsle_id;
}
item_map.s_libao = get_data.libao;
item_map.s_lb_num = get_data.lb_num;
//专享礼包
item_map.zx_libao = get_data.zxlibao;
item_map.zx_lb_num = get_data.zxlb_num;
if (parseInt(get_data.zp_mode) == 1) {
if (!send_gf[pickid]) send_gf[pickid] = [];
var can_zp_num = 0;
for (let iy in get_data.giftsinfo) {
let item = get_data.giftsinfo[iy];
can_zp_num += parseInt(item.gift_storecount) > parseInt(item.limit_num) ? parseInt(item.limit_num) : parseInt(item.gift_storecount);
}
var t_zp_num = parseInt(get_data.zp_num) * parseInt(get_data.bs);
if (duo_zp_num_arr[item_map.prom_id]) {
t_zp_num += duo_zp_num_arr[item_map.prom_id];
}
if (can_zp_num >= t_zp_num) {
send_gf[pickid].push({
pickup_id: pickid,
giftsinfo: get_data.giftsinfo,
zp_num: get_data.zp_num * get_data.bs,
gf_pr_name: item_map.name,
prom_id: item_map.prom_id
});
duo_zp_num_arr[item_map.prom_id] = t_zp_num;
}
}
}
})
}
//有活动,且优惠活动并没有限制使用优惠券,且有减价
//--看有没有减价--
//if(item_map.prom_price>=0 && item_map.price-item_map.prom_price){
if (item_map.price - item_map.prom_price && item_map.prom_price !== null) {
if (cart_item.prom_pt_json) {
cart_item.prom_pt_json.push({
"prom_id": item_map.prom_id,
"dis": (item_map.price - item_map.prom_price).toFixed(2),
"ispt": 0
})
} else {
cart_item.prom_pt_json = [{
"prom_id": item_map.prom_id,
"dis": (item_map.price - item_map.prom_price).toFixed(2),
"ispt": 0
}];
}
//-- 如果系统要平摊到单品 --
var pt_data = {
'prom_id': item_map.prom_id,
'dis': parseFloat((item_map.price - item_map.prom_price).toFixed(2)),
'goods': item_map.goods
}
var pt_res = null;
await getApp().request.promisePost("/api/weshop/order/getGoodsSplit", {
is_json: 1,
data: pt_data
}).then(res => {
if (res.data.code == 0) {
pt_res = res.data.data;
}
})
if (pt_res) {
for (var io in item_map.goods) {
//平摊赋值
item_map.goods[io].account_fir = th.arr_get_goods(item_map.goods[io].goods_id, pt_res).fisrt_account;
item_map.goods[io].account_yu_fir = th.arr_get_goods(item_map.goods[io].goods_id, pt_res).fisrt_account_yu;
if (!th.data.ispt_goods) {
item_map.goods[io].account = item_map.goods[io].account_fir;
item_map.goods[io].account_yu = item_map.goods[io].account_yu_fir;
}
}
}
o_price -= (item_map.price - item_map.prom_price);
//如果有限制使用优惠券,就要减掉参与的活动商品的钱
if (!item_map.is_xz_yh) q_conditin = o_price;
}
//--------循环计算商品是不是包邮,是不是使用优惠券,此时循环是商品从表-----------
for (var j = 0; j < ord_goods.length; j++) {
if (ord_goods[j].whsle_id) continue;
if (ord_goods[j].prom_type == 3 && ord_goods[j].prom_id == item_map.prom_id) {
ord_goods[j].is_xz_yh = ord_goods[j].is_xz_yh ? ord_goods[j].is_xz_yh : item_map.is_xz_yh;
ord_goods[j].is_past = item_map.is_past;
if (ord_goods[j].is_gift) continue; //赠品不平摊
ord_goods[j].account_fir = th.item_map_get_goods(ord_goods[j].goods_id, item_map).account_fir;
ord_goods[j].account_yu_fir = th.item_map_get_goods(ord_goods[j].goods_id, item_map).account_yu_fir;
ord_goods[j].account = th.item_map_get_goods(ord_goods[j].goods_id, item_map).account;
ord_goods[j].account_yu = th.item_map_get_goods(ord_goods[j].goods_id, item_map).account_yu;
}
}
//-- --
if (item_map.price != undefined && item_map.price != null
&& item_map.prom_price != undefined && item_map.prom_price != null)
cart_item.cut_price += (item_map.price - item_map.prom_price);
//---如果有送积分---
if (item_map.s_intValue) {
if (!cart_item.s_intValue) cart_item.s_intValue = 0;
cart_item.s_intValue += item_map.s_intValue;
}
//-- 如果有送优惠券的情况 --
if (item_map.s_coupon_id) {
if (!cart_item.s_coupon_id) {
cart_item.s_coupon_id = item_map.s_coupon_id + "";
cart_item.g_coupon_num = [{ 'c_id': item_map.s_coupon_id, "num": item_map.s_coupon_num }];
}
else {
cart_item.s_coupon_id += "," + item_map.s_coupon_id;
cart_item.g_coupon_num.push({ 'c_id': item_map.s_coupon_id, "num": item_map.s_coupon_num })
}
}
//-- 如果有送礼包的情况 --
if (item_map.s_libao) {
if (!cart_item.s_libao) {
cart_item.s_libao = item_map.s_libao + "";
cart_item.g_lb_num = [{ 'l_id': item_map.s_libao, "num": item_map.s_lb_num, 'lbtitle': item_map.lbtitle }];
}
else {
cart_item.s_libao += "," + item_map.s_libao;
cart_item.g_lb_num.push({ 'l_id': item_map.s_libao, "num": item_map.s_lb_num, 'lbtitle': item_map.lbtitle })
}
}
if (item_map.zx_libao) {
if (!cart_item.zx_libao) {
cart_item.zx_libao = item_map.zx_libao + "";
cart_item.g_zxlb_num = [{ 'l_id': item_map.zx_libao, "num": item_map.zx_lb_num, 'zxlbtitle': item_map.zxlbtitle }];
}
else {
cart_item.zx_libao += "," + item_map.zx_libao;
cart_item.g_zxlb_num.push({ 'l_id': item_map.zx_libao, "num": item_map.zx_lb_num, 'zxlbtitle': item_map.zxlbtitle })
}
}
}
}
}
var arr = Object.keys(send_gf);
var arr2 = Object.keys(th.data.send_gf);
if (arr2.length > 0) return false;
th.calclate_lbNum(c_arr);
if (arr.length > 0) {
th.setData({ send_gf: send_gf })
} else {
th.setData({ send_gf: {} })
}
},
calclate_lbNum(r_data) {
if(!r_data) return false;
let send_lb = this.data.send_lb;
//g_lb_num我的礼包 g_zxlb_num专享礼包
r_data.forEach(r_d => {
let arr = [];
if (r_d.g_zxlb_num) {
let g_lb = r_d.g_zxlb_num;
for (let i = 0; i < g_lb.length; i++) {
let item = g_lb[i];
let new_lb = g_lb.filter(lb => {
return item.l_id === lb.l_id;
});
if (new_lb.length == 1) {
arr.push(item);
} else {
item.num = new_lb.reduce((pre, next) => {
return pre + next.num;
}, 0);
arr.push(item);
g_lb = g_lb.filter(ii => {
return ii.l_id !== item.l_id;
});
}
send_lb[r_d.pickup_id] = arr;
}
}
if (r_d.g_lb_num) {
let zx_lb = r_d.g_lb_num;
for (let i = 0; i < zx_lb.length; i++) {
let item = zx_lb[i];
item.flag = 1;
let new_lb = zx_lb.filter(lb => {
return item.l_id === lb.l_id;
});
if (new_lb.length == 1) {
arr.push(item);
} else {
item.num = new_lb.reduce((pre, next) => {
return pre + next.num;
}, 0);
arr.push(item);
zx_lb = zx_lb.filter(ii => {
return ii.l_id !== item.l_id;
});
}
send_lb[r_d.pickup_id] = arr;
}
}
})
this.setData({
send_lb,
})
},
//-------------------计算订单价格-------------------
calculatePrice: async function (qfunc) {
var th = this;
th.setData({ submit: 1 });
wx.showLoading({
title: "处理中.",
mask: true
})
//-- to.getwuliuprice(async function (rs) { --
th.data.lon=0;
th.data.lat=0;
//是不是区域包邮
th.data.is_area_by = 0;
//当不是区域不包邮的时候,没有不包邮商品的时候
th.data.free1 = 0;
th.data.cut_o_shipping_price = 0;
th.data.cut_goods_piece = 0;
th.data.cut_goods_weight = 0;
var all_price = 0; //所有的商品总价
var all_shipping_m = 0; //所有的物流总价
var all_total_m = 0; //所有的订单应付总价
var all_order_m = 0; //所有的订单应付总价
var all_user_m = 0; //所有的订单用户使用金额
var all_coupon_price_m = 0; //所有的订单用户使用优惠券价格
var all_cutprice = 0; //所有的优惠减
var all_zh_cutprice = 0; //所有的组合优惠减
var all_ladder_cutprice = 0; //所有的阶梯促销优惠减
var all_order_prom = 0; //所有的订单优惠
var all_prestore = 0; //所有预存优化金额
var all_pre_json = []; //所有预存优化json
var all_yck_arr = []; //所有预存真实抵扣数组
var umoney = th.data.userinfo.user_money - th.data.txmon - (th.data.userinfo.frozen_money ? th.data.userinfo.frozen_money : 0);
var out_of_weight = 0; //超出多少重量
var c_arr = JSON.parse(JSON.stringify(th.data.old_cartlist));
if (th.data.cartlist && th.data.cartlist.length > 0) {
for (var i = 0; i < c_arr.length; i++) {
c_arr[i].exp_type = th.data.cartlist[i].exp_type;
c_arr[i].wind = th.data.cartlist[i].wind;
}
}
for (var i in c_arr) {
var cart_item = c_arr[i];
cart_item.prom_pt_json=[];
}
//调用函数计算每件商品的单价
await th.calc_per(c_arr);
//调用函数计算每件组合购商品的单价,
await zh_calc.calc_zh_split_price(c_arr, th);
//调用函数计算每件阶梯促销商品的单价,
await ladder_calc.calc_split_price(c_arr, th);
//调用函数计算,优惠券优惠什么商品价格,优惠券优惠什么商品
await th.get_cart_quan(c_arr);
//-- 经纬度不循环调用接口 --
var lon = 0; var lat = 0;
//---循环购物车---
for (var i in c_arr) {
//因为搭配购买也是再这里计算,搭配购的is_b_now==1
if (th.data.is_b_now == 0) {
//此时物流的选择方式要用th.data.cartlist;
c_arr[i].exp_type = th.data.cartlist[i].exp_type;
c_arr[i].wind = th.data.cartlist[i].wind;
if (th.data.cartlist[i].check_quan_price_list) c_arr[i].check_quan_price_list = th.data.cartlist[i].check_quan_price_list; //优惠券优惠什么商品价格
if (th.data.cartlist[i].check_quan_ware_list) c_arr[i].check_quan_ware_list = th.data.cartlist[i].check_quan_ware_list; //优惠券优惠什么商品
} else {
c_arr[i].exp_type = th.data.bn_exp_type; //配送方式
c_arr[i].wind = th.data.index; //立即购买选择的物流
//c_arr[i].=th.data. //立即购买的使用余额
if (th.data.cartlist) c_arr[i].check_quan_price_list = th.data.cartlist[i].check_quan_price_list; //优惠券优惠什么商品价格
if (th.data.cartlist) c_arr[i].check_quan_ware_list = th.data.cartlist[i].check_quan_ware_list; //优惠券优惠什么商品
}
var cart_item = c_arr[i]; //就是每一单的意思
var pickid = cart_item.pickup_id;
var o_price = 0;
var o_price_no_zh = 0; //参与订单优惠叠加--组合购的金额汇总
var o_shipping_price = 0, goods_weight = -1, goods_piece = -1;
var item = c_arr[i].goods; //就是每一单的从表的意思
//---如果有选择优惠券的情况下---
var quan_price = 0;
var coupon_price = 0;
var quan_no = null;
var is_has_zh = c_arr[i].is_has_zh;
var is_has_ladder = c_arr[i].is_has_ladder;
var zh_prom_goods = c_arr[i].zh_prom_goods; //组合购计算的原始数据存储空间
var ladder_prom_goods = c_arr[i].ladder_prom_goods; //组合购计算的原始数据存储空间
var no_order_yh = 0; //-- 有些活动不能和订单优惠叠加的金额 --
var no_post_temp = 0; //-- 有些活动不能和包邮模板的金额 --
if (th.data.using_quan[pickid] != null && th.data.using_quan[pickid] != undefined)
quan_no = th.data.using_quan[pickid].coupon_no;
//普通券的时候
if (quan_no && th.data.using_quan[pickid].isby != 1) {
var IsUserWare=1;
//---获取优惠券优惠---
await getApp().request.promiseGet("/api/weshop/couponList/getUseCouponPrice", {
data: {
storeId: oo.stoid,
CashRepNo: quan_no,
WaresSum: cart_item.check_quan_price_list,
WareIds: cart_item.check_quan_ware_list
}
}).then(res => {
if (res.data.code == 0 && res.data.data && res.data.data.length > 0) {
var q_data = res.data.data;
//--存储商品优惠的内容--
cart_item.quan_youhui_list = q_data;
for (var k in q_data){
quan_price += q_data[k].WareCashSum;
IsUserWare=q_data[k].IsUserWare;
if(!IsUserWare){
quan_price=0;
break;
}
}
}
})
if(!IsUserWare){
wx.showToast({
title: '优惠券使用对象的订单金额未满足',
icon: 'none',
duration: 1000,
});
th.setData({ submit: 0 });
var txt='using_quan['+pickid+']';
th.setData({[txt]:null});
return false;
}
if(cart_item.quan_youhui_list){
for (var kk in cart_item.quan_youhui_list) {
var you_item = cart_item.quan_youhui_list[kk];
//-- 对券的价格进行平摊 --
await th.split_set_goods_quanprice(you_item, cart_item);
}
}
}
var whsle_goods_price = 0;
var no_zh_all_quan_num=0; //不是组合购商品的使用的优惠券综合
//--------循环计算总价-----------
for (var jc = 0; jc < item.length; jc++) {
if (item[jc].whsle_id > 0) {
whsle_goods_price += item[jc].goods_price * item[jc].goods_num;
}
var is_no_zh = 0;
if (item[jc].prom_type != 7 && item[jc].prom_type != 10) is_no_zh = 1;
//组合购的商品,且有订单优惠的叠加,is_orderyh就是优惠叠加
if (item[jc].prom_type == 7 && th.data.zhhe_act_map && th.data.zhhe_act_map[item[jc].prom_id]
&& th.data.zhhe_act_map[item[jc].prom_id].is_orderyh) {
is_no_zh = 1;
}
//阶梯购的商品,且有订单优惠的叠加,is_orderyh就是优惠叠加
if (item[jc].prom_type == 10 && ladder_prom_goods && ladder_prom_goods[item[jc].prom_id]
&& th.data.ladder_map[item[jc].prom_id].is_useorderyh) {
is_no_zh = 1;
}
if (is_no_zh) {
o_price_no_zh += item[jc].goods_price * item[jc].goods_num;
if(item[jc].quan_num && item[jc].quan_num>0) no_zh_all_quan_num += item[jc].quan_num;
}
o_price += item[jc].goods_price * item[jc].goods_num;
//--- 秒杀, 团购的时候,判断有没有订单优惠和包邮模板的叠加 ---
if( [1,2,6].indexOf(item[jc].prom_type)>-1){
if(!item[jc].is_order_yh && !item[jc].whsle_id){
no_order_yh+=item[jc].goods_price * item[jc].goods_num;
if(item[jc].quan_num) no_order_yh-=item[jc].quan_num; //券要把他补回去
}
if(!item[jc].is_post_temp){
no_post_temp+=item[jc].goods_price * item[jc].goods_num;
if(item[jc].quan_num) no_post_temp-=item[jc].quan_num; //券要把他补回去
}
}
}
//判断是不是有组合购的金额
var f_o_price = o_price;
//如果又优惠的钱,就要减价
if (c_arr[i].cut_price > 0) {
o_price -= c_arr[i].cut_price;
o_price_no_zh -= c_arr[i].cut_price;
}
//如果有组合购优惠的钱,就要减价
if (c_arr[i].zh_cut_price > 0 || c_arr[i].zh_cut_price < 0) {
o_price -= c_arr[i].zh_cut_price;
if (o_price_no_zh > 0) {
//找到那些可以订单优惠叠加的
for (let ij in zh_prom_goods) {
let kitem = zh_prom_goods[ij];
if (kitem.act.is_orderyh)
o_price_no_zh -= kitem.cut_price;
}
}else{
//找到那些可以订单优惠叠加的
for (let ij in zh_prom_goods) {
let kitem_z = zh_prom_goods[ij];
if (!kitem_z.act.is_orderyh)
no_order_yh+=kitem_z.actual_price;
}
}
}
//如果有组合购优惠的钱,就要减价
if (c_arr[i].ladder_cut_price > 0 || c_arr[i].ladder_cut_price < 0) {
o_price -= c_arr[i].ladder_cut_price;
if (o_price_no_zh > 0) {
//找到那些可以订单优惠叠加的
for (let ij in ladder_prom_goods) {
let kitem = ladder_prom_goods[ij];
if (th.data.ladder_map[ij].is_useorderyh)
o_price_no_zh -= kitem.cut_price;
}
}else{
//找到那些可以订单优惠叠加的不参与的要减掉
for (let ij in ladder_prom_goods) {
let kitem_l = ladder_prom_goods[ij];
if (!th.data.ladder_map[ij].is_useorderyh)
no_order_yh+=kitem_l.actual_price;
}
}
}
//-- 计算线下取价的功能 --
if (cart_item.is_offline == 1) {
o_price = o_price - cart_item.offline_price;
o_price_no_zh -= c_arr[i].offline_price;
}
//判断包邮券的钱,组合购的商品不使用优惠券
var q_conditin = 0;
q_conditin = o_price - quan_price;
if (is_has_zh) {
q_conditin = o_price_no_zh - quan_price;
}
cart_item.goods_price = f_o_price.toFixed(2); //商品总费用,用f_o_price来计算
//计算物流费用
cart_item.shipping_price = 0;
th.data.is_no_past = 1; //不包邮标识符
var back_data = null;
var quan_no_goods_arr = null;
var ord_prom = null;
var ord_prom_condition=0;
//如果有组合购
if(o_price_no_zh){
ord_prom_condition=o_price_no_zh-whsle_goods_price-no_zh_all_quan_num- no_order_yh;
}else{
ord_prom_condition=o_price - quan_price - whsle_goods_price - no_order_yh;
}
//---判断是不是有订单优惠---
await getApp().request.promiseGet("/api/weshop/promorder/getOrderPromotion", {
data: { store_id: os.stoid, orderAmount: parseFloat(ord_prom_condition).toFixed(2), user_id: getApp().globalData.user_id }
}).then(res => {
if (res.data.code == 0) {
ord_prom = res.data.data;
}
})
//--如果是物流,且选择了地址,就要开始显示包邮券,且包邮券也已经优惠了优惠活动的金额--
if (cart_item.exp_type == 0 && th.data.user_addr != null && !cart_item.is_xz_yh) {
//看是不是有调用过包邮券
if (!th.data.isget_by_quan[pickid]) {
//--判断要不要显示包邮券,调用接口,因为有for循环---
await getApp().request.promiseGet("/api/weshop/userfeemail/pageAndArea", {
data: {
store_id: os.stoid,
isuse: 0,
//condition: q_conditin,
condition: cart_item.ckeck_quan_price,
user_id: getApp().globalData.user_id,
pageSize: 2000
}
}).then(res => {
if (res.data.code == 0 && res.data.data.total > 0) {
//此时要循环判断包邮的地区,不包邮商品是不是符合
var arr = [], quanlist = res.data.data.pageData;
quanlist = th.check_is_frozenQuan(quanlist, th.data.frozenQuan, 1);
for (var i in quanlist) {
var item = quanlist[i];
var goods = cart_item.goods;
var g_arr = [];
for (var ii in goods) {
g_arr.push(goods[ii].goods_id);
}
if (item.region_list && th.check_by_area(item.region_list)) continue; //如果是不包邮区域
if (item.goods_list) {
var no_goods_arr = item.goods_list.split(",");
if (ut.isContained(no_goods_arr, g_arr)) continue; //如果是不包邮商品
}
arr.push(item);
}
if (arr) {
th.data.get_by_quan_list_cart[pickid] = arr;
th.setData({ get_by_quan_list_cart: th.data.get_by_quan_list_cart });
//if (th.data.is_b_now) {
// th.setData({get_by_quan_list: arr});
//}
}
th.data.isget_by_quan[pickid] = 1;
}
})
}
//-- 如果没有订单优惠,或者订单优惠中有勾选包邮模板 --
if (!ord_prom || ord_prom.is_post_temp) {
var user_addr = th.data.user_addr;
var req_d = {
province: user_addr.province, city: user_addr.city, district: user_addr.district,
wuliu: parseFloat(o_price - quan_price - whsle_goods_price - no_post_temp).toFixed(2), store_id: os.stoid
}
await getApp().request.promisePost("/api/weshop/order/areaFreight", {
is_json: 1, data: req_d
}).then(rs => {
if (rs.data.code == 0) back_data = rs.data.data;
});
}
}
//如果是包邮券的时候,要看看券的情况
if (quan_no && th.data.using_quan[pickid].isby == 1) {
var quan = th.data.using_quan[pickid];
if (!quan.goods_list) {
th.data.is_quan_by[pickid] = 1; //专门给券的判断用的
} else {
th.data.is_quan_by[pickid] = 0;
quan_no_goods_arr = quan.goods_list.split(",");
}
} else {
th.data.is_quan_by[pickid] = 0; //专门给券的判断用的
}
var cut_good_weight = 0;
//计算物流价格
if (cart_item.exp_type == 0 && th.data.user_addr && !th.data.is_quan_by[pickid]) {
//如果有包邮券的不包邮商品的时候
if (quan_no_goods_arr) {
if (back_data && back_data.no_free_goods) {
back_data['is_by_all'] = 1;
var arr3 = back_data.no_free_goods.filter(item => {
return quan_no_goods_arr.includes(item)
})
back_data.no_free_goods = null;
if (arr3.length) {
back_data.no_free_goods = arr3;
}
}
if (!back_data || !back_data.no_free_goods) {
if (!back_data) back_data = {};
back_data['is_by_all'] = 1;
back_data['no_free_goods'] = quan_no_goods_arr;
}
}
//--------循环计算总价-----------
for (var j = 0; j < item.length; j++) {
//如果是一件代发商品,不计算运费
if (item[j].whsle_id) continue;
//如果商品本身是包邮了
if (item[j].is_free_shipping == 1) continue;
//如果是优惠活动是包邮,就不用计算包邮的费用了
if (item[j].is_past) continue;
//--如果是包邮券使用的情况下,如果商品是包邮的,那么就不进行计算--
if (th.data.using_quan[pickid] && th.data.using_quan[pickid].isby == 1 && th.data.is_quan_by[pickid]) {
continue;
}
if (back_data && back_data['is_by_all'] && item[j].is_post_temp
&& (!back_data.no_free_goods || back_data.no_free_goods.indexOf(item[j].goods_id) == -1)) {
if (item[j]['exp_sum_type'] == 2 && back_data.weight_free > 0) {
if (goods_weight < 0) goods_weight = 0;
cut_good_weight += item[j]['weight'] * item[j]['goods_num'];
goods_weight += item[j]['weight'] * item[j]['goods_num'];
}
if (back_data.weight_free > 0) {
out_of_weight = (back_data.weight_free * 1000) - cut_good_weight;
}
continue;
}
switch (item[j]['exp_sum_type']) {
case 1:
//统一运费
o_shipping_price += item[j]['uniform_exp_sum'];
break;
case 2:
if (goods_weight < 0) goods_weight = 0;
//累积商品重量 每种商品的重量 * 数量
goods_weight += item[j]['weight'] * item[j]['goods_num'];
if (back_data && back_data.is_by_all && !back_data.no_free_goods) {
cut_good_weight += item[j]['weight'] * item[j]['goods_num'];
if (back_data.weight_free > 0) {
out_of_weight = (back_data.weight_free * 1000) - cut_good_weight;
}
}
break;
case 3:
if (goods_piece < 0) goods_piece = 0;
//累积商品数量
goods_piece += item[j]['goods_num'];
break;
}
}
//如果是正值的时候,多少重量内免运费
if (out_of_weight >= 0) out_of_weight = -cut_good_weight;
else out_of_weight = -back_data.weight_free * 1000;
var code = "";
if (th.data.wu_arr && th.data.wu_arr[cart_item.wind])
code = th.data.wu_arr[cart_item.wind].code;
// cart_item.shipping_price =
// ut.calculatewuliu(code, o_shipping_price, goods_weight, out_of_weight,goods_piece, th.data.user_addr, back_data, rs);
var no_free=back_data && back_data.no_free_goods && back_data.no_free_goods.length > 0 ? 1 : 0
var w_data = {
store_id: os.stoid, code: code,
o_shipping_price: o_shipping_price,
goods_weight: goods_weight,
out_of_weight: out_of_weight, goods_piece: goods_piece,
user_addr_province: th.data.user_addr.province,
user_addr_city: th.data.user_addr.city,
user_addr_district: th.data.user_addr.district,
is_by_all: back_data && back_data.is_by_all ? 1 : 0,
no_free_goods: no_post_temp>0 || no_free?1:0 ,
}
var is_ok = 1;
await getApp().request.promisePost('/api/weshop/order/getOrderWuLiPrice', { data: w_data, is_json: 1 }).then(res => {
if (res.data.code == 0) {
cart_item.shipping_price = res.data.data;
} else {
is_ok = 0;
}
})
if (!is_ok) {
wx.hideLoading();
wx.showToast({
title: "计算物流错误", icon: 'none', duration: 2000
})
//th.setData({ show_submit:0, });
return false;
}
if (!th.data.using_quan[pickid] || th.data.using_quan[pickid].isby != 1) {
if (cart_item.shipping_price == 0) th.data.is_by[pickid] = 1; //已经全场包邮,就不要选择券了
}
} else if (cart_item.exp_type == 1) {
cart_item.shipping_price = 0;
}
cart_item.shipping_price = cart_item.shipping_price.toFixed(2);
//总价计算,总价不包含运费
cart_item.order_amount = (o_price - quan_price).toFixed(2);
cart_item.total_amount = f_o_price.toFixed(2);
var order_prom_amount = 0;
var order_prom_id = 0;
var o_condition = cart_item.order_amount;
var t_o_condition = cart_item.order_amount;
//看一下是不是不用组合购的订单优惠的叠加
if (is_has_zh) {
o_condition = o_price_no_zh - no_zh_all_quan_num;
}
//看一下是不是不用组合购的订单优惠的叠加
if (is_has_ladder) {
o_condition = o_price_no_zh - no_zh_all_quan_num;
}
if (whsle_goods_price > 0) {
o_condition = o_condition - whsle_goods_price;
t_o_condition = t_o_condition - whsle_goods_price;
}
if (no_order_yh) {
o_condition = o_condition - no_order_yh;
t_o_condition = t_o_condition - no_order_yh;
o_price_no_zh = o_price_no_zh - no_order_yh;
}
var order_m = 0;
//么有使用券,或者活动没有限制使用优惠券
if (ord_prom && (quan_price <= 0 || !ord_prom.is_xz_yh)) {
order_prom_id = ord_prom['id'];
switch (ord_prom['type']) {
case 0:
order_m = Math.round(o_condition * ord_prom['expression']) / 100;//满额打折
order_prom_amount = (o_condition - order_m).toFixed(2);
break;
case 1:
//order_m = o_condition - ord_prom['expression'];//满额优惠金额
var bs = 1;
if (ord_prom.is_bz) {
bs = Math.floor(o_condition / ord_prom.money);
}
order_prom_amount = ord_prom['expression'];
break;
}
}
cart_item.order_prom_amount = 0;
//--订单优惠的显示--
if (order_prom_id > 0) {
cart_item.order_amount = (o_price - quan_price - order_prom_amount).toFixed(2);
cart_item.order_prom_id = order_prom_id;
cart_item.order_prom_amount = order_prom_amount;
}
coupon_price = quan_price;
if (cart_item.order_amount < 0) {
cart_item.order_amount = 0;
coupon_price = o_price;
}
//-- 在选择到同城配送的时候 --
if (c_arr[i].exp_type == 2 && th.data.user_addr) {
var gd_w = 0;
for (let ib in c_arr[i].goods) {
let item_bb = c_arr[i].goods[ib];
gd_w += item_bb['weight'] * item_bb['goods_num'];
}
if (!lon) {
//-- 获取距离 --
await getApp().request.promisePost("/api/weshop/order/sameCityExp/getGeocoder", {
is_json: 1, data: { address: th.data.user_addr.more_address + th.data.user_addr.address }
}).then(res => {
if (res.data.code == 0) {
var data = JSON.parse(res.data.data);
if (data.status == 0) {
lon = data.result.location.lng;
lat = data.result.location.lat;
}
}
})
}
var req_data = {
store_id: os.stoid, order_amount: parseFloat(cart_item.order_amount),
lon: lon, lat: lat, pickup_id: c_arr[i].pickup_id, goods_weight: gd_w
}
var is_next = 1;
//获取同城配送参数
await getApp().request.promisePost("/api/weshop/order/sameCityExp/getMoney", { is_json: 1, data: req_data }).then(res => {
if (res.data.code == 0) {
cart_item.shipping_price = res.data.data;
} else {
is_next = 0;
if (qfunc) qfunc();
else {
wx.showToast({
title: res.data.msg,
icon: 'none',
duration: 2000
})
}
}
})
if (!is_next) {
th.setData({show_submit:1, submit: 0,same_ok:0 })
return false
}
//重量要带出去
cart_item.gd_w=gd_w;
cart_item.samecity_order_amount=req_data.order_amount;
}
//预存金额使用参与计算
if (th.data.udata && th.data.udata.Balance > 0 && cart_item.order_amount * 1 > 0) {
if (!cart_item.sto) {
console.log('没有线下门店id');
//获取门店信息
await getApp().request.promiseGet("/api/weshop/pickup/list", {
data: {
store_id: os.stoid,
ids: th.data.bn_pick
}
}).then(res => {
if (ut.ajax_ok(res)) {
console.log(res);
if (res.data.code == 0) {
let resData = res.data.data.pageData
if (resData && resData[0]) {
let keyid = resData[0].keyid
cart_item.sto={
keyid
}
}
}
}
})
}
let cart_yc = await th.beforAdvancesum(cart_item)
console.log('购物车--------');
if (!cart_item.yck_off) {
cart_item.yck_off = cart_yc.yck_off
}
if(cart_yc.yck*1==0){
cart_item.yck_off = 0
}
cart_item.yck = cart_yc.yck
cart_item.yckid = cart_yc.yckid
cart_item.pre_json = cart_yc.pre_json
let yct1 = 'cartlist[' + i + '].yck_off';
let yct11 = 'old_cartlist[' + i + '].yck_off';
let yct2 = 'cartlist[' + i + '].yck';
let yct22 = 'old_cartlist[' + i + '].yck';
let yct3 = 'cartlist[' + i + '].yckid';
let yct33 = 'old_cartlist[' + i + '].yckid';
let yct4 = 'cartlist[' + i + '].pre_json';
let yct44 = 'old_cartlist[' + i + '].pre_json';
th.setData({
[yct1]: cart_item.yck_off,
[yct11]: cart_item.yck_off,
[yct2]: cart_item.yck,
[yct22]: cart_item.yck,
[yct3]: cart_item.yckid,
[yct33]: cart_item.yckid,
[yct4]: cart_item.pre_json,
[yct44]: cart_item.pre_json,
})
//搭配购直接购买特殊处理
if(th.data.collocation_goods){
let yct1 = 'bn_goods.yck_off';
let yct2 = 'bn_goods.yck';
let yct3 = 'bn_goods.yckid';
let yct4 = 'bn_goods.pre_json';
th.setData({
[yct1]: cart_item.yck_off,
[yct2]: cart_item.yck,
[yct3]: cart_item.yckid,
[yct4]: cart_item.pre_json,
})
}
//--------------------
if (cart_item.yck_off && cart_item.yck_off == 2) {
let order_amount = (cart_item.order_amount - cart_item.yck).toFixed(2);
let yck = 0
if (order_amount * 1 > 0) {
cart_item.order_amount = order_amount;
all_prestore += parseFloat(cart_item.yck);
yck = parseFloat(cart_item.yck)
} else {
all_prestore += cart_item.order_amount * 1
yck = parseFloat(cart_item.order_amount)
cart_item.order_amount = 0
}
all_yck_arr.push(yck) //真实预存款抵扣金额
all_pre_json.push(cart_item.pre_json)
all_prestore = parseFloat(all_prestore); //真实预存款抵扣金额总和
}
} else {
let yct1 = 'cartlist[' + i + '].yck_off';
let yct11 = 'old_cartlist[' + i + '].yck_off';
let yct2 = 'cartlist[' + i + '].yck';
let yct22 = 'old_cartlist[' + i + '].yck';
let yct3 = 'cartlist[' + i + '].yckid';
let yct33 = 'old_cartlist[' + i + '].yckid';
let yct4 = 'cartlist[' + i + '].pre_json';
let yct44 = 'old_cartlist[' + i + '].pre_json';
th.setData({
[yct2]: 0,
[yct22]: 0,
[yct3]: '',
[yct33]: '',
[yct4]: '',
[yct44]: '',
})
}
cart_item.total_amount = parseFloat(cart_item.total_amount) + parseFloat(cart_item.shipping_price); //总金额
cart_item.order_amount = parseFloat(cart_item.order_amount) + parseFloat(cart_item.shipping_price); //总金额
cart_item.total_amount = cart_item.total_amount.toFixed(2);
cart_item.order_amount = cart_item.order_amount.toFixed(2);
//-- 最后的金额小于佣金 --
if (cart_item.order_amount < cart_item.can_usecommise) {
if (th.data.cart_use_commission) {
wx.showToast({
title: '应付金额小于本单佣金,不可使用!',
icon: 'none',
duration: 2000
})
}
th.setData({
cart_use_commission: 0
});
}
if (th.data.cart_use_commission) {
cart_item.order_amount -= cart_item.can_usecommise;
}
//搭配购在使用余额
if (th.data.bn_use_money == 1 && th.data.is_b_now == 1) {
if (umoney > cart_item.order_amount) {
cart_item.user_money = cart_item.order_amount;
umoney = umoney - cart_item.order_amount;
} else {
cart_item.user_money = umoney;
umoney = 0;
}
} else {
//--------------如果使用余额,购物车购买---------------------
if (th.data.js_use_money == 1) {
if (umoney > cart_item.order_amount) {
cart_item.user_money = cart_item.order_amount;
umoney = umoney - cart_item.order_amount;
} else {
cart_item.user_money = umoney;
umoney = 0;
}
} else {
cart_item.user_money = 0;
}
}
cart_item.user_money = parseFloat(cart_item.user_money).toFixed(2);
if (coupon_price > 0) cart_item.coupon_price = coupon_price.toFixed(2);
else cart_item.coupon_price = coupon_price
if (quan_no) cart_item.quan_no = quan_no;
//cart_item.goods_price = o_price.toFixed(2);
cart_item.order_amount = cart_item.order_amount - cart_item.user_money; //会员使用余额
all_price += parseFloat(f_o_price);
all_total_m += parseFloat(cart_item.total_amount);
all_shipping_m += parseFloat(cart_item.shipping_price);
all_order_m += parseFloat(cart_item.order_amount);
all_user_m += parseFloat(cart_item.user_money);
all_coupon_price_m += parseFloat(cart_item.coupon_price);
all_cutprice += parseFloat(cart_item.cut_price);
all_zh_cutprice += parseFloat((cart_item.zh_cut_price ? cart_item.zh_cut_price : '0'));
all_ladder_cutprice += parseFloat(cart_item.ladder_cut_price);
all_order_prom += parseFloat(cart_item.order_prom_amount);
}
all_prestore = parseFloat(all_prestore).toFixed(2);
all_shipping_m = parseFloat(all_shipping_m).toFixed(2);
all_total_m = parseFloat(all_total_m).toFixed(2);
all_order_m = parseFloat(all_order_m).toFixed(2);
all_price = parseFloat(all_price).toFixed(2);
all_user_m = parseFloat(all_user_m).toFixed(2);
all_total_m = parseFloat(all_total_m).toFixed(2);
all_coupon_price_m = parseFloat(all_coupon_price_m).toFixed(2);
all_cutprice = all_cutprice.toFixed(2);
all_order_prom = all_order_prom.toFixed(2);
all_zh_cutprice = parseFloat(all_zh_cutprice).toFixed(2);
all_ladder_cutprice = parseFloat(all_ladder_cutprice).toFixed(2);
var atxt = "formData.total_amount";
var atxt1 = "formData.order_amount";
var atxt2 = "formData.all_price";
var atxt3 = "formData.user_money";
var atxt4 = "formData.shipping_price";
var atxt5 = "formData.coupon_price";
var atxt6 = "formData.cut_price";
var atxt7 = "formData.order_prom_amount";
var atxt8 = "formData.zh_cut_price";
var atxt9 = "formData.ladder_cut_price";
var atxt10 = "formData.prestore"; //预存金额
var atxt11 = "formData.pre_json"; //预存json
var atxt12 = "formData.all_yck_arr"; //预存真实抵扣列表
th.setData({
[atxt]: all_total_m, [atxt1]: all_order_m,
[atxt2]: all_price, [atxt3]: all_user_m, [atxt4]: all_shipping_m,
[atxt5]: all_coupon_price_m, [atxt6]: all_cutprice,
[atxt7]: all_order_prom, show_submit: 1, [atxt8]: all_zh_cutprice, [atxt9]: all_ladder_cutprice, submit: 0,
[atxt10]: all_prestore,
[atxt11]: all_pre_json,
[atxt12]: all_yck_arr,
})
th.data.lon=lon;
th.data.lat=lat;
th.data.order_prom_list_cart = c_arr;
th.set_can_num();
wx.hideLoading();
//});
},
set_can_num: function () {
var th = this;
//-- 这个地方,循环计算几张优惠券可用--
for (var iter in th.data.cartlist) {
var num = 0;
var c_item = th.data.cartlist[iter];
var pkid = c_item.pickup_id;
//-- 普通券 --
if (c_item.quan_list) {
for (var iter1 in c_item.quan_list) {
//判断是不是其他订单有选用
var is_other_is_use = th.check_other_use(c_item.quan_list[iter1], pkid);
if (!is_other_is_use) num++;
}
}
//-- 包邮券 --
var by_quan = th.data.get_by_quan_list_cart[pkid];
if (by_quan && c_item.exp_type == 0) {
for (var iter2 in by_quan) {
//判断是不是其他订单有选用
var is_other_is_use = th.check_other_use_by(by_quan[iter2], pkid);
if (!is_other_is_use) num++;
}
}
var set_txt = "cartlist[" + iter + "].can_num";
th.setData({ [set_txt]: num });
}
},
//---------计算立即购买----------
calculatePrice2: async function (qfunc) {
var th = this, good = this.data.bn_goods;
if (!good) return false;
//搭配的计算要用购物的车计算方法
// if (good.prom_type == 5 ) {
if (good.prom_type == 5 ) {
if( th.data.old_cartlist && th.data.old_cartlist.length > 0){
th.calculatePrice();
return false;
}else{
//如果搭配购搭配商品未空的话,让主商品的活动变成0,取消搭配购
th.setData({ 'bn_goods.prom_type': 0, 'bn_goods.prom_id': 0, collocation_goods: [] });
good.prom_type=0
good.prom_id=0
}
}
th.setData({ submit: 1 });
wx.showLoading({
title: "处理中.",
mask: true
})
//-----------计算商品总价--------------
var allpice = good.shop_price * good.buynum;
var cut_price = 0;
var allpice1 = allpice;
th.data.lon=0;
th.data.lat=0;
//如果有线下取价的时候
if (good.is_offline) {
allpice = good.offline_price * good.buynum;
}
if (good.prom_type == 3 && good.prom_price !== null) {
cut_price = allpice - good.prom_price;
}
allpice = parseFloat(allpice).toFixed(2);
var txt = "formData.all_price";
th.setData({ [txt]: allpice, });
if (cut_price) {
var c_txt = "formData.cut_price";
th.setData({ [c_txt]: cut_price, });
}
//to.getwuliuprice(async function (rs) {
var o_shipping_price = 0, goods_weight = -1, goods_piece = -1;
var out_of_weight = null; //超出多少重量
//---如果有选择优惠券的情况下---
var quan_price = 0, bn_pick = th.data.bn_pick;
var quan_no = null;
if (th.data.using_quan[bn_pick] != null && th.data.using_quan[bn_pick] != undefined)
quan_no = th.data.using_quan[bn_pick].coupon_no;
if (quan_no) {
//如果是一件代发就不要找商品
if (th.data.using_quan[bn_pick].isby != 1 && !good.whsle_id) {
//---获取优惠券优惠---
await getApp().request.promiseGet("/api/weshop/couponList/getUseCouponPrice", {
data: {
storeId: oo.stoid,
CashRepNo: quan_no,
WaresSum: th.data.ckeck_quan_price,
WareIds: th.data.check_quan_ware_list
}
}).then(res => {
if (res.data.code == 0 && res.data.data && res.data.data.length > 0) {
quan_price = res.data.data[0].WareCashSum;
}
})
}
}
var gd_arr_list = [];
gd_arr_list.push(good);
if (th.data.buy_now_gift_goods) {
gd_arr_list = [...gd_arr_list, ...th.data.buy_now_gift_goods];
}
//-- 把订单优惠的判断提前,bn_is_order_yh是确定要不要订单优惠的控制 --
var condition = parseFloat(parseFloat(allpice) - cut_price - quan_price).toFixed(2);
var ord_prom = null;
var is_ord_prom_post = 0;
if (condition > 0 && th.data.bn_is_order_yh && !th.data.bn_goods.whsle_id) {
await getApp().request.promiseGet("/api/weshop/promorder/getOrderPromotion", {
data: { store_id: os.stoid, orderAmount: condition, user_id: getApp().globalData.user_id }
}).then(res => {
if (res.data.code == 0) {
var data = res.data.data;
ord_prom = data;
}
})
if (ord_prom && ord_prom.is_post_temp) {
is_ord_prom_post = 1;
}
}
//-----------当地址不为空,且是物流时,计算物流费用,并同时商品不是优惠活动的包邮----------
if (th.data.user_addr != null && th.data.bn_exp_type == 0 && good.is_past != 1) {
//看是不是有调用过包邮券
if (!th.data.isget_by_quan[th.data.bn_pick] && good.is_xz_yh != 1) {
//--判断要不要显示包邮券,链式调用接口,调取包邮券,已经是减了优惠的金额,见到优惠券的钱---
getApp().request.promiseGet("/api/weshop/userfeemail/pageAndArea", {
data: {
store_id: os.stoid,
isuse: 0,
condition: condition,
user_id: getApp().globalData.user_id,
pageSize: 2000
}
}).then(res => {
if (res.data.code == 0 && res.data.data.total > 0) {
//此时要循环判断包邮的地区,不包邮商品是不是符合
var arr = [], quanlist = res.data.data.pageData;
quanlist = th.check_is_frozenQuan(quanlist, th.data.frozenQuan, 1);
for (var i in quanlist) {
var item = quanlist[i];
if (item.region_list && th.check_by_area(item.region_list)) continue; //如果是不包邮区域
if (item.goods_list) {
var no_goods_arr = item.goods_list.split(",");
if (ut.isContained(no_goods_arr, gd_arr_list)) continue; //如果是不包邮商品
}
arr.push(item);
}
if (arr) {
th.setData({ get_by_quan_list: arr });
}
th.data.isget_by_quan[th.data.bn_pick] = 1;
}
})
}
var shipping_price = 0;
var quan_no_goods_arr = null;
var is_by_quan = 0;
var pickid = th.data.bn_pick;
//如果是包邮券的时候,要看看券的情况,判断一下包邮有没有不包邮模板
if (quan_no && th.data.using_quan[pickid].isby == 1) {
var quan = th.data.using_quan[pickid];
if (quan.goods_list) {
quan_no_goods_arr = quan.goods_list.split(",");
} else {
is_by_quan = 1;
}
}
if (!is_by_quan) {
var user_addr = th.data.user_addr;
var req_d = {
province: user_addr.province,
city: user_addr.city,
district: user_addr.district,
wuliu: parseFloat(parseFloat(allpice) - cut_price - quan_price).toFixed(2),
store_id: os.stoid
}
var back_data = null;
//判断是不是包邮模板,bn_is_post_temp 和 订单优惠的包邮模板一起控制
if (th.data.bn_is_post_temp && (!ord_prom || is_ord_prom_post)) {
await getApp().request.promisePost("/api/weshop/order/areaFreight", {
is_json: 1, data: req_d
}).then(rs => {
if (rs.data.code == 0) back_data = rs.data.data;
});
}
//如果有包邮券的不包邮商品的时候
if (quan_no_goods_arr) {
if (back_data && back_data.no_free_goods) {
back_data['is_by_all'] = 1;
var arr3 = back_data.no_free_goods.filter(item => {
return quan_no_goods_arr.includes(item)
})
back_data.no_free_goods = null;
if (arr3.length) {
back_data.no_free_goods = arr3;
}
}
if (!back_data || !back_data.no_free_goods) {
if (!back_data) back_data = {};
back_data['is_by_all'] = 1;
back_data['no_free_goods'] = quan_no_goods_arr;
}
}
var cut_good_weight = 0;
for (let i in gd_arr_list) {
let item = gd_arr_list[i];
if (good.is_free_shipping == 1) continue;
//-- 代发商品不算运费 --
if (good.whsle_id) continue;
if (back_data && back_data['is_by_all'] && (!back_data.no_free_goods || back_data.no_free_goods.indexOf(item.goods_id) == -1)) {
if (item['exp_sum_type'] == 2 && back_data.weight_free > 0) {
if (goods_weight < 0) goods_weight = 0;
goods_weight += item['weight'] * item['buynum'];
cut_good_weight += item['weight'] * item['buynum'];
}
if (back_data.weight_free > 0) {
out_of_weight = (back_data.weight_free * 1000) - cut_good_weight;
}
continue;
}
switch (item['exp_sum_type']) {
case 1:
//统一运费
o_shipping_price += item['uniform_exp_sum'];
break;
case 2:
if (goods_weight < 0) goods_weight = 0;
//累积商品重量 每种商品的重量 * 数量
goods_weight += item['weight'] * item['buynum'];
if (back_data && back_data.is_by_all && !back_data.no_free_goods) {
cut_good_weight += item['weight'] * item['buynum'];
if (back_data.weight_free > 0) {
out_of_weight = (back_data.weight_free * 1000) - cut_good_weight;
}
}
break;
case 3:
if (goods_piece < 0) goods_piece = 0;
//累积商品数量
goods_piece += parseInt(item['buynum']);
break;
}
}
//如果是正值的时候
if (out_of_weight >= 0) out_of_weight = -cut_good_weight;
else out_of_weight = -back_data.weight_free * 1000;
var code = "";
if (th.data.wu_arr && th.data.wu_arr[th.data.index]) code = th.data.wu_arr[th.data.index].code;
th.data.is_no_by[th.data.bn_pick] = 0;
th.data.is_by[th.data.bn_pick] = 0;
//--------------开始计算物流------------------
// shipping_price = ut.calculatewuliu(code, o_shipping_price, goods_weight, out_of_weight,
// goods_piece, th.data.user_addr, back_data, rs);
var w_data = {
store_id: os.stoid, code: code,
o_shipping_price: o_shipping_price,
goods_weight: goods_weight,
out_of_weight: out_of_weight, goods_piece: goods_piece,
user_addr_province: th.data.user_addr.province,
user_addr_city: th.data.user_addr.city,
user_addr_district: th.data.user_addr.district,
is_by_all: back_data && back_data.is_by_all ? 1 : 0,
no_free_goods: back_data && back_data.no_free_goods && back_data.no_free_goods.length > 0 ? 1 : 0,
}
var is_ok = 1;
await getApp().request.promisePost('/api/weshop/order/getOrderWuLiPrice', { data: w_data, is_json: 1 }).then(res => {
if (res.data.code == 0) {
shipping_price = res.data.data;
} else {
is_ok = 0;
}
})
if (!is_ok) {
wx.hideLoading();
wx.showToast({
title: "计算物流错误", icon: 'none', duration: 2000
})
//th.setData({ show_submit:0 });
return false;
}
if (shipping_price <= 0) {
th.data.is_by[th.data.bn_pick] = 1; //已经是包邮了,就不要选择包邮券
}
}
shipping_price = parseFloat(shipping_price).toFixed(2);
var wl_txt = "formData.shipping_price";
th.setData({ [wl_txt]: shipping_price, })
} else if (th.data.bn_exp_type == 1) {
var wl_txt = "formData.shipping_price";
th.setData({ [wl_txt]: 0, })
}
if (quan_no) {
if (th.data.using_quan[bn_pick].isby == 1) {
shipping_price = 0;
var wl_txt = "formData.shipping_price";
th.setData({ [wl_txt]: 0, })
}
}
//-----------------支付价,优惠券不减物流-----------------
var total_m = (parseFloat(allpice1)).toFixed(2);
var order_m = (parseFloat(allpice - cut_price) - quan_price).toFixed(2);
var coupon_price = quan_price; //优惠券优惠了多少钱
if (order_m < 0) {
order_m = 0;
coupon_price = parseFloat(order_m).toFixed(2);
}
//--看一下有没有订单优惠--
var o_condition = parseFloat(order_m);
if (th.data.bn_goods.whsle_id > 0) {
o_condition = 0;
}
var order_prom_amount = 0;
var order_prom_id = 0;
if (ord_prom && o_condition > 0) {
//么有使用券,或者活动没有限制使用优惠券
if (coupon_price <= 0 || !ord_prom.is_xz_yh) {
order_prom_id = ord_prom['id'];
switch (ord_prom['type']) {
case 0:
order_m = Math.round(o_condition * ord_prom['expression']) / 100;//满额打折
order_prom_amount = (o_condition - order_m).toFixed(2);
break;
case 1:
//-- 如果有优惠促销倍减的时候 --
var bs = 1;
if (ord_prom.is_bz) {
bs = Math.floor(o_condition / ord_prom.money);
}
order_m = o_condition - bs * ord_prom['expression'];//满额优惠金额
order_prom_amount = ord_prom['expression'];
break;
}
}
}
//--订单优惠的显示--
var order_prom_txt1 = "formData.order_prom_id";
var order_prom_txt2 = "formData.order_prom_amount";
if (order_prom_id > 0) {
th.setData({ [order_prom_txt1]: order_prom_id, [order_prom_txt2]: order_prom_amount })
} else {
th.setData({ [order_prom_txt1]: 0, [order_prom_txt2]: 0 })
}
//预存金额使用参与计算
if (th.data.udata && th.data.udata.Balance > 0 && order_m * 1 > 0) {
if (!th.data.bn_goods.keyid) {
//获取门店信息
await getApp().request.promiseGet("/api/weshop/pickup/list", {
data: {
store_id: os.stoid,
ids: th.data.bn_pick
}
}).then(res => {
if (ut.ajax_ok(res)) {
console.log(res);
if (res.data.code == 0) {
let resData = res.data.data.pageData
if (resData && resData[0]) {
let keyid = resData[0].keyid
let txt = 'bn_goods.keyid'
th.setData({
[txt]: keyid
})
}
}
}
})
}
if (th.data.bn_goods.keyid) {
let cart_yc = await th.beforAdvancesum({
order_amount: order_m,
goods: [{
goods_sn: th.data.bn_goods.goods_sn,
goods_price: th.data.bn_goods.shop_price || th.data.bn_goods.goods_price,
goods_num: th.data.bn_goods.buynum || th.data.bn_goods.goods_num,
}],
sto: {
keyid: th.data.bn_goods.keyid
}
})
if (!good.yck_off) {
good.yck_off = cart_yc.yck_off
}
if(cart_yc.yck*1==0){
good.yck_off = 0
}
good.yck = cart_yc.yck
good.yckid = cart_yc.yckid
good.pre_json = cart_yc.pre_json
let yct1 = 'bn_goods.yck_off';
let yct2 = 'bn_goods.yck';
let yct3 = 'bn_goods.yckid';
let yct4 = 'bn_goods.pre_json';
th.setData({
[yct1]: good.yck_off,
[yct2]: good.yck,
[yct3]: good.yckid,
[yct4]: good.pre_json,
})
if (good.yck_off && good.yck_off == 2) {
let order_amount = (order_m - good.yck).toFixed(2);
let yck = 0
if (order_amount * 1 > 0) {
order_m = order_amount;
// all_prestore+=parseFloat(good.yck);
yck = parseFloat(good.yck)
} else {
// all_prestore+=order_m*1
yck = parseFloat(order_m)
order_m = 0
}
let atxt10 = "formData.prestore"; //预存金额
let atxt11 = "formData.pre_json"; //预存json
let atxt12 = "formData.all_yck_arr"; //预存真实抵扣列表
th.setData({
[atxt10]: yck,
[atxt11]: [good.pre_json],
[atxt12]: [yck],
})
// formData.prestore
// all_yck_arr.push(yck) //真实预存款抵扣金额
// all_pre_json.push(good.pre_json)
// all_prestore = parseFloat(all_prestore); //真实预存款抵扣金额总和
}else{
let atxt10 = "formData.prestore"; //预存金额
let atxt11 = "formData.pre_json"; //预存json
let atxt12 = "formData.all_yck_arr"; //预存真实抵扣列表
th.setData({
[atxt10]: 0,
[atxt11]: '',
[atxt12]: [],
})
}
}
} else {
let yct1 = 'bn_goods.yck_off';
let yct2 = 'bn_goods.yck';
let yct3 = 'bn_goods.yckid';
let yct4 = 'bn_goods.pre_json';
let atxt10 = "formData.prestore"; //预存金额
let atxt11 = "formData.pre_json"; //预存json
let atxt12 = "formData.all_yck_arr"; //预存真实抵扣列表
th.setData({
[yct2]: 0,
[yct3]: '',
[yct4]: '',
[atxt10]: 0,
[atxt11]: '',
[atxt12]: [],
})
}
//判断是否同城配送,而且没有调用过
if (th.data.bn_exp_type == 2 && th.data.user_addr) {
var gd_w = 0, lon = 0, lat = 0;
for (let ib in gd_arr_list) {
let item_b = gd_arr_list[ib];
gd_w += item_b['weight'] * item_b['buynum'];
}
//-- 获取距离 --
await getApp().request.promisePost("/api/weshop/order/sameCityExp/getGeocoder", {
is_json: 1, data: { address: th.data.user_addr.more_address + th.data.user_addr.address }
}).then(res => {
if (res.data.code == 0) {
var data = JSON.parse(res.data.data);
if (data.status == 0) {
lon = data.result.location.lng;
lat = data.result.location.lat;
}
}
})
var req_data = {
store_id: os.stoid, order_amount: parseFloat(order_m),
lon: lon, lat: lat, pickup_id: bn_pick, goods_weight: gd_w
}
var is_next = 1;
//获取同城配送参数
await getApp().request.promisePost("/api/weshop/order/sameCityExp/getMoney", {
is_json: 1, data: req_data
}).then(res => {
if (res.data.code == 0) {
var wl_txt = "formData.shipping_price";
th.setData({ [wl_txt]: res.data.data, })
} else {
is_next = 0;
if (qfunc) {
qfunc();
} else {
wx.showToast({
title: res.data.msg,
icon: 'none',
duration: 2000
})
}
}
})
if (!is_next){
th.setData({show_submit:1,same_ok:0,submit: 0})
return false
}
th.data.lon=lon;
th.data.lat=lat;
th.data.bn_gd_w=gd_w;
th.data.bn_samecity_order_amount=req_data.order_amount;
}
total_m = parseFloat(total_m) + parseFloat(th.data.formData.shipping_price);
order_m = parseFloat(order_m) + parseFloat(th.data.formData.shipping_price);
total_m = total_m.toFixed(2);
order_m = order_m.toFixed(2);
var atxt = "formData.total_amount";
th.setData({ [atxt]: total_m, })
var txt = "formData.user_money";
var txt2 = "formData.order_amount";
var txt3 = "formData.coupon_price";
//-- 最后的金额小于佣金 --
if (parseFloat(order_m) < parseFloat(th.data.bn_goods.use_commission)) {
if (th.data.bn_use_commission) {
wx.showToast({
title: '应付金额小于本单佣金,不可使用!',
icon: 'none',
duration: 2000
})
}
th.setData({
bn_use_commission: 0
});
}
var txt4 = "formData.use_commission";
if (th.data.bn_use_commission) {
order_m = (parseFloat(order_m) - parseFloat(th.data.bn_goods.use_commission)).toFixed(2);
th.setData({ [txt4]: th.data.bn_goods.use_commission })
}
var amoney = parseFloat(th.data.userinfo.user_money - th.data.txmon - th.data.userinfo.frozen_money);
//--------------如果使用余额---------------------
if (th.data.bn_use_money == 1) {
if (amoney > parseFloat(order_m)) {
order_m = parseFloat(order_m).toFixed(2);
th.setData({ [txt]: order_m, [txt2]: 0, [txt3]: coupon_price, show_submit: 1, submit: 0 })
} else {
order_m = parseFloat(order_m) - parseFloat(amoney);
order_m = order_m.toFixed(2);
th.setData({ [txt]: amoney, [txt2]: order_m, [txt3]: coupon_price, show_submit: 1, submit: 0 })
}
} else {
th.setData({ [txt]: 0, [txt2]: order_m, [txt3]: coupon_price, show_submit: 1, submit: 0 })
}
//优惠活动送积分
if (good.s_intValue) {
txt = "formData.give_integral";
th.setData({ [txt]: good.s_intValue });
}
//优惠送券
if (good.s_coupon_id) {
var i_txt = "formData.give_coupon_id";
//这个是json格式的
var i_txt1 = "formData.g_coupon_num";
var ob = [{ "num": good.s_coupon_num, "c_id": good.s_coupon_id }];
ob = JSON.stringify(ob);
th.setData({ [i_txt]: good.s_coupon_id, [i_txt1]: ob });
}
//优惠礼包
if (good.s_libao) {
var l_txt = "formData.give_lb_id";
//这个是json格式的
var l_txt1 = "formData.g_lb_num";
var ob = [{ "num": good.s_lb_num, "l_id": good.s_libao }];
ob = JSON.stringify(ob);
th.setData({ [l_txt]: good.s_libao, [l_txt1]: ob });
}
//专享礼包
if (good.zx_libao) {
var l_txt = "formData.give_zxlb_id";
//这个是json格式的
var l_txt1 = "formData.g_zxlb_num";
var ob = [{ "num": good.zx_lb_num, "l_id": good.zx_libao }];
ob = JSON.stringify(ob);
th.setData({ [l_txt]: good.zx_libao, [l_txt1]: ob });
}
wx.hideLoading();
//});
},
requestSubscribe() {
const th = this;
const template_id = this.data.template_id;
wx.getSetting({
withSubscriptions: true,
success(res) {
let itemSettings = res.subscriptionsSetting.itemSettings;
if (itemSettings && itemSettings[template_id] == "accept") {
//要检查一下赠品有可以足够
th.sub_check_gift(function () {
th.submit_func();
})
} else {
th.sendsm(function () {
//要检查一下赠品有可以足够
th.sub_check_gift(function () {
th.submit_func();
})
})
}
}
})
this.setData({
submit: 1,
})
},
//分配代发商品
add_df_goods(good, df_goods, whsle_id, room_id) {
var df_price = parseFloat(good.goods_num * good.goods_price);
var index = df_goods.findIndex(function (e) {
return e.whsle_id == whsle_id
})
if (index > -1) {
df_goods[index].df_price += df_price;
df_goods[index].df_goods.push(good);
if (room_id) {
if (!df_goods[index].df_room_ids)
df_goods[index].df_room_ids = "";
df_goods[index].df_room_ids += room_id + ",";
}
if(getApp().globalData.groupchat_id && getApp().globalData.groupchat_id!='undefined'){
df_goods[index].groupchat_id=getApp().globalData.groupchat_id
}
} else {
var e = {
whsle_id: whsle_id,
df_price: df_price,
df_goods: []
}
if (room_id) e.df_room_ids = room_id + ','
if(getApp().globalData.groupchat_id && getApp().globalData.groupchat_id!='undefined'){
e.groupchat_id=getApp().globalData.groupchat_id
}
e.df_goods.push(good);
df_goods.push(e);
}
},
async submit_func() {
let cartlist = this.data.cartlist || [];
let allarr = []
let strarr = []
let cbarr = []
let cbarr_id = []
if (cartlist && cartlist.length > 0) {
for (let index = 0, length = cartlist.length; index < length; index++) {
let item = cartlist[index].goods;
if(!item) continue;
for (let i = 0, leng = item.length; i < leng; i++) {
if (item[i].prom_type == 7) {
strarr.push(item[i])
}
if (item[i].prom_type != 7 && item[i].goods_prom_type == 7) {
allarr.push(item[i])
}
}
}
}
if (strarr.length > 0) {
if (allarr.length > 0) {
allarr.map(item => {
let aitem = strarr.find(ite => item.goods_prom_id == ite.goods_prom_id)
if (aitem) {
strarr.push(item)
}
})
}
for (let j = 0, length = strarr.length; j < length; j++) {
let userbuynum = await this.getUserBuyPromNum(strarr[j].goods_prom_id)
if (strarr[j].act.buy_limit != 0 && userbuynum >= strarr[j].act.buy_limit) {
cbarr.push(strarr[j].goods_name)
cbarr_id.push(strarr[j].id)
}
}
if (cbarr.length > 0) {
let str = cbarr.join()
wx.showModal({
title: '提示',
content: `${str}超出组合购限购次数,将以普通商品购买`,
success: async (res) => {
if (res.confirm) {
//-- 数据的更新 --
for (let k = 0, length = cbarr_id.length; k < length; k++) {
let data = {
id: cbarr_id[k],
selected: 1,
store_id: oo.stoid,
prom_type: 0,
prom_id: 0
};
await getApp().request.promisePut("/api/weshop/cart/update", {
data: data
});
}
wx.reLaunch({
url: '/packageE/pages/cart/cart2/cart2',
})
} else if (res.cancel) {
console.log('用户点击取消')
this.setData({
submit: 0
})
}
}
})
} else {
this.submit_func2()
}
} else {
this.submit_func2()
}
},
//获取用户活动参与次数
async getUserBuyPromNum(prom_id) {
var userInfo = getApp().globalData.userInfo;
var url = `/api/weshop/ordergoods/getUserBuyPromNum?store_id=${os.stoid}&user_id=${userInfo.user_id}&prom_type=7&prom_id=${prom_id}`;
let res = await getApp().request.promiseGet(url, {
data: {}
});
let userbuynum = 0
if (res.data.code == 0 && res.data.data) {
userbuynum = res.data.data.userbuynum
}
return userbuynum
},
//--------------------提交订单-----------------------
async submit_func2() {
if (this.data.is_summit_ing) return false;
this.data.is_summit_ing = 1;
function is_ok_wu_arr(index, name) {
if (!th.data.wu_arr) return '';
if (!th.data.wu_arr[index]) return '';
return th.data.wu_arr[index][name];
}
var th = this, pdata = new Array();
var ff = true;
//------------立即购买-------------
if (th.data.is_b_now == 1 && th.data.bn_goods.prom_type != 5) {
if ( [0,2].indexOf(th.data.bn_exp_typ) == -1 && th.data.user_addr == null) {
ff = false;
getApp().my_warnning("请选择收货地址", 0, th);
th.data.is_summit_ing = 0;
}
if (!ff) return false;
var addr = th.data.user_addr;
if (th.data.bn_exp_type == 1) addr = null;
if (th.data.bn_exp_type == 0)
if (th.data.wu_arr == null || th.data.wu_arr.length <= 0) {
getApp().my_warnning("读取物流失败", 0, th);
th.data.is_summit_ing = 0;
return false;
}
var item = {
'user_id': to.globalData.user_id,
'consignee': addr == null ? "" : addr.consignee,
'province': addr == null ? 0 : addr.province,
'city': addr == null ? 0 : addr.city,
'district': addr == null ? 0 : addr.district,
'twon': addr == null ? 0 : addr.twon,
'address': addr == null ? "" : addr.address,
'more_address': addr == null ? "" : addr.more_address,
//'mobile': th.data.userinfo.mobile,
'mobile': addr == null ? th.data.userinfo.mobile : addr.mobile,
'email': '',
'shipping_code': th.data.bn_exp_type == 1 ? 0 : is_ok_wu_arr(th.data.index, 'code'),
'shipping_name': th.data.bn_exp_type == 1 ? '' : is_ok_wu_arr(th.data.index, 'name'),
'invoice_title': '',
'goods_price': parseFloat(th.data.formData.all_price).toFixed(2), //商品总价
'shipping_price': parseFloat(th.data.formData.shipping_price).toFixed(2), //物流金额
'user_money': parseFloat(th.data.formData.user_money).toFixed(2), //使用余额
'total_amount': parseFloat(th.data.formData.total_amount).toFixed(2), //订单总价
'order_amount': parseFloat(th.data.formData.order_amount).toFixed(2), //应付
'user_note': th.data.user_note['0'] ? th.data.user_note['0'] : "", //用户备注
'store_id': oo.stoid, //商家
'pickup_id': th.data.bn_pick, //门店
'exp_type': th.data.bn_exp_type, //配送方式
'order_goods': new Array(),
};
//是不是重新提交
if (th.data.is_continue == 1) item.is_continue = 1;
//-- 如果有使用佣金抵扣的话 --
if (th.data.bn_use_commission) {
item.use_commission = th.data.bn_goods.use_commission;
}
if(item.exp_type==2){
item.lon=th.data.lon?th.data.lon:0;
item.lat=th.data.lat?th.data.lat:0;
item.goods_weight=th.data.bn_gd_w;
item.samecity_order_amount=th.data.bn_samecity_order_amount;
}
//获取立即购买的商品的信息
var gg = to.get_b_now();
//--商品的房间号--
if (gg.room_id && gg.room_id > 0) {
item.room_ids = gg.room_id;
}
//群id
if(gg.groupchat_id && gg.groupchat_id!='undefined'){
item.groupchat_ids=gg.groupchat_id;
}
var order_prom_list = {};
//--判断有没有优惠活动--
if (th.data.formData.order_prom_amount > 0) {
order_prom_list.order_prom_id = th.data.formData.order_prom_id;
order_prom_list.order_prom_amount = th.data.formData.order_prom_amount;
}
//--判断优惠活动的提交--
if (th.data.formData.cut_price > 0) {
order_prom_list.discount_amount = th.data.formData.cut_price.toFixed(2);
var ob = [{
"prom_id": th.data.bn_goods.prom_id,
"dis": parseFloat(th.data.formData.cut_price).toFixed(2),
"ispt": 0
}]
order_prom_list.prom_pt_json = JSON.stringify(ob);
}
if (th.data.formData.give_integral > 0) {
order_prom_list.give_integral = th.data.formData.give_integral;
}
if (th.data.formData.give_coupon_id > 0) {
order_prom_list.give_coupon_id = th.data.formData.give_coupon_id;
order_prom_list.g_coupon_num = th.data.formData.g_coupon_num;
}
if (th.data.formData.give_lb_id > 0) {
order_prom_list.give_lb_id = th.data.formData.give_lb_id;
order_prom_list.g_lb_num = th.data.formData.g_lb_num;
}
//--- 专享礼包 ---
if (th.data.formData.give_zxlb_id > 0) {
order_prom_list.give_zxlb_id = th.data.formData.give_zxlb_id;
order_prom_list.g_zxlb_num = th.data.formData.g_zxlb_num;
}
item.order_prom_list = order_prom_list;
//组装优惠券的钱
if (parseFloat(th.data.formData.coupon_price) > 0) {
item.coupon_price = th.data.formData.coupon_price;
item.coupon_no = th.data.using_quan[th.data.bn_pick].coupon_no;
}
if (th.data.using_quan[th.data.bn_pick] && th.data.using_quan[th.data.bn_pick].coupon_no && th.data.using_quan[th.data.bn_pick].isby) {
item.coupon_no = th.data.using_quan[th.data.bn_pick].coupon_no;
item.coupon_price = 0;
}
//老会员成为分销下线需要的参数
if (getApp().globalData.first_leader && !getApp().globalData.userInfo.first_leader) {
//判断一下分享人是不是分享商
await app.request.promiseGet("/api/weshop/users/get/" + os.stoid + "/" + getApp().globalData.first_leader, {}).then(res => {
if (res.data.code == 0) {
var user = res.data.data;
if (user.is_distribut == 1) {
item.first_leader = parseInt(getApp().globalData.first_leader);
}
}
})
}
var goods = {
'goods_id': gg.goods_id,
'goods_name': gg.goods_name,
'goods_sn': gg.goods_sn,
'goods_num': gg.goods_num,
'market_price': th.data.bn_goods.market_price,
'goods_price': th.data.bn_goods.shop_price,
'member_goods_price': th.data.bn_goods.shop_price,
'store_id': oo.stoid,
'prom_type': th.data.bn_goods.prom_type, //促销活动类型
'prom_id': th.data.bn_goods.prom_id, //促销活动id
};
if (th.data.bn_goods.whsle_id) {
item.is_whsle = 1;
item.whsle_id = th.data.bn_goods.whsle_id;
goods.is_whsle_goods = 1;
}
if (getApp().globalData.skinface_id) {
goods.skinface_id = getApp().globalData.skinface_id;
}
//-- 把导购的信息填入--
if (gg.guide_id) {
goods.guide_id = gg.guide_id;
goods.guide_type = gg.guide_type;
//调用接口判断是不是会员
await getApp().request.promiseGet("/api/weshop/shoppingGuide/getId/" + oo.stoid + "/" + gg.guide_id, {}).then(res => {
if (res.data.code == 0) {
goods.guide_name = res.data.data.salesman;
goods.guide_sn = res.data.data.salesman_no;
}
})
}
if(gg.groupchat_id && gg.groupchat_id!='undefined'){
goods.groupchat_id=gg.groupchat_id
}
//--商品的房间号--
if (gg.room_id && gg.room_id > 0) {
goods.room_id = gg.room_id;
}
//积分购,先要带is_integral_normal=1
if (gg.is_integral_normal) {
goods.is_integral_normal = 1; item.is_normal = 1;
}
//先要带is_pd_normal=1
if (gg.is_pd_normal) {
goods.is_pd_normal = 1; item.is_normal = 1;
}
//如果不立即购买或者秒杀,如果是线下库存购买的时候
if (goods.prom_type != 1 && goods.prom_type != 6 && goods.prom_type != 2
&& th.data.sales_rules >= 2 && !th.data.bn_goods.whsle_id && !getApp().is_virtual(th.data.bn_goods)) {
var isok = 1;
await th.check_store_num(goods.goods_id, th.data.bn_pick, gg.goods_num, function (res) {
isok = res;
});
if (!isok) {
getApp().confirmBox("商品的门店库存不足");
th.data.is_summit_ing = 0;
return false;
}
}
//-- 如果有线下取价的话 --
if (th.data.bn_goods.is_offline) {
item.sum_offline_cut = (th.data.bn_goods.shop_price - th.data.bn_goods.offline_price).toFixed(2);
goods.offline_cut = item.sum_offline_cut;
goods.pricing_type = th.data.bn_goods.pricing_type;
goods.goods_price = th.data.bn_goods.offline_price;
goods.member_goods_price = th.data.bn_goods.offline_price;
}
//--- 如果有优惠促销的金额,要把金额先平摊下去 ---
if (th.data.formData.cut_price > 0 && !th.data.ispt_goods) {
var g_arr = new Array();
g_arr.push(goods);
var pt_data = {
'prom_id': goods.prom_id,
'dis': parseFloat(th.data.formData.cut_price),
'goods': g_arr,
}
var pt_res = null;
await getApp().request.promisePost("/api/weshop/order/getGoodsSplit", {
is_json: 1,
data: pt_data
}).then(res => {
if (res.data.code == 0) {
pt_res = res.data.data;
}
})
if (pt_res) {
//平摊赋值
goods.account = pt_res[0].fisrt_account;
goods.account_yu = pt_res[0].fisrt_account_yu;
item.is_discount_amount = 1;
}
}
//--组装优惠券的钱--
if (th.data.formData.coupon_price) {
item.coupon_price = th.data.formData.coupon_price;
item.coupon_no = th.data.using_quan[th.data.bn_pick].coupon_no;
goods.quan_num = th.data.formData.coupon_price;
goods.quan_no = item.coupon_no;
}
item.order_goods.push(goods);
//--如果有赠品的时候,赠品也要提交---
if (th.data.buy_now_gift_goods) {
var gift_gg_arr = th.data.buy_now_gift_goods;
for (let i in gift_gg_arr) {
let gift_gg = gift_gg_arr[i];
var g_goods = {
'goods_id': gift_gg.goods_id,
'goods_name': gift_gg.goods_name,
'goods_sn': gift_gg.goods_sn,
'goods_num': gift_gg.buynum,
'market_price': gift_gg.market_price,
'goods_price': 0,
'member_goods_price': 0,
'store_id': oo.stoid,
'is_gift': 1,
'gift_id': gift_gg.gift_id,
'prom_id': gift_gg.prom_id,
};
//-- 把导购的信息填入--
if (gg.guide_id) {
g_goods.guide_id = gg.guide_id;
g_goods.guide_type = gg.guide_type;
//调用接口判断是不是会员
await getApp().request.promiseGet("/api/weshop/shoppingGuide/getId/" + oo.stoid + "/" + gg.guide_id, {}).then(res => {
if (res.data.code == 0) {
g_goods.guide_name = res.data.data.salesman;
g_goods.guide_sn = res.data.data.salesman_no;
}
})
}
if(gg.groupchat_id && gg.groupchat_id!='undefined'){
g_goods.groupchat_id=gg.groupchat_id;
}
item.order_goods.push(g_goods);
}
}
pdata.push(item);
} else {
//---------购物车的结算---------
if (th.data.is_all_zt == 0 && th.data.user_addr == null) {
th.data.is_summit_ing = 0;
ff = false;
getApp().confirmBox("请新建收货地址");
}
if (!ff) return false;
var addr = th.data.user_addr;
// 自提,地址数据清空 exp_type设置为1
if (th.data.is_all_zt == 1) addr = null;
var val_arr = th.data.user_note;
if (th.data.is_all_zt != 1)
if (th.data.wu_arr == null || th.data.wu_arr.length <= 0) {
th.data.is_summit_ing = 0;
getApp().confirmBox("读取物流失败");
return false;
}
var order_prom_list_cart = th.data.order_prom_list_cart;
//--组装推送数据--
for (var i = 0; i < order_prom_list_cart.length; i++) {
var t_item = order_prom_list_cart[i];
var item = {
"keyid": t_item.sto ? t_item.sto.keyid : '',
'user_id': to.globalData.user_id,
'consignee': addr == null ? th.data.userinfo.mobile : addr.consignee,
'province': addr == null ? 0 : addr.province,
'city': addr == null ? 0 : addr.city,
'district': addr == null ? 0 : addr.district,
'twon': addr == null ? 0 : addr.twon,
'address': addr == null ? "" : addr.address,
'more_address': addr == null ? "" : addr.more_address,
'mobile': addr == null ? th.data.userinfo.mobile : addr.mobile,
'email': '',
'shipping_code': th.data.is_all_zt == 1 ? 0 : is_ok_wu_arr(t_item.wind, 'code'),
'shipping_name': th.data.is_all_zt == 1 ? '' : is_ok_wu_arr(t_item.wind, 'name'),
'invoice_title': '',
'goods_price': parseFloat(t_item.goods_price).toFixed(2), //商品总价
'shipping_price': parseFloat(t_item.shipping_price).toFixed(2), //物流金额
'user_money': parseFloat(t_item.user_money).toFixed(2), //使用余额
'total_amount': parseFloat(t_item.total_amount).toFixed(2), //订单总价
'order_amount': parseFloat(t_item.order_amount).toFixed(2), //应付
'user_note': val_arr[i], //用户备注
'store_id': oo.stoid, //商家
'pickup_id': t_item.pickup_id, //门店
'exp_type': t_item.exp_type, //配送方式
'order_goods': new Array(),
};
//是不是重新提交
if (th.data.is_continue == 1) item.is_continue = 1;
//----- 如果有线下取价的话 ----
if (t_item.is_offline == 1) {
item.sum_offline_cut = t_item.offline_price.toFixed(2);
}
//组装优惠券的钱
if (t_item.coupon_price) {
item.coupon_price = t_item.coupon_price;
item.coupon_no = th.data.using_quan[t_item.pickup_id].coupon_no;
} else if (t_item.quan_no) {
item.coupon_no = t_item.quan_no;
item.coupon_price = 0;
}
//-- 如果有使用佣金抵扣的话 --
if (th.data.cart_use_commission) {
item.use_commission = t_item.can_usecommise;
}
if(item.exp_type==2){
item.lon=th.data.lon?th.data.lon:0;
item.lat=th.data.lat?th.data.lat:0;
item.goods_weight=t_item.gd_w;
item.samecity_order_amount=t_item.samecity_order_amount;
}
var order_prom_list = {};
//--判断有没有优惠活动--
if (t_item.order_prom_amount > 0) {
order_prom_list.order_prom_id = t_item.order_prom_id;
order_prom_list.order_prom_amount = t_item.order_prom_amount;
}
order_prom_list.discount_amount = 0;
//--判断优惠活动的提交--
if (t_item.cut_price > 0) {
order_prom_list.discount_amount += t_item.cut_price;
}
//--判断组合优惠活动的提交--
if (t_item.zh_cut_price > 0 || t_item.zh_cut_price < 0) {
order_prom_list.discount_amount += t_item.zh_cut_price;
order_prom_list.zh_pt_json = JSON.stringify(t_item.zh_pt_json);
}
//--判断阶梯优惠活动的提交--
if (t_item.ladder_cut_price > 0 || t_item.ladder_cut_price < 0) {
order_prom_list.discount_amount += t_item.ladder_cut_price;
}
if (t_item.prom_pt_json) {
order_prom_list.prom_pt_json = JSON.stringify(t_item.prom_pt_json);
}
if (t_item.s_intValue > 0) {
order_prom_list.give_integral = t_item.s_intValue;
}
if (t_item.s_coupon_id) {
order_prom_list.give_coupon_id = t_item.s_coupon_id;
order_prom_list.g_coupon_num = JSON.stringify(t_item.g_coupon_num);
}
if (t_item.s_libao) {
order_prom_list.give_lb_id = t_item.s_libao;
order_prom_list.g_lb_num = JSON.stringify(t_item.g_lb_num);
}
//-- 送专享礼包的时候 --
if (t_item.zx_libao) {
order_prom_list.give_zxlb_id = t_item.zx_libao;
order_prom_list.g_zxlb_num = JSON.stringify(t_item.g_zxlb_num);
}
if (Object.keys(order_prom_list).length > 0) {
if (order_prom_list.discount_amount)
order_prom_list.discount_amount = parseFloat(order_prom_list.discount_amount).toFixed(2);
if (order_prom_list.order_prom_amount)
order_prom_list.order_prom_amount = parseFloat(order_prom_list.order_prom_amount).toFixed(2);
item.order_prom_list = order_prom_list;
}
//老会员成为分销下线需要的参数
if (getApp().globalData.first_leader && !getApp().globalData.userInfo.first_leader) {
//判断一下分享人是不是分享商
await app.request.promiseGet("/api/weshop/users/get/" + os.stoid + "/" + getApp().globalData.first_leader, {}).then(res => {
if (res.data.code == 0) {
var user = res.data.data;
if (user.is_distribut == 1) {
item.first_leader = parseInt(getApp().globalData.first_leader);
}
}
})
}
//房间号的ids
var room_ids = "";
//-- 把券的钱,写入从表 ---
if (t_item.quan_youhui_list && t_item.coupon_price) {
for (var kk in t_item.quan_youhui_list) {
var you_item = t_item.quan_youhui_list[kk];
//-- 对券的价格进行平摊 --
await th.split_set_goods_quanprice(you_item, t_item);
}
}
//代发商品的集合
var df_goods = [];
var df_price = 0;
var df_room_ids = "";
//此单的组合活动汇总
var zh_map_count={};
var check_map = {};
let groupchat_ids=[]
//-------------让商品添加到商品列表--------------------
for (var k = 0; k < t_item.goods.length; k++) {
console.log("222");
var g_item = t_item.goods[k];
if (g_item.goods_num <= 0) continue;
var goods = {
'goods_id': g_item.goods_id,
'goods_name': g_item.goods_name,
'goods_sn': g_item.goods_sn,
'goods_num': g_item.goods_num,
'market_price': g_item.market_price,
'goods_price': g_item.goods_price,
'member_goods_price': g_item.goods_price,
'store_id': oo.stoid,
};
if (getApp().globalData.skinface_id) {
goods.skinface_id = getApp().globalData.skinface_id;
}
//-- 线下取价也要写入,组合购的商品不能去线下价格 --
if (g_item.offline_price && t_item.is_offline == 1 && g_item.prom_type != 7) {
goods.goods_price = g_item.offline_price;
goods.member_goods_price = g_item.offline_price;
goods.offline_cut = (g_item.goods_price - g_item.offline_price).toFixed(2);
goods.pricing_type = g_item.pricing_type;
}
if (g_item.quan_num) {
goods.quan_num = g_item.quan_num;
goods.quan_no = g_item.quan_no;
}
//--判断活动的类型--
switch (g_item.prom_type) {
case 1:
case 2:
case 10:
goods.prom_type = g_item.prom_type;
goods.prom_id = g_item.prom_id;
break;
case 3:
goods.prom_type = 3;
goods.prom_id = g_item.prom_id;
if (g_item.is_gift) {
goods.is_gift = g_item.is_gift;
goods.gift_id = g_item.gift_id;
}
break;
case 5:
goods.prom_type = 5;
goods.prom_id = g_item.prom_id;
if (g_item.is_collocation) {
goods.is_collocation = g_item.is_collocation;
}
break
case 7:
goods.prom_type = 7;
goods.prom_id = g_item.prom_id;
zh_map_count[g_item.prom_id]= (zh_map_count[g_item.prom_id]?zh_map_count[g_item.prom_id]:0)+goods.goods_num; //汇总一下组合购的活动
break
default:
goods.prom_type = 0;
goods.prom_id = 0;
}
var txt = goods.prom_id + ',' + goods.prom_type + ',' + goods.goods_id + ',' + goods.is_gift;
//--赠品的时候,阶梯促销会右重复的情况 --
if (check_map[txt] && goods.prom_type != 10) {
getApp().confirmBox(goods.goods_name + "计算金额错误,请重新刷新");
return false;
} else {
check_map[txt] = 1;
}
//如果不立即购买或者秒杀,如果是线下库存购买的时候
if (goods.prom_type == 0 && th.data.sales_rules >= 2 && !g_item.whsle_id && !getApp().is_virtual(g_item) ) {
var isok = 1;
await th.check_store_num(goods.goods_id, t_item.pickup_id, goods.goods_num, function (res) {
isok = res;
});
if (!isok) {
getApp().confirmBox(goods.goods_name + "的门店库存不足");
th.data.is_summit_ing = 0;
return false;
}
}
//把优惠的平摊结果写进去
if (g_item.account >= 0 || (g_item.account_yu != 0 && g_item.account != undefined)) {
if (g_item.account >= 0) goods.account = g_item.account;
if (g_item.account_yu != 0) goods.account_yu = g_item.account_yu;
item.is_discount_amount = 1;
}
//导购ID
if (g_item.guide_id) {
goods.guide_id = g_item.guide_id;
goods.guide_type = g_item.guide_type;
//调用接口判断是不是会员
await getApp().request.promiseGet("/api/weshop/shoppingGuide/getId/" + oo.stoid + "/" + g_item.guide_id, {}).then(res => {
if (res.data.code == 0) {
goods.guide_name = res.data.data.salesman;
goods.guide_sn = res.data.data.salesman_no;
}
})
}
if(g_item.groupchat_id && g_item.groupchat_id!='undefined'){
goods.groupchat_id=g_item.groupchat_id;
groupchat_ids.push(g_item.groupchat_id);
}
//如果有阶梯促销
if (g_item.ladder_list_id) {
goods.ladder_list_id = g_item.ladder_list_id;
}
//-- 如果有代发商品,就要开始拆单 --
if (g_item.whsle_id && t_item.goods.length > 1) {
df_price += parseFloat(g_item.goods_num * g_item.goods_price);
goods.is_whsle_goods = 1;
th.add_df_goods(goods, df_goods, g_item.whsle_id, g_item.room_id);
//df_goods.push(goods);
// df_room_ids += g_item.room_id + ",";
} else {
//-- 如果只有一件的时候,商品又是代发商品,订单的状态要改成代发订单 --
if (g_item.whsle_id) {
goods.is_whsle_goods = 1;
item.is_whsle = 1;
item.whsle_id = g_item.whsle_id
}
//如果房间号不为空的时候
if (g_item.room_id) {
goods.room_id = g_item.room_id;
room_ids += g_item.room_id + ",";
}
item.order_goods.push(goods);
}
}
//-- 如果订单中有组合购,要统计到倍增的情况 ---
if(Object.keys(zh_map_count).length){
var zhlist=[];
for (var kf in zh_map_count) {
var zh_act_th=th.data.zhhe_act_map[kf];
var ite={zhid:kf,zhnum:1};
if(zh_act_th.is_bz){
if(zh_map_count[kf]>zh_act_th.zhbuyqty){
ite.zhnum=zh_map_count[kf]/zh_act_th.zhbuyqty;
}
}
zhlist.push(ite);
}
item.zhlist=zhlist;
}
//如果房间号不为空的时候
if (room_ids != "") item.room_ids = ut.sub_last(room_ids);
if (groupchat_ids && groupchat_ids.length>0) item.groupchat_ids = groupchat_ids.join(',');
// if (getApp().globalData.groupchat_id) {item.groupchat_id = getApp().globalData.groupchat_id;}
//处理代发商品的拆分
if (df_goods.length > 0) {
item.goods_price = parseFloat(item.goods_price - df_price).toFixed(2);
item.total_amount = parseFloat(item.total_amount - df_price).toFixed(2);
for (let j = 0; j < df_goods.length; j++) {
var df_item = JSON.parse(JSON.stringify(item));
var ddff_item = df_goods[j];
df_item.is_whsle = 1;
df_item.whsle_id = ddff_item.whsle_id;
df_item.is_discount_amount = 0;
df_item.goods_price = ddff_item.df_price;
df_item.total_amount = ddff_item.df_price;
df_item.shipping_price = 0; //没有运费
if (df_item.order_prom_list) df_item.order_prom_list = {};
if (df_item.coupon_price) delete (df_item.coupon_price);
if (df_item.coupon_no) delete (df_item.coupon_no);
//看一下是用余额比较多,还是用钱比较多
if (item.order_amount > item.user_money) {
if (item.order_amount > ddff_item.df_price) {
item.order_amount = parseFloat(item.order_amount - ddff_item.df_price).toFixed(2);
df_item.order_amount = ddff_item.df_price.toFixed(2);
} else {
var more_p = parseFloat(ddff_item.df_price - item.order_amount).toFixed(2);
item.order_amount = 0;
item.user_money = parseFloat(item.user_money - more_p).toFixed(2);
df_item.user_money = more_p;
}
} else {
if (item.user_money > ddff_item.df_price) {
item.user_money = parseFloat(item.user_money - ddff_item.df_price).toFixed(2);
df_item.user_money = ddff_item.df_price.toFixed(2);
} else {
var more_p = parseFloat(ddff_item.df_price - item.user_money).toFixed(2);
item.user_money = 0;
item.order_amount = parseFloat(item.user_money - more_p).toFixed(2);
df_item.order_amount = more_p;
}
}
if (ddff_item.df_room_ids)
df_item.room_ids = ut.sub_last(ddff_item.df_room_ids);
if (getApp().globalData.groupchat_id && getApp().globalData.groupchat_id!='undefined'){
df_item.groupchat_ids = getApp().globalData.groupchat_id;
}
df_item.order_goods = ddff_item.df_goods;
pdata.push(df_item);
}
}
//如果只有代发商品的时候
if (item.order_goods.length > 0) {
//item.order_goods=df_goods;
//item.is_whsle=1;
pdata.push(item);
}
}
}
if (pdata.length == 0) return;
//如果有使用预存,要处理
if (th.data.formData && th.data.formData.prestore * 1 > 0 ) {
let formData = th.data.formData
let pre_json = formData.pre_json
let all_yck_arr = formData.all_yck_arr
pdata.map((item, i) => {
item.pre_cut = all_yck_arr[i] ? all_yck_arr[i].toFixed(2) : 0
item.pre_preferential = 0
item.pre_json = pre_json[i] ? JSON.stringify(pre_json[i]) : ''
})
}
if (!pdata.keyid && th.data.bn_goods) {
pdata.map(ite => {
ite.keyid = th.data.bn_goods.keyid
})
// pdata.keyid = th.data.bn_goods.keyid
}
var str = JSON.stringify(pdata);
console.log(str,'aaaaaaaaaaaaaaa');
//return false;
wx.showLoading({ title: "加载中" });
th.setData({ submit: 1, })
wx.request({
url: oo.url + '/api/weshop/order/createWxdOrder',
data: str,
method: 'POST',
header: {
'content-type': 'application/json'
},// 设置请求的 header
success: function (res) {
wx.hideLoading();
if (res.statusCode == 200) {
var data = res.data;
if (data.code == 0) {
th.setData({ submit: 1, })
//如果是购物车结算,还要删除购物车
if (th.data.is_b_now == 0) {
console.log(th.data.cartlist_y);
var list = th.data.cartlist_y;
for (var i = 0; i < list.length; i++) {
//删除购物车
a.delete("/api/weshop/cart/del/" + oo.stoid + "/" + list[i].id, {});
}
}
var order_amount = 0;
pdata.forEach(function (em, ind) {
order_amount += parseFloat(em.order_amount);
})
//要进行判断,如果是用微信支付,就要跳转到支付界面
if (order_amount > 0) {
th.setData({ isclose: 0 });
//void e.jumpToCart4({
// order_sn: data.data,
//}, 1);
util_pay.pay(data.data, async function () {
//app.my_warnning("支付成功",1,th);
//setTimeout(function () {
// if (th.data.formData && th.data.formData.prestore * 1 > 0) { //有使用预存的处理
// let length = pdata.length
// wx.showLoading({ title: "加载中", mask: true });
// for (let yi = 0; yi < length; yi++) {
// await th.setAdvancesum(pdata[yi], data.data)
// }
// wx.hideLoading()
// wx.redirectTo({
// url: "/pages/payment/pay_success/pay_success?type=2&order_sn=" + data.data
// })
// } else {
// wx.redirectTo({
// url: "/pages/payment/pay_success/pay_success?type=2&order_sn=" + data.data
// })
// }
wx.redirectTo({
url: "/pages/payment/pay_success/pay_success?type=2&order_sn=" + data.data
})
//},1000)
}, function () {
// return false;
//支付失败
setTimeout(function () {
var cps = getCurrentPages();
if (cps.length > 1) {
wx.navigateBack({ delta: 1 })
} else {
getApp().goto("/pages/index/index/index");
}
}, 1000)
}, oo.stoid);
} else {
var dd = {
parent_sn: data.data,
store_id: oo.stoid,
type: 2,
};
a.post("/api/weshop/order/pay/createOrder", {
data: dd,
success: async function (t) {
console.log(t);
if (t.data.code == 0) {
//app.my_warnning("支付成功",1,th);
//setTimeout(function () {
// if (th.data.formData && th.data.formData.prestore * 1 > 0) { //有使用预存的处理
// let length = pdata.length
// wx.showLoading({ title: "加载中", mask: true });
// for (let yi = 0; yi < length; yi++) {
// await th.setAdvancesum(pdata[yi], data.data)
// }
// wx.hideLoading()
// th.setData({ isclose: 0 });
// wx.redirectTo({
// url: "/pages/payment/pay_success/pay_success?type=2&order_sn=" + data.data,
// })
// } else {
// th.setData({ isclose: 0 });
// wx.redirectTo({
// url: "/pages/payment/pay_success/pay_success?type=2&order_sn=" + data.data,
// })
// }
th.setData({ isclose: 0 });
wx.redirectTo({
url: "/pages/payment/pay_success/pay_success?type=2&order_sn=" + data.data,
})
//}, 1000)
}
},
fail: function () {
}
});
}
}
else {
//--内容换行--
var msg = data.msg;
//赠品活动已经取消,无法赠送,是否继续买单?
if (msg.indexOf("是否继续买单") > 0) {
wx.showModal({
title: "提示",
content: data.msg,
cancelText: '取消',
confirmText: '确定',
showCancel: true,
success(res) {
if (res.cancel) {
return;
} else if (res.confirm) {
th.data.is_continue = 1;
th.data.is_summit_ing = 0; //是否提交中
th.submit_func();
}
}
})
return;
} else {
if (msg.length > 13) {
msg = msg.slice(0, 13) + "\r\n" + msg.slice(13);
}
getApp().confirmBox(msg);
th.data.is_summit_ing = 0; //是否提交中
th.setData({
submit: 0,
})
}
}
} else {
th.data.is_summit_ing = 0; //是否提交中
console.log("index.js wx.request CheckCallUser statusCode" + res.statusCode);
th.setData({
submit: 0,
})
}
},
fail: function () {
th.data.is_summit_ing = 0;
wx.hideLoading();
console.log("index.js wx.request CheckCallUser fail");
th.setData({
submit: 0,
})
}
})
},
//---确认线下门店的数量足不足---
async check_store_num(goods_id, pick, goods_num, func) {
var lock = 0, pick_no, plist, erpwareid;
var lock_rq = { store_id: os.stoid, wareId: goods_id, storageId: pick, pageSize: 1000 };
if (this.data.sales_rules == 3) {
lock_rq.appoint_pick_keyid = this.data.appoint_pick_keyid;
delete lock_rq.storageId
}
//先读取门店的lock
await getApp().request.promiseGet("/api/weshop/order/ware/lock/page", {
data: lock_rq
}).then(res => {
if (res.data.code == 0 && res.data.data.total > 0) {
for (var i in res.data.data.pageData)
lock += res.data.data.pageData[i].outQty;
}
})
if (this.data.sales_rules == 2) {
//先获取门店的编号
await getApp().request.promiseGet("/api/weshop/pickup/get/" + os.stoid + "/" + pick, {
data: { storeId: os.stoid, goodsId: t.goods_id, pickupId: pick }
}).then(res => {
if (res.data.code == 0) {
pick_no = res.data.data.pickup_no;
}
})
}
//先获取商品的线下库存
await getApp().request.promiseGet("/api/weshop/goods/get/" + os.stoid + "/" + goods_id, {
data: { storeId: os.stoid, goodsId: t.goods_id, pickupId: pick }
}).then(res => {
if (res.data.code == 0) {
erpwareid = res.data.data.erpwareid;
}
})
var sto_rq = { storageNos: pick_no, wareIds: encodeURIComponent(erpwareid), storeId: os.stoid, pageSize: 2000 };
if (this.data.sales_rules == 3) {
sto_rq.storageIds = this.data.appoint_pick_keyid;
delete sto_rq.storageNos
}
//读取线下的门店库存
await getApp().request.promiseGet("/api/weshop/goods/getWareStorages", {
data: sto_rq
}).then(res => {
if (res.data.code == 0) {
plist = res.data.data.pageData[0];
}
})
var isok = 1;
if (goods_num > plist.CanOutQty - lock) {
isok = 0;
}
func(isok);
},
useCoupon: function () {
if (this.data.order.couponNum <= 0) {
getApp().my_warnning("无可用优惠券", 0, this);
return;
}
var a = {
lid: this.data.coupon ? this.data.coupon.id : "0"
};
wx.navigateTo({
url: "/pages/user/checkcoupon/checkcoupon?" + s.Obj2Str(a)
});
},
enterAddressPage: function () {
getApp().globalData.is_cart_old = 1;
this.data.isget_by_quan = {};
this.data.enterAddressPage = !0, wx.navigateTo({
url: "/pages/user/address_list/address_list"
});
},
//--------购物车购买时,选择自提和物流-----------
setexptype_w: function (t) {
var def_exp_code = getApp().globalData.userInfo.def_exp_code, th = this;
var ty = t.currentTarget.dataset.t, txt = t.currentTarget.dataset.txt,
wl_txt = t.currentTarget.dataset.wl_txt,
ont = t.currentTarget.dataset.ont;
th.setData({ [txt]: ty });
var iszt = 1;
if (ty == 0) {
th.setData({ is_all_zt: 0 });
} else {
for (var i = 0; i < th.data.cartlist.length; i++) {
var item = th.data.cartlist[i];
if (item.exp_type == 0 || item.exp_type == 2) {
iszt = 0;
break;
}
}
th.setData({ is_all_zt: iszt });
var ind = t.currentTarget.dataset.ind;
var c_item = th.data.cartlist[ind];
var pickid = c_item.pickup_id;
if (th.data.using_quan[pickid] && th.data.using_quan[pickid].isby == 1) {
th.data.using_quan[pickid] = {};
th.setData({ using_quan: th.data.using_quan });
}
}
//判断有没有默认的物流地址值
if (def_exp_code != "" && def_exp_code != null && def_exp_code != undefined && !th.data.is_default_logistics) {
var wu_arr = this.data.wu_arr;
if (wu_arr != null && wu_arr != "") {
for (var i = 0; i < wu_arr.length; i++) {
if (wu_arr[i].shipping_code == def_exp_code) {
var set_txt = "cartlist"
th.setData({ wl_txt: i });
}
}
}
}
//----计算此时购物车的价格----
th.calculatePrice();
},
//--------立即购买时,选择自提和物流----------
setexptype: function (t) {
var th = this;
var ty = t.currentTarget.dataset.t, def_exp_code = getApp().globalData.userInfo.def_exp_code;
th.setData({ bn_exp_type: ty });
if (ty == 0) {
th.setData({ is_all_zt: 0 });
}
//当物流为空的时候。
if (ty == 0 && th.data.wu_arr == null) {
th.data.isget_by_quan = {};
return th.get_wuliu(th.calculatePrice2());
}
//--自提就要把包邮券清理掉--
if (ty == 1) {
th.data.isget_by_quan = {};
if (th.data.using_quan[th.data.bn_pick] && th.data.using_quan[th.data.bn_pick].isby == 1) {
th.setData({ using_quan: {} });
}
}
//判断有没有默认的物流地址值
if (def_exp_code != "" && def_exp_code != null && def_exp_code != undefined && !th.data.is_default_logistics) {
var wu_arr = this.data.wu_arr;
if (wu_arr != null && wu_arr != "") {
for (var i = 0; i < wu_arr.length; i++) {
if (wu_arr[i].shipping_code == def_exp_code) {
th.setData({ index: i });
}
}
}
}
th.calculatePrice2()
},
//--------立即购买时,使用余额--------
set_bn_useyuer: function () {
var th = this;
th.setData({ bn_use_money: !th.data.bn_use_money });
th.calculatePrice2();
},
//立即购买的时候,使用余额
set_bn_commission: function () {
var th = this;
th.setData({ bn_use_commission: !th.data.bn_use_commission });
th.calculatePrice2();
},
//加入购物车使用余额
set_cart_commission: function () {
var th = this;
th.setData({ cart_use_commission: !th.data.cart_use_commission });
th.calculatePrice();
},
set_js_useyuer: function () {
var th = this;
th.setData({ js_use_money: !th.data.js_use_money });
th.calculatePrice();
},
//----------立即购买,选择物流-------------
bindPickerChange: function (e) {
var ind = e.detail.value
this.setData({ index: ind });
this.calculatePrice2();
},
//----------购物车结算,选择物流-------------
bindPickerChange_w: function (e) {
var ind = e.detail.value, txt = e.currentTarget.dataset.txt;
this.setData({ [txt]: ind });
this.calculatePrice();
},
/*----券的所有操作----*/
open_coupon_list: function (e) {
var th = this;
var pickid = e.currentTarget.dataset.pickid;
var bn = e.currentTarget.dataset.bn;
var cindx = e.currentTarget.dataset.cind;
var get_by_quan_list_cart = th.data.get_by_quan_list_cart[pickid];
if (bn == 1) {
th.setData({ open_quan: 1, selected_quan_pick: pickid, disabled: 1 });
} else {
//---多单打开券的时候,就要判断券在其他门店是否有使用---
var quanlist = th.data.cartlist[cindx].quan_list;
var exp_type = th.data.cartlist[cindx].exp_type;
//对于在其他门店已经选择了的券 要判断是否显示到界面
var t_user = th.data.using_quan[pickid];
for (var i in quanlist) {
quanlist[i].is_using = th.check_in_sele(quanlist[i].CashRepNo, pickid);
if (t_user && quanlist[i].CashRepNo == t_user.coupon_no)
quanlist[i].show_red = 1;
else
quanlist[i].show_red = 0;
}
if (get_by_quan_list_cart) {
for (var i in get_by_quan_list_cart) {
get_by_quan_list_cart[i].is_using = th.check_in_sele(get_by_quan_list_cart[i].no, pickid);
if (t_user && get_by_quan_list_cart[i].no == t_user.coupon_no)
get_by_quan_list_cart[i].show_red = 1;
else
get_by_quan_list_cart[i].show_red = 0;
}
th.setData({ by_quan_list_cart: get_by_quan_list_cart });
} else {
th.setData({ by_quan_list_cart: null });
}
console.log("2222222券的列表", quanlist);
th.setData({
sele_cart_ind: cindx,
sele_exp_type: exp_type,
open_quan: 1,
selected_quan_pick: pickid,
selected_quan_list: quanlist,
disabled: 1
});
}
},
close_coupon: function (e) {
var th = this;
th.setData({ open_quan: 0, disabled: 0 });
},
//---判断券时候在已经选择的列表中---
check_in_sele: function (no, pick_id) {
var th = this;
if (th.data.using_quan.length <= 0) return false;
for (var i in th.data.using_quan) {
//--如果键值等于本身就要跳出--
if (parseInt(i) == parseInt(pick_id)) continue;
var item = th.data.using_quan[i];
if (item.coupon_no == no) {
return true;
}
}
return false;
},
/*--点击选择券--*/
sele_quan_item: function (e) {
var ind = e.currentTarget.dataset.ind;
var quan_item = this.data.selected_quan_list[ind];
var pickid = this.data.selected_quan_pick; //现在选择的是哪一个门店
//--如果券是单品使用的时候--
if (quan_item && quan_item.UseObjectType && quan_item.UseObjectType == "20") {
//---只有多件购买的时候才要计算,//购物车购买和搭配勾的时候---
var gg = getApp().get_b_now();
if (this.data.is_b_now == 0 || gg.prom_type == 5) {
var arr = this.data.order_prom_list_cart;
var t_pk_item = null;
for (var ii in arr) {
var ep = arr[ii];
if (pickid == ep.pickup_id) {
t_pk_item = ep;
break;
}
}
//--寻找券指定的商品--
var gd = null;
if (t_pk_item) {
var goods = t_pk_item.goods;
for (var gid in goods) {
if (quan_item.UseObjectID == goods[gid].erpwareid) {
gd = goods[gid];
}
}
}
if (!gd) {
getApp().my_warnning("未找到指定商品使用", 0, this, 600);
return false;
}
//计算价格,如果有平摊的实收要计算实收的金额
var item_price = gd.goods_price * gd.goods_num;
//-- 如果有平摊下去,有实收价格的时候,就要用account_fir来计算价格 --
if (gd.account_fir != null && gd.account_fir != undefined) {
item_price = gd.account_fir * gd.goods_num;
}
if (item_price < parseFloat(quan_item.BuySum)) {
getApp().my_warnning("该单品金额没有大于等于" + quan_item.BuySum + "元时不能使用优惠券", 0, this, 600);
return false;
}
}
}
var no_use = e.currentTarget.dataset.no, quanlist = this.data.selected_quan_list;
//---所有的券的显示红色选择都清理一遍---
for (var i in quanlist) {
quanlist[i].show_red = 0;
}
this.setData({ selected_quan_list: quanlist });
var by_quanlist = this.data.get_by_quan_list;
if (by_quanlist) {
//---所有的券的显示红色选择都清理一遍---
for (var inb in by_quanlist) {
by_quanlist[inb].show_red = 0;
}
this.setData({ get_by_quan_list: by_quanlist });
}
var by_cart_list = this.data.by_quan_list_cart;
if (by_cart_list) {
//---所有的券的显示红色选择都清理一遍---
for (var inc in by_cart_list) {
by_cart_list[inc].show_red = 0;
}
this.setData({ by_quan_list_cart: by_cart_list });
}
var using_quan = this.data.using_quan;
var th = this;
//---如果是不使用优惠券---
if (no_use == 1) {
console.log("有进来吗券", no_use);
if (using_quan[th.data.selected_quan_pick]) {
using_quan[th.data.selected_quan_pick].is_nouse_red = 1;
}
else {
using_quan[th.data.selected_quan_pick] = { is_nouse_red: 1 };
}
this.setData({ using_quan: using_quan, is_coupon: th.is_coupon });
return;
}
var txt = "selected_quan_list[" + ind + "].show_red";
var obj = {};
obj[txt] = 1;
if (quan_item.show_red) {
obj[txt] = 0;
}
this.setData(obj);
console.log(this.data.selected_quan_list, "选中的券的下标", quan_item, "数据都在这里", txt);
if (using_quan[th.data.selected_quan_pick]) {
using_quan[th.data.selected_quan_pick].is_nouse_red = 0;
}
else {
using_quan[th.data.selected_quan_pick] = { is_nouse_red: 0 };
}
this.setData({ using_quan: using_quan });
},
/*----- 点击选择包邮券 -----*/
sele_quan_item_by: function (e) {
var no_use = e.currentTarget.dataset.no;
//立即购买的包邮券
var by_quanlist = this.data.get_by_quan_list;
if (by_quanlist) {
//---所有的券的显示红色选择都清理一遍---
for (var ind in by_quanlist) {
by_quanlist[ind].show_red = 0;
}
this.setData({ get_by_quan_list: by_quanlist });
}
//--购物车过来的包邮券--
var by_cart_list = this.data.by_quan_list_cart;
if (by_cart_list) {
//---所有的券的显示红色选择都清理一遍---
for (var ind in by_cart_list) {
by_cart_list[ind].show_red = 0;
}
this.setData({ by_quan_list_cart: by_cart_list });
}
//普通券
var quanlist = this.data.selected_quan_list;
if (quanlist) {
//---所有的券的显示红色选择都清理一遍---
for (var ind in quanlist) {
quanlist[ind].show_red = 0;
}
this.setData({ selected_quan_list: quanlist });
}
var th = this;
var using_quan = this.data.using_quan;
//---如果是不使用优惠券---
if (no_use == 1) {
if (using_quan[th.data.selected_quan_pick]) {
using_quan[th.data.selected_quan_pick].is_nouse_red = 1;
}
else {
using_quan[th.data.selected_quan_pick] = { is_nouse_red: 1 };
}
this.setData({ using_quan: using_quan, is_coupon: th.is_coupon });
return;
}
var pickid = th.data.selected_quan_pick; //现在选择的是哪一个门店
var ind = e.currentTarget.dataset.ind;
//--如果是立即购买的部分--
var txt = "";
var txt1 = "";
var quan_item = null;
if (th.data.is_b_now) {
quan_item = this.data.get_by_quan_list[ind];
txt = "get_by_quan_list[" + ind + "].show_red";
var obj = {};
obj[txt] = 1;
this.setData(obj);
} else {
txt = "by_quan_list_cart[" + ind + "].show_red";
quan_item = th.data.by_quan_list_cart[ind];
var obj = {};
obj[txt] = 1;
this.setData(obj);
th.data.get_by_quan_list_cart[pickid] = JSON.parse(JSON.stringify(th.data.by_quan_list_cart)); //要把选中的弄回数组
}
if (using_quan[th.data.selected_quan_pick]) {
using_quan[th.data.selected_quan_pick].is_nouse_red = 0;
}
else {
using_quan[th.data.selected_quan_pick] = { is_nouse_red: 0 };
}
this.setData({ using_quan: using_quan });
},
//--确认使用券---
confirm_quan: function () {
var using_quan = this.data.using_quan; //正在使用中的券列表
var pickid = this.data.selected_quan_pick; //选中的门店ID
var th = this;
var selected_quan_list = this.data.selected_quan_list; //选择了那个门店的券列表
var get_by_quan_list = this.data.get_by_quan_list; //立即购买的包邮券列表
var by_quan_list_cart = this.data.by_quan_list_cart; //购物车购买的包邮券列表
//选择了的券
var sele_quan = null;
//循环普通的券
for (var i in selected_quan_list) {
var item = selected_quan_list[i];
if (item.show_red) {
th.insert_into_using_quan(item, using_quan, pickid);
return;
}
}
//循环包邮的券,立即购买的
for (var i in get_by_quan_list) {
var item = get_by_quan_list[i];
if (item.show_red) {
if (th.data.is_no_by[pickid] == 1) {
getApp().my_warnning("已全场不能包邮,不能选择包邮券", 0, th);
return false;
}
if (th.data.is_by[pickid] == 1) {
getApp().my_warnning("已全场包邮,不能选择包邮券", 0, th);
return false;
}
th.insert_into_using_quan(item, using_quan, pickid, 1);
return;
}
}
//循环包邮的券
for (var i in by_quan_list_cart) {
var item = by_quan_list_cart[i];
if (item.show_red) {
if (th.data.is_no_by[pickid] == 1) {
getApp().my_warnning("已全场不能包邮,不能选择包邮券", 0, th);
return false;
}
if (th.data.is_by[pickid] == 1) {
getApp().my_warnning("已全场包邮,不能选择包邮券", 0, th);
return false;
}
th.insert_into_using_quan(item, using_quan, pickid, 1);
return;
}
}
//选择了的券,看是不是点击了不使用券,点击了不使用优惠券
if (using_quan[pickid]) {
if (using_quan[pickid].is_nouse_red == 1) {
using_quan[pickid] = { is_nouse_red: 1 };
th.setData({ using_quan: using_quan });
if (th.data.is_b_now == 1) {
th.calculatePrice2();
} else {
th.calculatePrice();
}
th.setData({ open_quan: 0 });
return;
}
}
},
//----把券插入之后的操作,同时还要重新计算价格----
insert_into_using_quan: async function (item, using_quan, pickid, isby) {
var th = this;
var old_quan = null;
if (isby == 1) {
using_quan[pickid] = {
coupon_no: item.no,
money: 0,
is_nouse_red: 0,
region_list: item.region_list,
goods_list: item.goods_list
};
using_quan[pickid].isby = 1;
} else {
if (using_quan[pickid]) old_quan = using_quan[pickid];
using_quan[pickid] = { coupon_no: item.CashRepNo, money: item.Sum, is_nouse_red: 0 };
using_quan[pickid].isby = 0;
}
this.setData({ using_quan: using_quan });
if (th.data.is_b_now == 1) {
th.calculatePrice2(function () {
if (old_quan) using_quan[pickid] = old_quan;
else using_quan[pickid] = null;
th.setData({ using_quan: using_quan, submit: 0 });
wx.showToast({
title: "不能使用优惠券,同城起送价不足",
icon: 'none',
duration: 2000
})
});
} else {
th.calculatePrice(function () {
if (old_quan) using_quan[pickid] = old_quan;
else using_quan[pickid] = null;
th.setData({ using_quan: using_quan, submit: 0 });
wx.showToast({
title: "不能使用优惠券,同城起送价不足",
icon: 'none',
duration: 2000
})
});
}
th.setData({ open_quan: 0 });
},
cart_set_err: function (e) {
var txt = e.currentTarget.dataset.err;
var ob = {};
ob[txt] = this.data.imgUrl + "/miniapp/images/default_g_img.gif";
this.setData(ob);
},
cart_set_err1: function (e) {
var txt = e.currentTarget.dataset.err;
var ob = {};
ob[txt] = "/miniapp/images/default_g_img.gif";
this.setData(ob);
},
//--验证是否已经冻结--
check_is_frozenQuan: function (quanlist, frozenQuan, isby) {
console.log("券列表", quanlist);
if (!quanlist) return null;
if (!frozenQuan) return quanlist;
var arr = [];
for (var i = 0; i < quanlist.length; i++) {
var item = quanlist[i];
var is_find = 0;
var Q_no = quanlist[i].CashRepNo;
if (isby) Q_no = quanlist[i].no;
for (var j = 0; j < frozenQuan.length; j++) {
var q_no = frozenQuan[j].cashRepNo;
if (Q_no == q_no) {
is_find = 1;
break;
}
}
if (!is_find) arr.push(item);
}
return arr;
},
//// 开启物流的弹窗
show_wu_arr: function (e) {
var wu_arr_txt = e.currentTarget.dataset.txt;
var w_sele_index = e.currentTarget.dataset.w_sele_index;
var is_express = null;
var ob = { open_express: 1, wu_arr_txt: wu_arr_txt, disabled: 1 };
//--如果是多个门店的时候--
if (w_sele_index != undefined) {
is_express = this.data.cartlist[w_sele_index].wind;
ob['is_express'] = is_express;
}
this.setData(ob);
},
// 关闭物流的弹窗
close_express: function () {
this.setData({ open_express: 0, disabled: 0 });
},
// 选择物流
click_express_name: function (e) {
var express_name = e.currentTarget.dataset.name, shippingcode = e.currentTarget.dataset.shippingcode;
var index = e.currentTarget.dataset.idxe;
var ob = { is_express: index, is_shipping_code: shippingcode, disabled: 0 };
ob[this.data.wu_arr_txt] = index;
this.setData(ob);
},
//点击确定物流
determine_expres: function (e) {
this.setData({ open_express: 0 });
if (this.data.is_b_now == 1)
this.calculatePrice2();
else
this.calculatePrice();
},
//点击打开优惠券使用说明
clik_coupons: function (e) {
var ind = e.currentTarget.dataset.idx;
var is_open = this.data.selected_quan_list[ind].is_open;
if (is_open == 1) is_open = 0;
else is_open = 1;
var txt = "selected_quan_list[" + ind + "].is_open"
var obj = {};
obj[txt] = is_open;
this.setData(obj);
this.setData({ disabled: 1 })
},
clik_coupons2: function (e) {
var ind = e.currentTarget.dataset.idx;
var is_open = this.data.get_by_quan_list[ind].is_open;
if (is_open == 1) is_open = 0;
else is_open = 1;
var txt = "get_by_quan_list[" + ind + "].is_open"
var obj = {};
obj[txt] = is_open;
this.setData(obj);
this.setData({ disabled: 1 })
},
//设置默认物流
select_default_logistics: function () {
var th = this;
var is_shipping_code = this.data.is_shipping_code
getApp().request.put("/api/weshop/users/update", {
data: { user_id: getApp().globalData.user_id, store_id: oo.stoid, def_exp_code: is_shipping_code },
success: function (rse) {
if (rse.data.code == 0) {
getApp().globalData.userInfo.def_exp_code = is_shipping_code;
th.setData({ open_express: 0 });
//----计算此时购物车的价格----
if (th.data.is_b_now == 1) th.calculatePrice2();
else th.calculatePrice();
}
}
})
},
//更新下默认,在onshow里面
update_code() {
var th = this, m_wind = 0, def_exp_code = getApp().globalData.userInfo.def_exp_code;
//--定时器,判断wu_arr不未空--
var uii = setInterval(function () {
if (th.data.wu_arr) {
clearInterval(uii);
if(th.data.is_default_logistics) return false;
for (var k = 0; k < th.data.wu_arr.length; k++) {
var item = th.data.wu_arr[k];
if (def_exp_code == item.code) {
m_wind = k;
}
}
//--如果是立即购买--
if (th.data.is_b_now == 1) {
th.setData({ index: m_wind, is_express: m_wind });
} else {
var ui = setInterval(function () {
if (th.data.cartlist) {
var c_arr = th.data.cartlist;
for (var i in c_arr) {
c_arr[i].wind = m_wind;
}
th.setData({ cartlist: c_arr, is_express: m_wind })
clearInterval(ui);
}
}, 500)
}
}
}, 500);
},
//-----获取购物车进来的劵-------
get_cart_quan: async function (order_prom_list_cart) {
var th = this;
var user_id = getApp().globalData.user_id;
//等待值的出现
//getApp().waitfor2(this,"g_cart_q_time","order_prom_list_cart",async function () {
//var arr=th.data.order_prom_list_cart;
var arr = order_prom_list_cart;
if (!arr) arr = [];
//如果系统有限制使用优惠券
if (th.data.is_close_quan) return false;
//------------开始计算使用优惠券相关------------
for (var ind in arr) {
var ep = arr[ind];
var goodlist = ep.goods;
var pickup_id = ep.pickup_id;
//--更优惠券抵用有关,立即购买的,如果是购物车,如果有等级价还有考虑等级价的东西
//就要把相应的值,写入cartlist数组中--
var ckeck_quan_price = 0,
check_quan_price_list = '',
check_quan_ware_list = '',
check_quan_price_list_arr = [],
check_quan_ware_list_arr = [];
for (var i in goodlist) {
var gd = goodlist[i];
//--如果是秒杀就跳出,如果是赠品,如果是组合购限制使用优惠券--
if (gd.whsle_id == 1 || gd.prom_type == 1 || gd.is_gift || (gd.prom_type == 7 && gd.act.is_xz_yh) || gd.is_xz_yh == 1) {
continue;
}
//有搭配购的时候才来判断
if(gd.prom_type==5 && th.data.coll_prom && th.data.coll_prom[gd.prom_id]){
if(!th.data.coll_prom[gd.prom_id].is_coupon && th.has_dp(goodlist,gd.prom_id)){
continue;
}
}
//--如果是团购,要判断有没有限制使用优惠券
if (gd.prom_type == 2) {
var prom1 = null;
await getApp().request.promiseGet("/api/weshop/goods/groupBuy/getActInfo/" + os.stoid + "/" + gd.goods_id + "/" + gd.prom_id, {
}).then(res => {
if (res.data.code == 0) prom1 = res.data.data;
})
if (prom1 && !prom1.isQuan) {
continue;
}
}
//--如果是阶梯购,要判断有没有限制使用优惠券
if (gd.prom_type == 10) {
var prom1 = null;
await getApp().request.promiseGet("/api/weshop/prom/ladderForm/getNew/" + os.stoid + "/" + user_id + "/" + gd.prom_id, {
}).then(res => {
if (res.data.code == 0) prom1 = res.data.data;
})
if (prom1 && prom1.isuse && prom1.is_usecoupon) {
continue;
}
}
//如果有限制使用优惠券,就要返回
if (gd.prom_type == 3) {
if (th.data.prom_goods_map && th.data.prom_goods_map[pickup_id] && th.data.prom_goods_map[pickup_id][gd.prom_id]) {
if (th.data.prom_goods_map[pickup_id][gd.prom_id].is_xz_yh) continue;
th.data.prom_goods_map[pickup_id][gd.prom_id].coupon_sele = 1;
}
}
var item_price = gd.goods_price * gd.goods_num;
var item_price2 = item_price;
//-- 如果有平摊下去,有实收价格的时候,就要用account来计算价格 --
if (gd.account_fir != null && gd.account_fir != undefined) {
item_price2 = gd.account_fir * gd.goods_num;
}
if (gd.ld_account) {
item_price2 = gd.ld_account * gd.goods_num;
}
ckeck_quan_price += item_price;
//如果商品有重复的过滤,一般是组合购和阶梯购的情况下
var idx = check_quan_ware_list_arr.findIndex(function (ele) {
return ele == encodeURIComponent(gd['erpwareid']);
})
if (idx > -1) {
check_quan_price_list_arr[idx] += item_price2;
} else {
check_quan_ware_list_arr.push(encodeURIComponent(gd['erpwareid']));
check_quan_price_list_arr.push(item_price2);
}
//--组装价格list--
/*--
if (check_quan_price_list) {
check_quan_price_list += "," + item_price;
} else {
check_quan_price_list = item_price;
}
//--组装商品的线下erpwareid--
if (check_quan_ware_list) {
check_quan_ware_list += "," + encodeURIComponent(gd['erpwareid']);
} else {
check_quan_ware_list = encodeURIComponent(gd['erpwareid']);
}---*/
}
//优惠券优惠的金额要控制到优惠券的选择条件
var cut_price = 0;
for (var i in th.data.prom_goods_map[pickup_id]) {
var obj = th.data.prom_goods_map[pickup_id][i];
if (obj.coupon_sele) {
cut_price += obj.price - obj.prom_price;
}
}
var prom_pt_json = ep.prom_pt_json;
if (prom_pt_json) {
for (let oj in prom_pt_json) {
let item_j = prom_pt_json[oj];
//要对一下阶梯优惠促销的功能
if (item_j.ladder_prom_id) {
//看一下要不要限制使用优惠券
if (th.data.ladder_map[item_j.ladder_prom_id] && th.data.ladder_map[item_j.ladder_prom_id].is_usecoupon) {
continue;
}
cut_price += parseFloat(item_j.dis);
}
//要对一下组合购促销的功能
if (item_j.zhprom_id) {
//看一下要不要限制使用优惠券
if (th.data.zhhe_act_map[item_j.zhprom_id] && th.data.zhhe_act_map[item_j.zhprom_id].is_xz_yh) {
continue;
}
cut_price += parseFloat(item_j.dis);
}
}
}
if (check_quan_price_list_arr.length) check_quan_price_list = check_quan_price_list_arr.join(',');
if (check_quan_ware_list_arr.length) check_quan_ware_list = check_quan_ware_list_arr.join(',')
arr[ind].ckeck_quan_price = ckeck_quan_price - (cut_price ? cut_price : 0);
arr[ind].check_quan_ware_list = check_quan_ware_list;
arr[ind].check_quan_price_list = check_quan_price_list;
arr[ind].quan_list=null;
//-- 是否关闭使用优惠券,循环有找到商品 --
if (th.data.is_close_quan != 1 && check_quan_ware_list) {
//--调用接口,获取优惠券的列表,3秒钟内控制接口请求--
var url = "/api/weshop/couponList/getUseCouponList";
await app.request.promiseGet(url, {
data: {
storeId: oo.stoid,
userId: app.globalData.user_id,
BuySum: arr[ind].ckeck_quan_price,
WareIds: check_quan_ware_list,
pageSize: 100
}
}).then(res => {
if (res.data.code == 0) {
var quan_list = res.data.data.pageData;
arr[ind].quan_list = th.check_is_frozenQuan(quan_list, th.data.frozenQuan);
}
})
}
}
//如果是搭配购的立即购买的时候
if (th.data.is_b_now) {
if (arr && arr.length > 0) {
var quanlist = arr[0].quan_list;
th.setData({ selected_quan_list: quanlist, cartlist: arr })
}
} else {
th.setData({ cartlist: arr })
th.set_can_num();
}
//})
},
//------ 获取立即购买的购物车的劵 --------
get_buy_now_quan: function () {
var quanlist = null, th = this, frozenQuan = null;
var good = this.data.bn_goods;
//一件代发商品不使用优惠券
if (good.whsle_id) return false;
if (good.prom_price) {
th.data.ckeck_quan_price = good.prom_price; //如果有优惠价,就用优惠价
} else if (good.is_offline) {
th.data.ckeck_quan_price = good.offline_price; //如果有线下取价,就用线下价
}
//--如果商家后台没有限制使用优惠券,同时商品的优惠活动没有限制使用优惠券--
if (th.data.is_close_quan != 1 && th.data.bn_goods.is_xz_yh != 1 && th.data.check_quan_ware_list) {
var url0 = "/api/weshop/users/frozenQuan/listFrozenQuan/" + app.globalData.user_id;
var url = "/api/weshop/couponList/getUseCouponList";
app.request.promiseGet(url0, { 1: 1 }).then(res => {
if (res.data.code == 0) {
frozenQuan = res.data.data;
th.data.frozenQuan = frozenQuan;
}
app.request.time_limit_get(6, url, {
data: {
storeId: oo.stoid,
userId: app.globalData.user_id,
BuySum: th.data.ckeck_quan_price,
WareIds: encodeURIComponent(th.data.check_quan_ware_list),
pageSize: 100
},
success: function (res) {
if (res.data.code == 0) {
quanlist = res.data.data.pageData;
if (quanlist) {
quanlist = th.check_is_frozenQuan(quanlist, frozenQuan);
th.setData({ selected_quan_list: quanlist })
}
}
}
})
})
}
},
//检查区域是不是包邮
check_area: function (arr) {
var user_addr = this.data.user_addr;
if (!user_addr) return 0;
for (var i in arr) {
var item = arr[i];
if (user_addr.twon == item || user_addr.district == item
|| user_addr.city == item || user_addr.province == item) {
return 0;
}
}
return 1;
},
//检查立即购买的商品是不是不包邮
check_good: function (arr, goods_id) {
if (!goods_id) goods_id = this.data.bn_goods.goods_id;
for (var i in arr) {
var item = arr[i];
if (goods_id == item) return 0;
}
return 1;
},
check_by_area: function (region_list) {
var arr = region_list.split(",");
var check = this.check_area(arr);
return !check;
},
check_by_goods: function (goods_list, goods_id) {
var arr = goods_list.split(",");
var check = this.check_good(arr, goods_id);
return !check;
},
//立即购买获取优惠活动的内容
buy_now_prom_goods: async function (prom_id, arr, func) {
var th = this;
var price = arr.shop_price * arr.goods_num;
var prom = null;
var gg = to.get_b_now();
getApp().request.promiseGet("/api/weshop/promgoods/get/" + os.stoid + "/" + prom_id, {}).then( async res => {
if (res.data.code == 0) {
prom = res.data.data;
if(prom && prom.limit_num*1){
let user_pre_buynum=await th.getUserBuyPromNum_pre(prom.id)
if (user_pre_buynum>=prom.limit_num) {
arr.prom_price=null;
arr.prom_id="";
arr.prom_type="";
if(prom.is_xz_yh){
arr.is_xz_yh=prom.is_xz_yh
}
func(arr);
}else{
let min_value = 0
if (prom && prom.is_xz_yh) {
let arr = prom.promGoodsList || []
arr.map(item => {
if (min_value) {
min_value = item.condition
} else {
if (min_value < item.condition) {
min_value = item.condition
}
}
})
if (arr.length > 0) {
if (arr[0].prom_type == 0) {
if (price < min_value) {
prom.is_xz_yh = 0
}
} else {
if (arr.goods_num < min_value) {
prom.is_xz_yh = 0
}
}
}
}
return getApp().request.promiseGet("/api/weshop/goods/getDiscount", {
data: {
price: parseFloat(price).toFixed(2),
prom_id: prom_id,
goods_num: arr.goods_num,
user_id: getApp().globalData.user_id,
is_bz: prom.is_bz
}
})
}
}else{
let min_value = 0
if (prom && prom.is_xz_yh) {
let arr = prom.promGoodsList || []
arr.map(item => {
if (min_value) {
min_value = item.condition
} else {
if (min_value < item.condition) {
min_value = item.condition
}
}
})
if (arr.length > 0) {
if (arr[0].prom_type == 0) {
if (price < min_value) {
prom.is_xz_yh = 0
}
} else {
if (arr.goods_num < min_value) {
prom.is_xz_yh = 0
}
}
}
}
//-------------------
return getApp().request.promiseGet("/api/weshop/goods/getDiscount", {
data: {
price: parseFloat(price).toFixed(2),
prom_id: prom_id,
goods_num: arr.goods_num,
user_id: getApp().globalData.user_id,
is_bz: prom.is_bz
}
})
}
} else {
func(arr);
}
}).then(res => {
if (res.data.code == 0) {
var get_data = res.data.data;
arr.is_bz = prom.is_bz; //是不是倍增
arr.is_xz_yh = arr.is_xz_yh ? arr.is_xz_yh : prom.is_xz_yh; //是不是优惠
arr.bs = get_data.bs; //是不是倍数
arr.is_past = get_data.is_past; //是不是包邮
arr.prom_price = get_data.price >= 0 ? get_data.price : price;
arr.s_intValue = get_data.intValue;
arr.s_coupon_id = get_data.coupon_id;
arr.s_coupon_num = get_data.coupon_num;
arr.zp_mode = get_data.zp_mode;
arr.zp_num = get_data.zp_num ? get_data.zp_num : 1; //确保默认一个
//-- 看是不是有赠品 --
if (get_data.gift_id && parseInt(get_data.zp_mode) != 1
&& get_data.zp_num * arr.bs <= get_data.limit_num
&& get_data.zp_num * arr.bs <= get_data.gift_storecount && get_data.goodsinfo
) {
arr.gift_id = get_data.gift_id;
arr.gift_goods_id = get_data.goods_id;
arr.gift_goods_name = get_data.goods_name;
arr.gift_goods_sn = get_data.goodsinfo.goods_sn;
arr.gift_goods_color = get_data.goodsinfo.goods_color;
arr.gift_goods_spec = get_data.goodsinfo.goods_spec;
arr.gift_original_img = get_data.goodsinfo.original_img;
arr.gift_weight = get_data.goodsinfo.weight;
arr.gift_exp_sum_type = get_data.goodsinfo.exp_sum_type;
arr.gift_uniform_exp_sum = get_data.goodsinfo.uniform_exp_sum;
arr.gift_limit_num = get_data.limit_num;
arr.gift_storecount = get_data.gift_storecount;
arr.whsle_id = get_data.goodsinfo.whsle_id;
}
arr.s_libao = get_data.libao;
arr.s_lb_num = get_data.lb_num;
arr.lbtitle = get_data.lbtitle;
arr.zxlbtitle = get_data.zxlbtitle;
arr.zx_libao = get_data.zxlibao;
arr.zx_lb_num = get_data.zxlb_num;
arr.prom_id = prom_id;
var send_gf = {};
var pickid = gg.pick_id;
if (parseInt(get_data.zp_mode) == 1) {
if (!send_gf[pickid]) send_gf[pickid] = [];
var a_stock_num = 0;
var a_limit_num = 0;
for (let iy in get_data.giftsinfo) {
let item = get_data.giftsinfo[iy];
a_stock_num += parseInt(item.gift_storecount);
a_limit_num += parseInt(item.limit_num);
}
var t_zp_num = parseInt(get_data.zp_num) * parseInt(get_data.bs);
if (a_limit_num >= t_zp_num && a_stock_num >= t_zp_num) {
send_gf[pickid].push({
pickup_id: pickid, giftsinfo: get_data.giftsinfo, zp_num: get_data.zp_num * get_data.bs,
gf_pr_name: prom.name, prom_id: prom.prom_id
});
}
th.setData({ send_gf: send_gf });
}
}
func(arr);
})
},
//优惠促销用户参与次数
async getUserBuyPromNum_pre(prom_id){
var userInfo = getApp().globalData.userInfo;
var url = `/api/weshop/ordergoods/getUserBuyPromNum?is_all=1&store_id=${os.stoid}&user_id=${userInfo.user_id}&prom_type=3&prom_id=${prom_id}`;
let res = await getApp().request.promiseGet(url, {
data:{}
});
let user_pre_buynum=0
if(res.data.code==0 && res.data.data){
user_pre_buynum=res.data.data.userbuynum
}
return user_pre_buynum
},
//获取优惠活动
async getprom(item){
let prom_id=item.prom_id
let pickup_id=item.pick_id
let limit_num=0
await getApp().request.promiseGet("/api/weshop/promgoods/get/" + oo.stoid + "/" + prom_id, {}).then(res => {
if (res.data.code == 0) {
let prom = res.data.data;
limit_num =prom.limit_num
let yh_is_xz_yh=this.data.yh_is_xz_yh
yh_is_xz_yh[pickup_id]=prom.is_xz_yh
this.setData({
['yh_is_xz_yh']:yh_is_xz_yh
})
}
})
return limit_num
},
//--检查订单优惠--
check_is_order_prom: function (condition, func, pick) {
var th = this;
if (this.data.is_b_now == 1) pick = this.data.bn_pick;
//---获取订单优惠---
getApp().request.promiseGet("/api/weshop/promorder/getOrderPromotion", {
data: { store_id: os.stoid, orderAmount: condition, user_id: getApp().globalData.user_id }
}).then(res => {
if (res.data.code == 0) {
var data = res.data.data;
th.data.order_prom[pick] = data;
}
func();
})
},
//--- 加入优惠活动的映射中,同时要有一个good列表 ---
add_prom_goods_map: async function (item) {
var th = this;
var pickid = item.pick_id;
var map = th.data.prom_goods_map;
var obj = map[pickid];
if (map[pickid]) {
if (map[pickid][item.prom_id]) {
var ob = map[pickid][item.prom_id];
//-- 避免同一件商品重复添加 --
if (ob.goods && ob.goods.length) {
var fid = ob.goods.findIndex(function (e) {
e.goods_id == item.goods_id
})
if (fid > -1) return false;
}
ob.price += item.goods_price * item.goods_num;
ob.goods_num += item.goods_num;
ob.goods.push({ goods_id: item.goods_id, goods_price: item.goods_price, goods_num: item.goods_num });
} else {
var prom = null;
await getApp().request.promiseGet("/api/weshop/promgoods/get/" + os.stoid + "/" + item.prom_id, {}).then(res => {
if (res.data.code == 0) {
prom = res.data.data;
let min_value = 0
if (prom && prom.is_xz_yh) {
let arr = prom.promGoodsList || []
arr.map(ite => {
if (min_value) {
min_value = ite.condition
} else {
if (min_value < ite.condition) {
min_value = ite.condition
}
}
})
if (arr.length > 0) {
if (arr[0].prom_type == 0) {
if ((item.goods_price * item.goods_num) < min_value) {
prom.is_xz_yh = 0
}
} else {
if (item.goods_num < min_value) {
prom.is_xz_yh = 0
}
}
}
}
}
})
var ob = {};
ob.prom_id = item.prom_id;
ob.name = prom.name;
ob.price = item.goods_price * item.goods_num;
ob.goods_num = item.goods_num;
ob.is_bz = prom.is_bz;
ob.is_xz_yh = prom.is_xz_yh;
ob.goods = new Array();
ob.goods.push({ goods_id: item.goods_id, goods_price: item.goods_price, goods_num: item.goods_num });
map[pickid][item.prom_id] = ob;
}
} else {
var ob = {};
var prom = null;
await getApp().request.promiseGet("/api/weshop/promgoods/get/" + os.stoid + "/" + item.prom_id, {}).then(res => {
if (res.data.code == 0) {
prom = res.data.data;
let min_value = 0
if (prom && prom.is_xz_yh) {
let arr = prom.promGoodsList || []
arr.map(ite => {
if (min_value) {
min_value = ite.condition
} else {
if (min_value < ite.condition) {
min_value = ite.condition
}
}
})
if (arr.length > 0) {
if (arr[0].prom_type == 0) {
if ((item.goods_price * item.goods_num) < min_value) {
prom.is_xz_yh = 0
}
} else {
if (item.goods_num < min_value) {
prom.is_xz_yh = 0
}
}
}
}
}
})
ob.prom_id = item.prom_id;
ob.name = prom.name;
ob.price = item.goods_price * item.goods_num;
ob.goods_num = item.goods_num;
ob.is_bz = prom.is_bz;
ob.is_xz_yh = prom.is_xz_yh;
ob.goods = new Array();
ob.goods.push({ goods_id: item.goods_id, goods_price: item.goods_price, goods_num: item.goods_num });
var obj = {};
obj[item.prom_id] = ob;
map[pickid] = obj;
}
},
//---检查有没有优惠活动---
check_is_youhui: function (r_data, pick_id) {
let send_lb = this.data.send_lb;
let lodash = null;
r_data.forEach(item => {
if (send_lb[pick_id]) {
for (let i = 0; i < send_lb[pick_id].length; i++) {
let sends = send_lb[pick_id][i];
if (item.lb_id) {
if (sends.id === item.lb_id) {
sends['num']++;
} else {
let send_arr1 = send_lb[pick_id].filter(ii => ii.id === item.lb_id);
if (send_arr1.length == 0) {
if (item.lb_id) {
let ob = {};
ob.num = 1;
ob.title = item.lbtitle;
ob.id = item.lb_id;
lodash.push(ob);
// break;
}
}
}
}
if (item.zxlb_id) {
if (sends.id === item.zxlb_id) {
sends['num']++;
} else {
let send_arr = send_lb[pick_id].filter(ii => ii.id === item.zxlb_id);
if (send_arr.length == 0) {
if (item.zxlb_id) {
let ob = {};
ob.num = 1;
ob.flag = 1;
ob.title = item.zxlbtitle;
ob.id = item.zxlb_id;
lodash.push(ob);
// break;
}
}
}
}
}
} else {
let arr = new Array();
if (item.lb_id) {
let ob = {};
ob.num = 1;
ob.title = item.lbtitle;
ob.id = item.lb_id;
arr.push(ob);
}
if (item.zxlb_id) {
let ob = {};
ob.num = 1;
ob.flag = 1;
ob.title = item.zxlbtitle;
ob.id = item.zxlb_id;
arr.push(ob);
}
send_lb[pick_id] = arr;
lodash = JSON.parse(JSON.stringify(send_lb[pick_id]));
}
})
send_lb[pick_id] = lodash;
th.setData({
send_lb,
})
},
//从优惠的映射中拿出商品从表的item
item_map_get_goods: function (goods_id, map) {
for (var i in map.goods) {
if (map.goods[i].goods_id == goods_id) return map.goods[i];
}
},
//从优惠的映射中拿出商品从表的item
arr_get_goods: function (goods_id, arr) {
for (var i in arr) {
if (arr[i].goods_id == goods_id) return arr[i];
}
},
//检查是不是有其他门店的订单在选择了券
check_other_use: function (iter, pkid) {
var using = this.data.using_quan;
var is_use = 0;
if (using) {
for (var i in using) {
if (i == pkid) continue;
if (iter.CashRepNo == using[i].coupon_no) {
is_use = 1;
break;
}
}
}
return is_use;
},
//检查是不是有其他门店的订单在选择了包邮券
check_other_use_by: function (iter, pkid) {
var using = this.data.using_quan;
var is_use = 0;
if (using) {
for (var i in using) {
if (i == pkid) continue;
if (iter.no == using[i].coupon_no) {
is_use = 1;
break;
}
}
}
return is_use;
},
//跳转到购买卡
buycard: function () {
getApp().goto("/pages/user/plus/plus");
getApp().globalData.plus_buy_back = 1;
},
//跳转关闭弹出框的显示
close_offline: function () {
this.setData({ is_offline_show: 0 });
},
//立即购买显示弹出框
bn_pop_offline: function () {
var off_price = this.data.bn_goods.shop_price - this.data.bn_goods.offline_price;
//是不是线下
var is_get_offline = this.data.bn_goods.is_offline;
this.setData({ is_offline_show: 1, show_off_price: off_price.toFixed(2), is_get_offline: is_get_offline });
},
// 促销 -> 送礼包 -> 查看详情
viewLbDetails(e) {
let id = e.currentTarget.dataset.id; // 获取礼包id
let flag = e.currentTarget.dataset.flag;
let url = '';
if (flag == 1) { // flag =1 控制跳转到专享礼包
url = `/pages/giftpack/giftpacklist/giftpacklist?lbId=${id}&flag=1`;
} else {
url = `/packageA/pages/myGiftDetails/myGiftDetails?btn=0&index=0&id=${id}`; // btn=0 控制跳转到的页面不显示按钮
};
// console.log('myurl', url);
getApp().goto(url);
},
//确定使用线下取价
sure_offline: function () {
var bn_goods = this.data.bn_goods;
if (bn_goods && bn_goods.prom_type == 0) {
bn_goods.is_offline = 1;
this.setData({ is_offline_show: 0, bn_goods: bn_goods });
this.calculatePrice2();
}
//就是购物车结算时的
else {
var index = this.data.pop_offline_index;
var txt = "cartlist[" + index + "].is_offline";
this.setData({ [txt]: 1, is_offline_show: 0, });
this.data.old_cartlist[index].is_offline = 1;
this.calculatePrice();
}
},
//取消使用线下取价
cancle_offline: function () {
//判断是不是立即购买
var bn_goods = this.data.bn_goods;
if (bn_goods && bn_goods.prom_type == 0) {
bn_goods.is_offline = 0;
this.setData({ is_offline_show: 0, bn_goods: bn_goods });
this.calculatePrice2();
}
//就是购物车结算时的
else {
var index = this.data.pop_offline_index;
var txt = "cartlist[" + index + "].is_offline";
this.setData({ [txt]: 0, is_offline_show: 0, })
this.data.old_cartlist[index].is_offline = 0;
this.calculatePrice();
}
},
//-- 弹出购物车选择是不是要店铺优惠 --
cart_pop_offline: function (e) {
var index = e.currentTarget.dataset.index;
var item = this.data.cartlist[index];
var off_price = item.offline_price;
//是不是线下
var is_get_offline = item.is_offline;
this.setData({
pop_offline_index: index,
is_offline_show: 1,
show_off_price: off_price.toFixed(2),
is_get_offline: is_get_offline
});
},
go_url: function (e) {
var url = e.currentTarget.dataset.url;
getApp().goto(url);
},
//进行对商品的平摊g_item是单个商品,you_item是这个商品分多少优惠券的钱,goods是商品列表
split_set_goods_quanprice: async function (you_item, t_item) {
var coupon_price = you_item.WareCashSum;
var goods = t_item.goods;
var arr = [];
//判断是不是有goods_id重复
for (var i = 0; i < goods.length; i++) {
if (goods[i].erpwareid == you_item.WareId) {
var gg_ite = {
goods_id: goods[i].goods_id,
goods_num: goods[i].goods_num,
goods_price: goods[i].goods_price,
};
if (goods[i].account) gg_ite.goods_price = goods[i].account;
gg_ite.idx = i; arr.push(gg_ite);
}
}
if (arr.length <= 0) return false;
if (arr.length == 1) {
var idx = arr[0].idx;
t_item.goods[idx].quan_num = Math.floor(coupon_price * 100) / 100;
t_item.goods[idx].quan_no = t_item.quan_no;
return false;
}
var pt_data = {
'dis': parseFloat(coupon_price),
'goods': arr,
}
var pt_res = null;
await getApp().request.promisePost("/api/weshop/order/getGoodsSplit", {
is_json: 1,
data: pt_data
}).then(res => {
if (res.data.code == 0) {
pt_res = res.data.data;
}
})
if (pt_res) {
var q_s_num = 0;
for (var i in pt_res) {
var idx = pt_res[i].idx;
//有account的实收价,就要用account实收价
var price = (t_item.goods[idx].account ? t_item.goods[idx].account : t_item.goods[idx].goods_price);
price = (price - pt_res[i].fisrt_account) * t_item.goods[idx].goods_num;
t_item.goods[idx].quan_num = price;
t_item.goods[idx].quan_num = Math.floor(t_item.goods[idx].quan_num * 100) / 100;
t_item.goods[idx].quan_no = t_item.quan_no;
q_s_num += t_item.goods[idx].quan_num;
}
if (q_s_num > parseFloat(coupon_price) || q_s_num < parseFloat(coupon_price)) {
var pri = Math.floor(coupon_price * 100) / 100 - Math.floor(q_s_num * 100) / 100
var is_ok=0;
for (var ik in arr) {
if (arr[ik].goods_num == 1) {
var id = arr[ik].idx;
t_item.goods[id].quan_num += pri;
is_ok=1;
break;
}
}
if(!is_ok){
var id2 = arr[0].idx;
t_item.goods[id2].quan_num += pri;
}
}
}
},
//订阅消息提醒
sendsm: function (func) {
let th = this;
var template_id = this.data.template_id;
// //授权订阅
wx.requestSubscribeMessage({
tmplIds: [template_id],
success(res) {
func();
},
fail(res) {
func();
}
})
},
setexptype2: function (e) {
if(this.data.submit) return false;
this.setData({ submit: 1,same_ok:1 });
if(this.data.all_collocation_list){
var bn_coll= this.selectComponent('#bn_coll');
bn_coll.clear_sele();
this.setData({ collocation_goods: [] });
this.data.old_cartlist=null;
//让主商品的活动变成5,搭配购
if(this.data.bn_goods==5)
this.setData({ 'bn_goods.prom_type': 0, 'bn_goods.prom_id': 0 });
}
this.debounce(this.setexptype.bind(this, e), 400)();
},
setexptype_w2: function (e) {
if(this.data.submit) return false;
this.setData({ submit: 1,same_ok:1 });
for (let i = 0; i <this.data.cartlist.length ; i++) {
var collocationList=this.data.cartlist[i].collocationList;
if(collocationList){
var txt2 = 'cartlist[' + i + '].collocationList';
for (let jy = 0; jy <collocationList.length ; jy++) {
collocationList[jy].selected=0;
}
this.setData({[txt2]:collocationList})
var bn_coll= this.selectComponent("#col"+i);
bn_coll.clear_sele();
var goods = this.data.cartlist[i].goods;
var g_arr=[];
for (var j = 0; j < goods.length; j++) {
if(goods[j].is_collocation) continue;
g_arr.push(goods[j]);
}
var txt = 'cartlist[' + i + '].goods';
this.setData({ [txt]: g_arr});
}
}
this.data.old_cartlist = JSON.parse(JSON.stringify(this.data.cartlist));
this.debounce(this.setexptype_w.bind(this, e), 400)();
},
// 函数防抖
debounce: function (func, wait) {
return () => {
clearTimeout(timer);
timer = setTimeout(func, wait);
};
},
//-- 判断是不是选中 --
check_th_item: function (e) {
var th = this;
var idx = e.currentTarget.dataset.item;
var check = e.currentTarget.dataset.check;
var txt = "giftsinfo[" + idx + "].selected";
var gift_item = this.data.giftsinfo[idx];
if (check) {
th.setData({ [txt]: 0 });
} else {
var is_true = th.check_out_num_cart(gift_item, this.data.gift_pkid, gift_item.goods_num);
if (!is_true) { return false; }
th.setData({ [txt]: 1 });
}
},
//输入框输入数量的时候
valueToNum: function (e) {
var th = this;
var idx = e.currentTarget.dataset.item;
var gift_item = this.data.giftsinfo[idx];
var num = parseInt(e.detail.value);
var txt = "giftsinfo[" + idx + "].goods_num";
var is_true = th.check_out_num_cart(gift_item, this.data.gift_pkid, num);
if (!is_true) {
th.setData({ [txt]: 1 });
return false;
}
th.setData({ [txt]: num });
},
addNum: function (e) {
var th = this;
var idx = e.currentTarget.dataset.item;
var txt = "giftsinfo[" + idx + "].goods_num";
var num = th.data.giftsinfo[idx].goods_num + 1;
var gift_item = this.data.giftsinfo[idx];
var is_true = th.check_out_num_cart(gift_item, this.data.gift_pkid, num);
if (!is_true) { return false; }
th.setData({ [txt]: num });
},
subNum: function (e) {
var th = this;
var idx = e.currentTarget.dataset.item;
var txt = "giftsinfo[" + idx + "].goods_num";
var num = th.data.giftsinfo[idx].goods_num - 1;
var gift_item = this.data.giftsinfo[idx];
var is_true = th.check_out_num_cart(gift_item, this.data.gift_pkid, num);
if (!is_true) {
return false;
}
if (num < 1) return false;
th.setData({ [txt]: num });
},
//-- 点击选中赠品 --
show_sele_gift: function (e) {
var index = e.currentTarget.dataset.index;
var pk = e.currentTarget.dataset.pk;
var giftsinfo = this.data.send_gf[pk][index].giftsinfo;
for (let i in giftsinfo) {
let item = giftsinfo[i];
if (!item.goods_num) giftsinfo[i].goods_num = 1;
}
this.setData({
show_duo_gift: 1,
giftsinfo: giftsinfo,
gf_pr_name: this.data.send_gf[pk][index].gf_pr_name,
zp_num: this.data.send_gf[pk][index].zp_num,
gift_pkid: pk,
gf_prom_id: this.data.send_gf[pk][index].prom_id,
send_gf_index: index
})
},
close_sele_gift: function () {
this.setData({ show_duo_gift: 0 })
},
//购物车赠品有咩有超出库存。有灭有超出限购
check_out_num_cart: function (discount, pick_id, num) {
var prom_id = discount.prom_id;
var alllist = this.data.cartlist;
var all_num = num;
var all_limit_num = num;
var gift_id = discount.gift_id;
for (var i in alllist) {
var list_item = alllist[i];
//-- 门店相同,活动相同的时候 --
if (pick_id == list_item.pickup_id && prom_id == list_item.prom_id) continue;
for (var j in list_item.goods) {
//如果赠品的ID一样,要进行统计数量
if (list_item.goods[j].is_gift == 1 &&
list_item.goods[j].gift_id == gift_id) {
all_num += list_item.goods[j].goods_num;
}
if (list_item.goods[j].is_gift == 1 && list_item.goods[j].gift_id == gift_id && list_item.goods[j].prom_id == prom_id) {
all_limit_num += list_item.goods[j].limit_num;
}
}
}
//-- 赠品的数量超出库存数量和会员的限制,
// 这里是保证所有的赠品部会超出 --
if (discount.gift_storecount < all_num) {
wx.showToast({
title: "赠品库存不足",
icon: 'none',
duration: 2000
});
return false;
}
if (discount.limit_num < all_limit_num) {
wx.showToast({
title: "超出赠品限购",
icon: 'none',
duration: 2000
});
return false;
}
return true;
},
//-- 确定赠品 --
sure_this_gift: async function () {
var th = this;
var gf_pickup_id = this.data.gift_pkid;
var zp_num = this.data.zp_num;
var giftsinfo = this.data.giftsinfo;
var all_num = 0;
for (let i in giftsinfo) {
let item = giftsinfo[i];
if (!item.selected) continue;
all_num += item.goods_num;
}
if (all_num > zp_num) {
wx.showToast({
title: "超出活动赠品赠送的数量" + zp_num + "件",
icon: 'none',
duration: 2000
});
return false;
}
if (all_num < zp_num) {
wx.showToast({
title: "您还可以加" + (zp_num - all_num) + "件",
icon: 'none',
duration: 2000
});
return false;
}
//-- 当是购物车购买的时候 --
if (this.data.cartlist && this.data.cartlist.length > 0) {
var alllist = this.data.cartlist;
var index = alllist.findIndex(function (e) {
return e.pickup_id == gf_pickup_id
});
var pk_list_goods = alllist[index].goods;
var url = "/api/weshop/cart/delGift?store_id=" + os.stoid + "&user_id="
+ getApp().globalData.user_id + "&is_gift=1&pick_id=" + this.data.gift_pkid + "&prom_id=" + this.data.gf_prom_id;
await getApp().request.promiseDelete(url, {});
var new_pk_list_goods = [];
for (let i in pk_list_goods) {
let item = pk_list_goods[i];
if (item.is_gift && item.prom_id == this.data.gf_prom_id) {
continue;
}
new_pk_list_goods.push(item)
}
//-- 循环把赠品添加进去 --
for (var i = 0; i < giftsinfo.length; i++) {
var gf_item = giftsinfo[i];
if (!gf_item.selected) continue;
var add_data = null;
var newd = {
goods_id: gf_item.goodsinfo.goods_id,
goods_num: gf_item.goods_num,
pick_id: gf_pickup_id,
user_id: app.globalData.user_id,
store_id: os.stoid,
goods_price: 0,
member_goods_price: 0,
goods_name: gf_item.goodsinfo.goods_name,
goods_sn: gf_item.goodsinfo.goods_sn,
sku: gf_item.goodsinfo.sku,
is_gift: 1,
prom_id: th.data.gf_prom_id,
prom_type: 3,
selected: 1,
gift_id: gf_item.gift_id,
original_img: th.data.imgUrl + gf_item.goodsinfo.original_img,
exp_sum_type: gf_item.goodsinfo.exp_sum_type,
is_free_shipping: gf_item.goodsinfo.is_free_shipping,
weight: gf_item.goodsinfo.weight,
uniform_exp_sum: gf_item.goodsinfo.uniform_exp_sum,
goods_spec: gf_item.goodsinfo.goods_spec,
goods_color: gf_item.goodsinfo.goods_color,
is_post_temp:1 //赠品暂时的是要包邮运算, 后面和主商品是不是包邮一样
};
var prom_goods_map=th.data.prom_goods_map[gf_pickup_id];
var fd=prom_goods_map[th.data.gf_prom_id];
if(fd){
newd.is_past=fd.is_past;
newd.is_xz_yh=fd.is_xz_yh;
}
//-- 如果是代发商品的时候 --
if (gf_item.goodsinfo.whsle_id) {
newd.whsle_id = gf_item.goodsinfo.whsle_id;
}
await getApp().request.promisePost("/api/weshop/cart/save", {
data: newd
}).then(res => {
if (res.data.code == 0) {
add_data = res.data.data;
}
})
if (add_data) {
newd.id = add_data.id;
new_pk_list_goods.push(newd);
}
}
var set_data = this.data.send_gf[gf_pickup_id][this.data.send_gf_index];
set_data.selected = 1;
var txt9 = "cartlist[" + index + "].goods";
th.setData({ [txt9]: new_pk_list_goods, send_gf: this.data.send_gf });
this.data.old_cartlist[index].goods = new_pk_list_goods;
console.log(this.data.send_gf, "----");
th.calculatePrice();
} else {
var new_pk_list_goods = [];
//-- 当是立即购买的时候 --
for (var i = 0; i < giftsinfo.length; i++) {
var gf_item = giftsinfo[i];
if (!gf_item.selected) continue;
var newd = {
goods_id: gf_item.goodsinfo.goods_id,
buynum: gf_item.goods_num,
pick_id: gf_pickup_id,
user_id: app.globalData.user_id,
store_id: os.stoid,
goods_price: 0,
member_goods_price: 0,
goods_name: gf_item.goodsinfo.goods_name,
goods_sn: gf_item.goodsinfo.goods_sn,
sku: gf_item.goodsinfo.sku,
is_gift: 1,
prom_id: th.data.gf_prom_id,
prom_type: 3,
selected: 1,
gift_id: gf_item.gift_id,
original_img: th.data.imgUrl + gf_item.goodsinfo.original_img,
exp_sum_type: gf_item.goodsinfo.exp_sum_type,
is_free_shipping: gf_item.goodsinfo.is_free_shipping,
weight: gf_item.goodsinfo.weight,
uniform_exp_sum: gf_item.goodsinfo.uniform_exp_sum,
uniform_exp_sum: gf_item.goodsinfo.uniform_exp_sum,
goods_spec: gf_item.goodsinfo.goods_spec,
goods_color: gf_item.goodsinfo.goods_color,
};
//-- 如果是代发商品的时候 --
if (gf_item.goodsinfo.whsle_id) {
newd.whsle_id = gf_item.goodsinfo.whsle_id;
}
new_pk_list_goods.push(newd);
}
var set_data = this.data.send_gf[th.data.bn_pick][this.data.send_gf_index];
set_data.selected = 1;
var txt1 = "send_gf[" + gf_pickup_id + "][" + this.data.send_gf_index + "]";
th.setData({ buy_now_gift_goods: new_pk_list_goods, [txt1]: set_data });
th.calculatePrice2();
}
th.close_sele_gift();
},
//获取输入
getInput: function (e) {
this.data.gift_sear = e.detail.value;
},
//-- 搜索赠品 --
submitSearch: function () {
var giftsinfo = this.data.giftsinfo;
if (!this.data.gift_sear) {
for (let i in giftsinfo) {
let item = giftsinfo[i];
item.hide_div = 0;
}
} else {
for (let i in giftsinfo) {
let item = giftsinfo[i];
item.hide_div = 0;
if (item.goods_name.indexOf(this.data.gift_sear) == -1) {
item.hide_div = 1;
}
}
}
this.setData({ giftsinfo: giftsinfo })
},
//-- 赠品的验证 --
sub_check_gift(func) {
var th = this;
if (th.data.send_gf) {
var error_arr = [];
for (let io in th.data.send_gf) {
let item_arr = th.data.send_gf[io];
for (let ip in item_arr) {
var gf_pr_name = item_arr[ip].gf_pr_name;
var zp_num = item_arr[ip].zp_num;
var giftsinfo = item_arr[ip].giftsinfo;
var limit_all = 0;
var stock_all = 0;
for (let iu in giftsinfo) {
let gf_item = giftsinfo[iu];
limit_all += gf_item.limit_num;
stock_all += gf_item.gift_storecount;
}
if (limit_all < zp_num) {
error_arr.push(gf_pr_name + "限购不足");
}
if (stock_all < zp_num) {
error_arr.push(gf_pr_name + "赠品库存不足");
}
}
}
//-- 有赠品错误的时候,是不是继续下单 --
if (error_arr.length) {
var err = error_arr.join(",");
wx.showModal({
title: '提示',
content: err + ',无法赠送赠品,是否继续下单',
success(res) {
if (res.confirm) {
func();
} else if (res.cancel) {
console.log('用户点击取消');
th.setData({
submit: 0,
})
}
}
})
} else {
var is_ok = 1;
var error_arr = [];
for (let io in th.data.send_gf) {
let item_arr1 = th.data.send_gf[io];
for (let ip1 in item_arr1) {
var item_b = item_arr1[ip1];
if (!item_b.selected) {
is_ok = 0;
break;
}
}
if (!is_ok) break;
}
if (!is_ok) {
getApp().confirmBox("请选择赠品");
th.setData({
submit: 0,
})
return false;
}
func();
}
} else {
func();
}
},
//子组件返回的优化
select_coll(e) {
console.log("--1111--aaa--");
console.log(e);
//-- 如果是购物车的选择添加搭配商品 --
if (e.detail.is_cart == 1) {
this.select_coll_buy_cart(e.detail);
} else {
this.select_coll_buy_now(e.detail);
}
},
//立即购买的时候,选中和不选中搭配商品
async select_coll_buy_now(e) {
var th = this;
//--按钮变灰色 --
th.setData({ submit: 1 });
var txt = 'using_quan[' + th.data.bn_pick + ']';
th.setData({[txt]: null})
//如果是选中
if (e.selected) {
var item = this.data.all_collocation_list[e.index];
//如果是自提的时候
if(this.data.bn_exp_type==1){
if(item.distr_type==2){
wx.showToast({
title: "商品的配送方式不一致",
icon: 'none',
duration: 2000
})
th.setData({ submit: 0 });
return false;
}
}else{
if(this.data.bn_exp_type==2){
if(!item.is_same_city){
wx.showToast({
title: "商品不支持同城配送",
icon: 'none',
duration: 2000
})
th.setData({ submit: 0 });
return false;
}
}else{
if(item.distr_type==1){
wx.showToast({
title: "商品的配送方式不一致",
icon: 'none',
duration: 2000
})
th.setData({ submit: 0 });
return false;
}
}
}
var bn_coll = th.selectComponent("#bn_coll"); //组件的id
bn_coll.set_sele(e.index);
item.goods_num = 1;
item.goods_price = item.price;
item.is_collocation = 1;
item.prom_type = 5;
item.is_post_temp = 1;
th.setData({is_coupon:item.is_coupon})
var coll_arr = [];
if (this.data.collocation_goods && this.data.collocation_goods.length) {
coll_arr = this.data.collocation_goods;
}
coll_arr.push(item);
this.setData({ collocation_goods: coll_arr });
//让主商品的活动变成5,搭配购
this.setData({ 'bn_goods.prom_type': 5, 'bn_goods.prom_id': coll_arr[0].prom_id });
var is_has_main = coll_arr.findIndex(function (e) {
return e.goods_id == th.data.bn_goods.goods_id;
})
//要进行深拷贝
var coll_arr_new = JSON.parse(JSON.stringify(coll_arr));
coll_arr_new.unshift(this.data.bn_goods);
await th.get_collocation_list(coll_arr_new);
//计算价格
th.calculatePrice2();
th.get_cart_quan();
} else {
var item = this.data.all_collocation_list[e.index];
th.setData({is_coupon:item.is_coupon})
var coll_arr = this.data.collocation_goods;
var find = coll_arr.findIndex(function (e) {
return e.goods_id == item.goods_id;
})
coll_arr.splice(find, 1);
//当coll_arr的长度等于1的时候,说明没有选中搭配商品,只有主商品了
if (!coll_arr || coll_arr.length < 1) {
//让主商品的活动变成0,取消搭配购
this.setData({ 'bn_goods.prom_type': 0, 'bn_goods.prom_id': 0, collocation_goods: [] });
th.setData({is_coupon:1})
//计算价格
th.calculatePrice2();
//获取优惠券
th.get_buy_now_quan();
} else {
this.setData({ collocation_goods: coll_arr });
//要进行深拷贝
var coll_arr_new = JSON.parse(JSON.stringify(coll_arr));
coll_arr_new.unshift(this.data.bn_goods);
await th.get_collocation_list(coll_arr_new);
//计算价格
th.calculatePrice2();
th.get_cart_quan();
}
}
},
//购物车购买的时候,选中和不选中搭配商品
async select_coll_buy_cart(e) {
var th = this;
var cart_index = e.cart_index;
var index = e.index;
var collocationList = this.data.cartlist[cart_index].collocationList;
var item = collocationList[index];
var goods = this.data.cartlist[cart_index].goods;
var txt = 'cartlist[' + cart_index + '].goods';
var txt2 = 'cartlist[' + cart_index + '].collocationList[' + index + '].selected';
//有改,都强制把券选择清理一下
var pickup_id = this.data.cartlist[cart_index].pickup_id;
var txt='using_quan['+pickup_id+']';
th.setData({[txt]:null});
//-- 如果是选中 --
if (e.selected) {
var m_cartlist=this.data.old_cartlist;
if(this.data.order_prom_list_cart){
m_cartlist=this.data.order_prom_list_cart;
}
var exp_type=m_cartlist[cart_index].exp_type; //配送方式
//如果是自提的时候
if(exp_type==1){
if(item.distr_type==2){
wx.showToast({
title: "商品的配送方式不一致",
icon: 'none',
duration: 2000
})
return false;
}
}else{
if(exp_type==2){
if(!item.is_same_city){
wx.showToast({
title: "商品不支持同城配送",
icon: 'none',
duration: 2000
})
th.setData({ submit: 0 });
return false;
}
}else {
if (item.distr_type == 1) {
wx.showToast({
title: "商品的配送方式不一致",
icon: 'none',
duration: 2000
})
return false;
}
}
}
var bn_coll = th.selectComponent("#col"+cart_index); //组件的id
bn_coll.set_sele(index);
item.goods_num = 1;
item.goods_price = item.price;
item.prom_type = 5;
item.is_collocation = 1;
item.is_post_temp = 1;
goods.push(item);
th.setData({ [txt]: goods, [txt2]: 1 });
th.data.old_cartlist = JSON.parse(JSON.stringify(this.data.cartlist));
th.calculatePrice();
//th.get_cart_quan();
} else {
var fd = goods.findIndex(function (e) {
return e.goods_id == item.goods_id && e.prom_type == 5;
})
goods.splice(fd, 1);
th.setData({ [txt]: goods, [txt2]: 0 });
th.data.old_cartlist = JSON.parse(JSON.stringify(this.data.cartlist));
th.calculatePrice();
//th.get_cart_quan();
}
},
//-- 搭配购的获取搭配商品的购物车计算价格的数组格式 --
async get_collocation_list(narr) {
var gg = to.get_b_now();
var th = this;
var cart_arr = new Array();
//-- 搭配促销的门店配送方式的修复 --
var et = 1;
var distr_t = 0; // 配送方式 0=用户自选 1=自提 2=物流
for (var hi in narr) {
narr[hi].is_post_temp=1; //-- 固定都是参与包邮模板 --
var dis_t = narr[hi].distr_type;
if (dis_t == 2) {
th.setData({ is_all_zt: 0 });
et = 0;
}
if (dis_t > 0) {
distr_t = dis_t;
}
//-- 如果有一件代发的商品或者不是同城配送的配送 --
if (narr[hi].is_same_city != 1 || narr[hi].whsle_id > 0) {
//th.setData({ show_same_city: 0 })
}
}
//自选的时候,系统配置了默认的配送方式是物流的时候
if (distr_t == 0 && th.data.json_d.pickupway && th.data.json_d.pickupway == 1) {
et = 0; th.setData({ is_all_zt: 0 });
}
//-- 如果是同城配送和默认同城配送的时候 --
if(th.data.show_same_city==1 && th.data.json_d.pickupway && th.data.json_d.pickupway == 2) {
et = 2; th.setData({ is_all_zt: 0 });
}
var m_wind = th.data.m_wind;
var ie = {
pickup_id: gg.pick_id,
pname: gg.pick_name,
goods: narr,
exp_type: et,
wind: m_wind,
distr_t: distr_t,
bn_t_exp_t: distr_t,
goods_price: 0,
shipping_price: 0,
user_money: 0,
total_amount: 0,
order_amount: 0,
user_note: ""
};
var cart_commission = 0;
//-- 循环计算一下线下取价 --
//计算佣金的商品
var commission_gds = [];
for (var c = 0; c < narr.length; c++) {
var hr = {
goods_id: narr[c].goods_id,
goods_num: narr[c].goods_num,
prom_type: 0,
prom_id: 0,
}
commission_gds.push(hr);
}
//获取购物车的佣金,此处要优化调用接口,获取佣金
var req_d = {
user_id: getApp().globalData.user_id, goods_ids: commission_gds, store_id: os.stoid
}
var back_data = null;
await getApp().request.promisePost("/api/weshop/order/getrebateSum", {
is_json: 1, data: req_d
}).then(rs => {
if (rs.data.code == 0) back_data = rs.data.data;
});
if (back_data && parseFloat(back_data)) {
ie.can_usecommise = parseFloat(parseFloat(back_data).toFixed(2));
cart_commission = ie.can_usecommise;
}
cart_arr.push(ie);
if (cart_commission) {
th.setData({ cart_commission });
}
th.data.old_cartlist = cart_arr;
},
//-- 获取到搭配 --
has_dp:function (list,prom_id){
for (let i in list) {
var it=list[i];
if(it.prom_id==prom_id && it.is_collocation==1){
return true;
}
}
return false;
}
});