From d0e23ebc20cea58bdaa8c6a39ed95d7a6156e6fc Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 28 九月 2020 16:25:19 +0800 Subject: [PATCH] 1111 媒体卡发放邮件物品支持配置是否拍品,默认0非拍品; --- Tool/WebCenter/CouponCode/webapp.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Tool/WebCenter/CouponCode/webapp.py b/Tool/WebCenter/CouponCode/webapp.py index 4a14c28..2468ab8 100644 --- a/Tool/WebCenter/CouponCode/webapp.py +++ b/Tool/WebCenter/CouponCode/webapp.py @@ -394,7 +394,7 @@ for itemList in Items: pack_data["ItemID%s"%i] = str(itemList[0]) pack_data["ItemCnt%s"%i] = str(itemList[1]) - pack_data["IsBind%s"%i] = '1' + pack_data["IsBind%s"%i] = str(itemList[2] if len(itemList) > 2 else 0) i += 1 pack_data["pack_type"] = "GMT_AddPersonalCompensation" -- Gitblit v1.8.0