index.js 51.4 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
/**
 * 购物车
 * @author: feng.chen<feng.chen@yoho.cn>
 * @date: 2016/12/21
 */

'use strict';
const api = global.yoho.API;
const cartProcess = require(global.utils + '/cart-process');

const indexData = (uid, shoppingKey, saleChannel, cartType) => {
    return api.get('', {
        method: 'app.Shopping.queryCart',
        uid: uid,
        shopping_key: shoppingKey,
        sale_channel: saleChannel
    }).then((data) => {
//     return new Promise((resolve, reject) => {
//         resolve(cartProcess.processData({
//     "alg": "SALT_MD5",
//     "code": 200,
//     "data": {
//         "advance_cart_data": {
//             "gift_list": [],
//             "goods_list": [],
//             "goods_pool_list": [],
//             "off_shelves_goods_list": [],
//             "price_gift": [],
//             "promotion_info": [],
//             "shopping_cart_data": {
//                 "discount_amount": 0,
//                 "fast_shopping_cost": 15,
//                 "gain_yoho_coin": 0,
//                 "goods_count": 0,
//                 "has_invalid_goods": 0,
//                 "is_multi_package": "N",
//                 "last_order_amount": 0,
//                 "offline_goods_count": 0,
//                 "online_goods_count": 0,
//                 "order_amount": 0,
//                 "package_list": [],
//                 "promotion_formula": "总计¥0.00=商品金额¥0.00",
//                 "promotion_formula_list": [
//                     {
//                         "promotion": "商品金额",
//                         "promotion_amount": "¥0.00"
//                     }
//                 ],
//                 "remain_time": 0,
//                 "selected_goods_count": 0,
//                 "shipping_cost": 10,
//                 "str_discount_amount": "¥0.00",
//                 "str_order_amount": "¥0.00"
//             },
//             "sold_out_goods_list": []
//         },
//         "ordinary_cart_data": {
//             "gift_list": [],
//             "goods_list": [],
//             "goods_pool_list": [
//                 {
//                     "goods_list": [
//                         {
//                             "attribute": "1",
//                             "brand_domain": "I LOVE CHOC",
//                             "brand_id": "524",
//                             "brand_name": "ilovechoc",
//                             "buy_limit": 0,
//                             "buy_number": "1",
//                             "buy_type": 2,
//                             "can_cod_pay": "Y",
//                             "cn_alphabet": "ILOVECHOC505432039TongZhuangXingXingPinJieLianMaoBangQiuShan",
//                             "color_id": "7",
//                             "color_name": "蓝色",
//                             "delay_notice": "",
//                             "discount_tag": "",
//                             "expect_arrival_time": "",
//                             "factory_goods_name": "蓝色",
//                             "fit_promotions": [],
//                             "get_yoho_coin": "0",
//                             "goods_id": "367065",
//                             "goods_images": "http://img10.static.yhbimg.com/goodsimg/2015/11/25/06/01d06aa4c18f6714a04573afeac2ae71d2.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                             "goods_type": "ordinary",
//                             "is_advance": "N",
//                             "is_deposit_advance": "N",
//                             "is_jit": "N",
//                             "is_limited": "N",
//                             "is_outlets": "N",
//                             "is_special": "N",
//                             "last_price": "280.0",
//                             "last_vip_price": 280,
//                             "local_buy_number": 0,
//                             "market_price": 281,
//                             "max_sort_id": "365",
//                             "middle_sort_id": "404",
//                             "min_buy_number": 1,
//                             "off_shelves": 0,
//                             "offline_goods_status": 1,
//                             "offline_storage_number": 0,
//                             "offline_storage_status": 1,
//                             "online_storage_number": 0,
//                             "product_id": 285265,
//                             "product_name": "I LOVE CHOC  童装星星拼接连帽棒球衫",
//                             "product_skc": "288132",
//                             "product_skn": "51160552",
//                             "product_sku": "912752",
//                             "promotion_flag": "101",
//                             "promotion_id": "0",
//                             "real_price": 280,
//                             "real_vip_price": 0,
//                             "sale_price": 0,
//                             "sales_price": 280,
//                             "selected": "Y",
//                             "shop_id": 0,
//                             "shopping_cart_goods_id": "60454",
//                             "shopping_cart_id": "118792348",
//                             "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                             "size_id": "203",
//                             "size_name": "M",
//                             "small_sort_id": "405",
//                             "storage_number": "1",
//                             "store_id": 0,
//                             "str_subtotal": "¥280.00",
//                             "subtotal": 280,
//                             "supplier_id": 0,
//                             "tags": [],
//                             "uid": "8040155",
//                             "vip1_price": "0.00",
//                             "vip2_price": "0.00",
//                             "vip3_price": "0.00",
//                             "vip_discount": 1,
//                             "vip_discount_money": 0,
//                             "vip_discount_type": "3",
//                             "vip_price": 0,
//                             "wareHouseId": 0,
//                             "yoho_coin_num": "0"
//                         }
//                     ],
//                     "pool_title": "ilovechoc",
//                     "pool_type": 1
//                 },
//                 {
//                     "pool_type": 0,
//                     "promotion_list": [
//                         {
//                             "alreadyMatch": true,
//                             "condition_unit": 0,
//                             "condition_value": 0,
//                             "gift_goods_List": [],
//                             "gift_price": 0,
//                             "promotion_id": 9148,
//                             "promotion_title": "全场促销",
//                             "promotion_type": "Discount",
//                             "status": 10
//                         }
//                     ],
//                     "sub_pool": [
//                         {
//                             "goods_list": [
//                                 {
//                                     "attribute": "1",
//                                     "brand_domain": "oasso",
//                                     "brand_id": "210",
//                                     "brand_name": "oasso",
//                                     "buy_limit": 0,
//                                     "buy_number": "2",
//                                     "buy_type": 2,
//                                     "can_cod_pay": "Y",
//                                     "cn_alphabet": "OASSOShouJiChongDianZuo",
//                                     "color_id": "6",
//                                     "color_name": "绿色",
//                                     "delay_notice": "",
//                                     "discount_tag": "S",
//                                     "expect_arrival_time": "",
//                                     "factory_goods_name": "绿色",
//                                     "fit_promotions": [
//                                         "9148"
//                                     ],
//                                     "get_yoho_coin": "0",
//                                     "goods_id": "254893",
//                                     "goods_images": "http://img13.static.yhbimg.com/goodsimg/2016/01/12/05/02d78f2aec2e0206f34e6bed05e463c73d.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                                     "goods_type": "ordinary",
//                                     "is_advance": "N",
//                                     "is_deposit_advance": "N",
//                                     "is_jit": "N",
//                                     "is_limited": "Y",
//                                     "is_outlets": "N",
//                                     "is_special": "N",
//                                     "last_price": "7.92",
//                                     "last_vip_price": 9.9,
//                                     "local_buy_number": 0,
//                                     "market_price": 12,
//                                     "max_sort_id": "10",
//                                     "middle_sort_id": "103",
//                                     "min_buy_number": 1,
//                                     "off_shelves": 0,
//                                     "offline_goods_status": 1,
//                                     "offline_storage_number": 0,
//                                     "offline_storage_status": 1,
//                                     "online_storage_number": 0,
//                                     "product_id": 189413,
//                                     "product_name": "oasso 手机充电座",
//                                     "product_skc": "228608",
//                                     "product_skn": "51109379",
//                                     "product_sku": "746705",
//                                     "promotion_flag": "110",
//                                     "promotion_id": "0",
//                                     "real_price": 7.92,
//                                     "real_vip_price": 9.9,
//                                     "sale_price": 0,
//                                     "sales_price": 11,
//                                     "selected": "Y",
//                                     "shop_id": 0,
//                                     "shopping_cart_goods_id": "60434",
//                                     "shopping_cart_id": "118792348",
//                                     "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                                     "size_id": "199",
//                                     "size_name": "F",
//                                     "small_sort_id": "212",
//                                     "storage_number": "12331",
//                                     "store_id": 0,
//                                     "str_subtotal": "¥19.80",
//                                     "subtotal": 19.8,
//                                     "supplier_id": 0,
//                                     "tags": [],
//                                     "uid": "8040155",
//                                     "vip1_price": "10.45",
//                                     "vip2_price": "9.90",
//                                     "vip3_price": "9.68",
//                                     "vip_discount": 0.9,
//                                     "vip_discount_money": 1.1,
//                                     "vip_discount_type": "1",
//                                     "vip_price": 11,
//                                     "wareHouseId": 0,
//                                     "yoho_coin_num": "0"
//                                 }
//                             ],
//                             "pool_type": 1
//                         }
//                     ]
//                 },
//                 {
//                     "goods_list": [
//                         {
//                             "attribute": "1",
//                             "brand_domain": "EBLIS",
//                             "brand_id": "37",
//                             "brand_name": "eblishungi",
//                             "buy_limit": 0,
//                             "buy_number": "1",
//                             "buy_type": 2,
//                             "can_cod_pay": "Y",
//                             "cn_alphabet": "EBLISChenShanS223",
//                             "color_id": "7",
//                             "color_name": "蓝色",
//                             "delay_notice": "",
//                             "discount_tag": "S",
//                             "expect_arrival_time": "1月",
//                             "factory_goods_name": "测试数据,测试厂家颜色,蓝色,testtest,测试测试测试测试。。。。测试",
//                             "fit_promotions": [],
//                             "get_yoho_coin": "0",
//                             "goods_id": "443029",
//                             "goods_images": "http://img11.static.yhbimg.com/goodsimg/2016/01/12/02/01e1c78084e7ed6739b21a8bccbbf32f1b.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                             "goods_type": "ordinary",
//                             "is_advance": "N",
//                             "is_deposit_advance": "N",
//                             "is_jit": "N",
//                             "is_limited": "N",
//                             "is_outlets": "N",
//                             "is_special": "N",
//                             "last_price": "9.9",
//                             "last_vip_price": 9.9,
//                             "local_buy_number": 0,
//                             "market_price": 598,
//                             "max_sort_id": "1",
//                             "middle_sort_id": "12",
//                             "min_buy_number": 1,
//                             "off_shelves": 0,
//                             "offline_goods_status": 1,
//                             "offline_storage_number": 0,
//                             "offline_storage_status": 1,
//                             "online_storage_number": 0,
//                             "product_id": 345753,
//                             "product_name": "EBLIS 男款格子衬衫",
//                             "product_skc": "329633",
//                             "product_skn": "51192557",
//                             "product_sku": "1029828",
//                             "promotion_flag": "0",
//                             "promotion_id": "0",
//                             "real_price": 9.9,
//                             "real_vip_price": 9.9,
//                             "sale_price": 0,
//                             "sales_price": 11,
//                             "selected": "Y",
//                             "shop_id": 0,
//                             "shopping_cart_goods_id": "60430",
//                             "shopping_cart_id": "118792348",
//                             "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                             "size_id": "207",
//                             "size_name": "S",
//                             "small_sort_id": "115",
//                             "storage_number": "499",
//                             "store_id": 0,
//                             "str_subtotal": "¥9.90",
//                             "subtotal": 9.9,
//                             "supplier_id": 0,
//                             "tags": [],
//                             "uid": "8040155",
//                             "vip1_price": "10.45",
//                             "vip2_price": "9.90",
//                             "vip3_price": "9.68",
//                             "vip_discount": 0.9,
//                             "vip_discount_money": 1.1,
//                             "vip_discount_type": "1",
//                             "vip_price": 11,
//                             "wareHouseId": 0,
//                             "yoho_coin_num": "0"
//                         }
//                     ],
//                     "pool_title": "eblishungi",
//                     "pool_type": 1
//                 },
//                 {
//                     "pool_type": 0,
//                     "promotion_list": [
//                         {
//                             "alreadyMatch": true,
//                             "condition_unit": 0,
//                             "condition_value": 0,
//                             "gift_goods_List": [],
//                             "gift_price": 0,
//                             "promotion_id": 9088,
//                             "promotion_title": "线下店满3免一勿动",
//                             "promotion_type": "Cheapestfree",
//                             "status": 10
//                         }
//                     ],
//                     "sub_pool": [
//                         {
//                             "goods_list": [
//                                 {
//                                     "attribute": "1",
//                                     "brand_domain": "BLACKJACK",
//                                     "brand_id": "256",
//                                     "brand_name": "blackjack",
//                                     "buy_limit": 0,
//                                     "buy_number": "3",
//                                     "buy_type": 2,
//                                     "can_cod_pay": "Y",
//                                     "cn_alphabet": "PANDAMADEHOTRODP12062",
//                                     "color_id": "1",
//                                     "color_name": "白",
//                                     "delay_notice": "",
//                                     "discount_tag": "S",
//                                     "expect_arrival_time": "",
//                                     "factory_goods_name": "白",
//                                     "fit_promotions": [
//                                         "9088"
//                                     ],
//                                     "get_yoho_coin": "0",
//                                     "goods_id": "28492",
//                                     "goods_images": "http://img10.static.yhbimg.com/goodsimg/2016/09/26/19/01a0040ac739eda88815760dc95017c406.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                                     "goods_type": "ordinary",
//                                     "is_advance": "N",
//                                     "is_deposit_advance": "N",
//                                     "is_jit": "N",
//                                     "is_limited": "N",
//                                     "is_outlets": "N",
//                                     "is_special": "N",
//                                     "last_price": "0.6",
//                                     "last_vip_price": 0.9,
//                                     "local_buy_number": 0,
//                                     "market_price": 289,
//                                     "max_sort_id": "1",
//                                     "middle_sort_id": "11",
//                                     "min_buy_number": 1,
//                                     "off_shelves": 0,
//                                     "offline_goods_status": 1,
//                                     "offline_storage_number": 0,
//                                     "offline_storage_status": 1,
//                                     "online_storage_number": 0,
//                                     "product_id": 19858,
//                                     "product_name": "BLACKJACK民族风骷髅拉花毛衣",
//                                     "product_skc": "28492",
//                                     "product_skn": "50023801",
//                                     "product_sku": "164165",
//                                     "promotion_flag": "108",
//                                     "promotion_id": "0",
//                                     "real_price": 0.6,
//                                     "real_vip_price": 0.9,
//                                     "sale_price": 0,
//                                     "sales_price": 1,
//                                     "selected": "Y",
//                                     "shop_id": 0,
//                                     "shopping_cart_goods_id": "60428",
//                                     "shopping_cart_id": "118792348",
//                                     "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                                     "size_id": "201",
//                                     "size_name": "L",
//                                     "small_sort_id": "114",
//                                     "storage_number": "100",
//                                     "store_id": 0,
//                                     "str_subtotal": "¥2.70",
//                                     "subtotal": 2.7,
//                                     "supplier_id": 0,
//                                     "tags": [],
//                                     "uid": "8040155",
//                                     "vip1_price": "0.95",
//                                     "vip2_price": "0.90",
//                                     "vip3_price": "0.88",
//                                     "vip_discount": 0.9,
//                                     "vip_discount_money": 0.1,
//                                     "vip_discount_type": "1",
//                                     "vip_price": 11,
//                                     "wareHouseId": 0,
//                                     "yoho_coin_num": "0"
//                                 }
//                             ],
//                             "pool_type": 1
//                         }
//                     ]
//                 },
//                 {
//                     "goods_list": [
//                         {
//                             "attribute": "1",
//                             "brand_domain": "VANS",
//                             "brand_id": "144",
//                             "brand_name": "vans",
//                             "buy_limit": 0,
//                             "buy_number": "1",
//                             "buy_type": 2,
//                             "can_cod_pay": "Y",
//                             "cn_alphabet": "VANSGGIRLFRIENDSKIRTVN01Z1BLK",
//                             "color_id": "2",
//                             "color_name": "黑色",
//                             "delay_notice": "",
//                             "discount_tag": "S",
//                             "expect_arrival_time": "",
//                             "factory_goods_name": "黑色",
//                             "fit_promotions": [],
//                             "get_yoho_coin": "0",
//                             "goods_id": "257295",
//                             "goods_images": "http://img11.static.yhbimg.com/goodsimg/2015/05/22/08/01bdaaa0753892690e06ff7ef9bfd39b2b.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                             "goods_type": "ordinary",
//                             "is_advance": "N",
//                             "is_deposit_advance": "N",
//                             "is_jit": "N",
//                             "is_limited": "N",
//                             "is_outlets": "N",
//                             "is_special": "N",
//                             "last_price": "9.9",
//                             "last_vip_price": 9.9,
//                             "local_buy_number": 0,
//                             "market_price": 260,
//                             "max_sort_id": "4",
//                             "middle_sort_id": "32",
//                             "min_buy_number": 1,
//                             "off_shelves": 0,
//                             "offline_goods_status": 1,
//                             "offline_storage_number": 0,
//                             "offline_storage_status": 1,
//                             "online_storage_number": 0,
//                             "product_id": 191193,
//                             "product_name": "VANS G GIRLFRIEND SKIRT",
//                             "product_skc": "230040",
//                             "product_skn": "51110511",
//                             "product_sku": "751215",
//                             "promotion_flag": "101",
//                             "promotion_id": "0",
//                             "real_price": 9.9,
//                             "real_vip_price": 9.9,
//                             "sale_price": 0,
//                             "sales_price": 11,
//                             "selected": "Y",
//                             "shop_id": 0,
//                             "shopping_cart_goods_id": "60424",
//                             "shopping_cart_id": "118792348",
//                             "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                             "size_id": "201",
//                             "size_name": "L",
//                             "small_sort_id": "135",
//                             "storage_number": "11999",
//                             "store_id": 0,
//                             "str_subtotal": "¥9.90",
//                             "subtotal": 9.9,
//                             "supplier_id": 0,
//                             "tags": [],
//                             "uid": "8040155",
//                             "vip1_price": "10.45",
//                             "vip2_price": "9.90",
//                             "vip3_price": "9.68",
//                             "vip_discount": 0.9,
//                             "vip_discount_money": 1.1,
//                             "vip_discount_type": "1",
//                             "vip_price": 11,
//                             "wareHouseId": 0,
//                             "yoho_coin_num": "0"
//                         }
//                     ],
//                     "pool_title": "vans",
//                     "pool_type": 1
//                 },
//                 {
//                     "pool_type": 0,
//                     "promotion_list": [
//                         {
//                             "alreadyMatch": true,
//                             "condition_unit": 0,
//                             "condition_value": 0,
//                             "gift_goods_List": [],
//                             "gift_price": 0,
//                             "promotion_id": 9086,
//                             "promotion_title": "线下店分件折扣勿动",
//                             "promotion_type": "Degressdiscount",
//                             "status": 10
//                         }
//                     ],
//                     "sub_pool": [
//                         {
//                             "goods_list": [
//                                 {
//                                     "attribute": "1",
//                                     "brand_domain": "ZERONE",
//                                     "brand_id": "199",
//                                     "brand_name": "zerone",
//                                     "buy_limit": 0,
//                                     "buy_number": "1",
//                                     "buy_type": 2,
//                                     "can_cod_pay": "Y",
//                                     "cn_alphabet": "ZERONEDZ100105DZ100107UPC853A",
//                                     "color_id": "2",
//                                     "color_name": "黑",
//                                     "delay_notice": "",
//                                     "discount_tag": "S",
//                                     "expect_arrival_time": "",
//                                     "factory_goods_name": "黑",
//                                     "fit_promotions": [
//                                         "9086"
//                                     ],
//                                     "get_yoho_coin": "0",
//                                     "goods_id": "20056",
//                                     "goods_images": "http://img12.static.yhbimg.com/goodsimg/2012/02/29/11/02f5a2573d16e353b3c36a6404a9aabd7c.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                                     "goods_type": "ordinary",
//                                     "is_advance": "N",
//                                     "is_deposit_advance": "N",
//                                     "is_jit": "N",
//                                     "is_limited": "N",
//                                     "is_outlets": "N",
//                                     "is_special": "N",
//                                     "last_price": "195.93",
//                                     "last_vip_price": 279.9,
//                                     "local_buy_number": 0,
//                                     "market_price": 629,
//                                     "max_sort_id": "8",
//                                     "middle_sort_id": "59",
//                                     "min_buy_number": 1,
//                                     "off_shelves": 0,
//                                     "offline_goods_status": 1,
//                                     "offline_storage_number": 0,
//                                     "offline_storage_status": 1,
//                                     "online_storage_number": 0,
//                                     "product_id": 14293,
//                                     "product_name": "ZERONE Lolita系列蕾丝手表",
//                                     "product_skc": "20056",
//                                     "product_skn": "50018093",
//                                     "product_sku": "141155",
//                                     "promotion_flag": "108",
//                                     "promotion_id": "0",
//                                     "real_price": 195.93,
//                                     "real_vip_price": 279.9,
//                                     "sale_price": 0,
//                                     "sales_price": 311,
//                                     "selected": "Y",
//                                     "shop_id": 0,
//                                     "shopping_cart_goods_id": "60422",
//                                     "shopping_cart_id": "118792348",
//                                     "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                                     "size_id": "199",
//                                     "size_name": "F",
//                                     "small_sort_id": "162",
//                                     "storage_number": "100",
//                                     "store_id": 0,
//                                     "str_subtotal": "¥279.90",
//                                     "subtotal": 279.9,
//                                     "supplier_id": 0,
//                                     "tags": [],
//                                     "uid": "8040155",
//                                     "vip1_price": "295.45",
//                                     "vip2_price": "279.90",
//                                     "vip3_price": "273.68",
//                                     "vip_discount": 0.9,
//                                     "vip_discount_money": 31.1,
//                                     "vip_discount_type": "1",
//                                     "vip_price": 11,
//                                     "wareHouseId": 0,
//                                     "yoho_coin_num": "0"
//                                 },
//                                 {
//                                     "attribute": "1",
//                                     "brand_domain": "ZERONE",
//                                     "brand_id": "199",
//                                     "brand_name": "zerone",
//                                     "buy_limit": 0,
//                                     "buy_number": "1",
//                                     "buy_type": 2,
//                                     "can_cod_pay": "Y",
//                                     "cn_alphabet": "ZERONEDZ100105DZ100107UPC853A",
//                                     "color_id": "2",
//                                     "color_name": "黑",
//                                     "delay_notice": "",
//                                     "discount_tag": "S",
//                                     "expect_arrival_time": "",
//                                     "factory_goods_name": "黑",
//                                     "fit_promotions": [
//                                         "9086"
//                                     ],
//                                     "get_yoho_coin": "0",
//                                     "goods_id": "20056",
//                                     "goods_images": "http://img12.static.yhbimg.com/goodsimg/2012/02/29/11/02f5a2573d16e353b3c36a6404a9aabd7c.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                                     "goods_type": "ordinary",
//                                     "is_advance": "N",
//                                     "is_deposit_advance": "N",
//                                     "is_jit": "N",
//                                     "is_limited": "N",
//                                     "is_outlets": "N",
//                                     "is_special": "N",
//                                     "last_price": "195.93",
//                                     "last_vip_price": 279.9,
//                                     "local_buy_number": 0,
//                                     "market_price": 629,
//                                     "max_sort_id": "8",
//                                     "middle_sort_id": "59",
//                                     "min_buy_number": 1,
//                                     "off_shelves": 0,
//                                     "offline_goods_status": 1,
//                                     "offline_storage_number": 0,
//                                     "offline_storage_status": 1,
//                                     "online_storage_number": 0,
//                                     "product_id": 14293,
//                                     "product_name": "ZERONE Lolita系列蕾丝手表",
//                                     "product_skc": "20056",
//                                     "product_skn": "50018093",
//                                     "product_sku": "141155",
//                                     "promotion_flag": "108",
//                                     "promotion_id": "0",
//                                     "real_price": 195.93,
//                                     "real_vip_price": 279.9,
//                                     "sale_price": 0,
//                                     "sales_price": 311,
//                                     "selected": "Y",
//                                     "shop_id": 0,
//                                     "shopping_cart_goods_id": "60422",
//                                     "shopping_cart_id": "118792348",
//                                     "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                                     "size_id": "199",
//                                     "size_name": "F",
//                                     "small_sort_id": "162",
//                                     "storage_number": "100",
//                                     "store_id": 0,
//                                     "str_subtotal": "¥279.90",
//                                     "subtotal": 279.9,
//                                     "supplier_id": 0,
//                                     "tags": [],
//                                     "uid": "8040155",
//                                     "vip1_price": "295.45",
//                                     "vip2_price": "279.90",
//                                     "vip3_price": "273.68",
//                                     "vip_discount": 0.9,
//                                     "vip_discount_money": 31.1,
//                                     "vip_discount_type": "1",
//                                     "vip_price": 11,
//                                     "wareHouseId": 0,
//                                     "yoho_coin_num": "0"
//                                 }
//                             ],
//                             "pool_type": 1
//                         }
//                     ]
//                 },
//                 {
//                     "goods_list": [
//                         {
//                             "attribute": "1",
//                             "brand_domain": "reemoor",
//                             "brand_id": "949",
//                             "brand_name": "reemoor",
//                             "buy_limit": 0,
//                             "buy_number": "1",
//                             "buy_type": 2,
//                             "can_cod_pay": "Y",
//                             "cn_alphabet": "REEMOOR251205ShuangXianHangFengYaZhiFengGeShuJuanXie",
//                             "color_id": "7",
//                             "color_name": "蓝色",
//                             "delay_notice": "",
//                             "discount_tag": "S",
//                             "expect_arrival_time": "",
//                             "factory_goods_name": "蓝色",
//                             "fit_promotions": [],
//                             "get_yoho_coin": "0",
//                             "goods_id": "353397",
//                             "goods_images": "http://img10.static.yhbimg.com/goodsimg/2015/10/10/08/01218e9a756a74d2f15e8071fe43b601ab.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                             "goods_type": "ordinary",
//                             "is_advance": "N",
//                             "is_deposit_advance": "N",
//                             "is_jit": "N",
//                             "is_limited": "N",
//                             "is_outlets": "N",
//                             "is_special": "N",
//                             "last_price": "9.9",
//                             "last_vip_price": 9.9,
//                             "local_buy_number": 0,
//                             "market_price": 298,
//                             "max_sort_id": "6",
//                             "middle_sort_id": "48",
//                             "min_buy_number": 1,
//                             "off_shelves": 0,
//                             "offline_goods_status": 1,
//                             "offline_storage_number": 0,
//                             "offline_storage_status": 1,
//                             "online_storage_number": 0,
//                             "product_id": 273535,
//                             "product_name": "reemoor 双线绗缝雅致风格舒卷鞋",
//                             "product_skc": "278773",
//                             "product_skn": "51152203",
//                             "product_sku": "890538",
//                             "promotion_flag": "109",
//                             "promotion_id": "0",
//                             "real_price": 9.9,
//                             "real_vip_price": 9.9,
//                             "sale_price": 0,
//                             "sales_price": 11,
//                             "selected": "Y",
//                             "shop_id": 0,
//                             "shopping_cart_goods_id": "60416",
//                             "shopping_cart_id": "118792348",
//                             "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                             "size_id": "116",
//                             "size_name": "40码",
//                             "small_sort_id": "151",
//                             "storage_number": "7",
//                             "store_id": 0,
//                             "str_subtotal": "¥9.90",
//                             "subtotal": 9.9,
//                             "supplier_id": 0,
//                             "tags": [],
//                             "uid": "8040155",
//                             "vip1_price": "10.45",
//                             "vip2_price": "9.90",
//                             "vip3_price": "9.68",
//                             "vip_discount": 0.9,
//                             "vip_discount_money": 1.1,
//                             "vip_discount_type": "1",
//                             "vip_price": 11,
//                             "wareHouseId": 0,
//                             "yoho_coin_num": "0"
//                         },
//                         {
//                             "attribute": "1",
//                             "brand_domain": "reemoor",
//                             "brand_id": "949",
//                             "brand_name": "reemoor",
//                             "buy_limit": 0,
//                             "buy_number": "1",
//                             "buy_type": 2,
//                             "can_cod_pay": "Y",
//                             "cn_alphabet": "REEMOOR251289LiangMianJianTouHuDieJieZhuangShiShuJuanXie",
//                             "color_id": "1",
//                             "color_name": "白色",
//                             "delay_notice": "",
//                             "discount_tag": "S",
//                             "expect_arrival_time": "",
//                             "factory_goods_name": "白色",
//                             "fit_promotions": [],
//                             "get_yoho_coin": "0",
//                             "goods_id": "353425",
//                             "goods_images": "http://img10.static.yhbimg.com/goodsimg/2015/10/10/08/01a9456ed9db84ea945d2163de7144a85f.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
//                             "goods_type": "ordinary",
//                             "is_advance": "N",
//                             "is_deposit_advance": "N",
//                             "is_jit": "N",
//                             "is_limited": "N",
//                             "is_outlets": "N",
//                             "is_special": "N",
//                             "last_price": "9.9",
//                             "last_vip_price": 9.9,
//                             "local_buy_number": 0,
//                             "market_price": 298,
//                             "max_sort_id": "6",
//                             "middle_sort_id": "48",
//                             "min_buy_number": 1,
//                             "off_shelves": 0,
//                             "offline_goods_status": 1,
//                             "offline_storage_number": 0,
//                             "offline_storage_status": 1,
//                             "online_storage_number": 0,
//                             "product_id": 273543,
//                             "product_name": "reemoor 亮面尖头蝴蝶结装饰舒卷鞋",
//                             "product_skc": "278787",
//                             "product_skn": "51152207",
//                             "product_sku": "890621",
//                             "promotion_flag": "109",
//                             "promotion_id": "0",
//                             "real_price": 9.9,
//                             "real_vip_price": 9.9,
//                             "sale_price": 0,
//                             "sales_price": 11,
//                             "selected": "Y",
//                             "shop_id": 0,
//                             "shopping_cart_goods_id": "60426",
//                             "shopping_cart_id": "118792348",
//                             "shopping_key": "2a7729e3e974cfe476e4472a89c13743",
//                             "size_id": "116",
//                             "size_name": "40码",
//                             "small_sort_id": "151",
//                             "storage_number": "6",
//                             "store_id": 0,
//                             "str_subtotal": "¥9.90",
//                             "subtotal": 9.9,
//                             "supplier_id": 0,
//                             "tags": [],
//                             "uid": "8040155",
//                             "vip1_price": "10.45",
//                             "vip2_price": "9.90",
//                             "vip3_price": "9.68",
//                             "vip_discount": 0.9,
//                             "vip_discount_money": 1.1,
//                             "vip_discount_type": "1",
//                             "vip_price": 11,
//                             "wareHouseId": 0,
//                             "yoho_coin_num": "0"
//                         }
//                     ],
//                     "pool_title": "reemoor",
//                     "pool_type": 1
//                 }
//             ],
//             "off_shelves_goods_list": [],
//             "price_gift": [],
//             "promotion_info": [
//                 {
//                     "cutdown_amount": 0.9,
//                     "promotion_id": 9088,
//                     "promotion_title": "线下店满3免一勿动",
//                     "promotion_type": "Cheapestfree"
//                 },
//                 {
//                     "cutdown_amount": 3.96,
//                     "promotion_id": 9148,
//                     "promotion_title": "全场促销",
//                     "promotion_type": "Discount"
//                 },
//                 {
//                     "cutdown_amount": 167.94,
//                     "promotion_id": 9086,
//                     "promotion_title": "线下店分件折扣勿动",
//                     "promotion_type": "Degressdiscount"
//                 },
//                 {
//                     "cutdown_amount": 10,
//                     "promotion_id": 0,
//                     "promotion_title": "满¥399免运费",
//                     "promotion_type": "FreeShippingCost"
//                 }
//             ],
//             "shopping_cart_data": {
//                 "discount_amount": 172.8,
//                 "fast_shopping_cost": 5,
//                 "gain_yoho_coin": 0,
//                 "goods_count": 12,
//                 "has_invalid_goods": 0,
//                 "is_multi_package": "N",
//                 "last_order_amount": 729.1,
//                 "offline_goods_count": 0,
//                 "online_goods_count": 0,
//                 "order_amount": 971,
//                 "package_list": [],
//                 "promotion_formula": "总计¥729.10=商品金额¥971.00-活动金额¥172.80-学生优惠¥69.10",
//                 "promotion_formula_list": [
//                     {
//                         "promotion": "商品金额",
//                         "promotion_amount": "¥971.00"
//                     },
//                     {
//                         "promotion": "活动金额",
//                         "promotion_amount": "-¥172.80"
//                     },
//                     {
//                         "promotion": "学生优惠",
//                         "promotion_amount": "-¥69.10"
//                     }
//                 ],
//                 "remain_time": 0,
//                 "selected_goods_count": 12,
//                 "shipping_cost": 0,
//                 "str_discount_amount": "¥172.80",
//                 "str_order_amount": "¥971.00"
//             },
//             "sold_out_goods_list": []
//         }
//     },
//     "md5": "4fd4cbe259627fea6b1c68a0fb6c217a",
//     "message": "cart goods list."
// }))
//     })
        return cartProcess.processData(data);
    });
};

