Browse Source

修改同步逻辑

qianyi
shanji 2 years ago
parent
commit
4aeefeda8a
  1. 2
      BBWY.Server.Business/Sync/OrderSyncBusiness.cs

2
BBWY.Server.Business/Sync/OrderSyncBusiness.cs

@ -607,7 +607,7 @@ namespace BBWY.Server.Business
.SetIf(orderTotalPrice != dbOrder.OrderTotalPrice, o => o.OrderTotalPrice, orderTotalPrice)
.SetIf(orderTotalPrice != dbOrder.OrderTotalPrice && orderTotalPrice > 0M, o => o.IsGift, false)
.SetIf(storeOrder != dbOrder.StoreOrder, o => o.StoreOrder, storeOrder)
.SetIf(storeOrder != dbOrder.StoreOrder, o => o.StorageType, ConvertStoreOrder(storeOrder));
.SetIf(storeOrder != dbOrder.StoreOrder, o => o.StorageType, storageType);
updateOrderList.Add(updateSql);
}
#endregion

Loading…
Cancel
Save