是否自动付款的取数据问题解决

20230922-ljl-fixBug
wangchaoxu 1 year ago
parent e1c9da2113
commit 8007781862

@ -1151,7 +1151,8 @@ public class PurchaseOrderServiceImpl implements PurchaseOrderService {
} else {
ret.setIsPurchaseLogisticsUpdateToPlatform(dsPurchaseSetting.getIsPurchaseLogisticsUpdateToPlatform());
ret.setDeliveryTimeType(dsPurchaseSetting.getDeliveryTimeType());
ret.setIsAutoPay(dsPurchaseSetting.getIsAutoPay() != 0 && isDsAutoPayWhitelist(shopId) ? 1 : 0);
// ret.setIsAutoPay(dsPurchaseSetting.getIsAutoPay() != 0 && isDsAutoPayWhitelist(shopId) ? 1 : 0);
ret.setIsAutoPay(dsPurchaseSetting.getIsAutoPay() != 0 ? 1 : 0);
ret.setIsAutoPurchase(dsPurchaseSetting.getIsAutoPurchase() != 0 ? 1 : 0);
ret.setDelayPurchaseMinute(dsPurchaseSetting.getDelayPurchaseMinute());
ret.setIsUseForbiddenPurchaseProfit(dsPurchaseSetting.getIsUseForbiddenPurchaseProfit() != 0 ? 1 : 0);

Loading…
Cancel
Save