/**
 * 购物车商品选择与取消接口
 *
 * @param int $uid 用户ID
 * @param string $sku 商品sku列表
 * @param string $shoppingKey 未登录用户唯一识别码
 * @return array 购物车接口返回的数据
 */
const selectGood = (uid, sku, shoppingKey) => {
    return api.get('', {
        method: 'app.Shopping.selectedAndQryCart',
        product_sku_list: sku,
        uid: uid,
        shopping_key: shoppingKey
    }).then((data) => {
        return cartProcess.processData(data);
    });
}

/**
 * 移出购物车
 *
 * @param int $uid 用户ID
 * @param string $sku 商品sku列表
 * @param string $shoppingKey 未登录用户唯一识别码
 * @return array 接口返回的数据
 */
const removeFromCart = (uid, sku, shoppingKey) => {
    return api.get('', {
        method: 'app.Shopping.removeAndQryCart',
        product_sku_list: sku,
        uid: uid,
        shopping_key: shoppingKey
    }).then((data) => {
        return cartProcess.processData(data);
    });
}
/**
 * 获取购物车商品数据
 *
 * @param int $uid 用户ID
 * @param int $skn 商品skn
 * @return array 接口返回的数据
 */
const cartProductData = (uid, skn) => {
    return api.get('', {
        method: 'app.product.data',
        product_skn: skn,
        uid: uid,
        showcomment: 'N'
    }).then((data) => {
        return cartProcess.procGoodsDetail(data);
    });
}

/**
 * 修改购物车商品数量-增加
 *
 * @param int $uid 用户ID
 * @param string $sku 商品SKU
 * @param int $increaseNum 增加的数目
 * @param string $shoppingKey 未登录用户唯一识别码
 * @return array 接口返回的数据
 */
const increaseProductNum = (uid, sku, increaseNum, shoppingKey) => {
    return api.get('', {
        method: 'app.Shopping.increase',
        product_sku: sku,
        increase_number: increaseNum,
        uid: uid,
        shopping_key: shoppingKey
    });
}
/**
 * 修改购物车商品数量-减少
 *
 * @param int $uid 用户ID
 * @param string $sku 商品SKU
 * @param int $decreaseNum 减少的数目
 * @param string $shoppingKey 未登录用户唯一识别码
 * @return array 接口返回的数据
 */
const decreaseProductNum = (uid, sku, decreaseNum, shoppingKey) => {
    return api.get('', {
        method: 'app.Shopping.decrease',
        product_sku: sku,
        decrease_number: decreaseNum,
        uid: uid,
        shopping_key: shoppingKey
    });
}

/**
 * 修改购物车商品数据
 *
 * @param int $uid 用户ID
 * @param string $param 要更改的数据
 * @param string $shoppingKey 未登录用户唯一识别码
 * @return array 接口返回的数据
 */
const modifyCartProduct = (uid, param, shoppingKey) => {
    return api.get('', {
        method: 'app.Shopping.swap',
        swap_data: param,
        uid: uid,
        shopping_key: shoppingKey
    });
}
/**
 * 移入收藏夹
 *
 * @param int $uid 用户ID
 * @param string $sku 商品sku列表
 * @return array 接口返回的数据
 */
const addToFav = (uid, sku) => {
    return api.get('', {
        method: 'app.Shopping.addfavoriteAndQryCart',
        product_sku_list: sku,
        uid: uid,
        shopping_key: shoppingKey
    }).then((data) => {
        return cartProcess.processData(data);
    });
}

module.exports = {
    indexData,
    selectGood,
    removeFromCart,
    cartProductData,
    addToFav,
    increaseProductNum,
    decreaseProductNum
}