From d3ff338856c26063cd192734b3aa083f4c51e9d1 Mon Sep 17 00:00:00 2001 From: yibo <361071264@qq.com> Date: Wed, 9 May 2018 17:02:17 +0800 Subject: [PATCH] . --- B3ClientService/OfflinRpc/CarcassSaleOutStoreRpc.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/B3ClientService/OfflinRpc/CarcassSaleOutStoreRpc.cs b/B3ClientService/OfflinRpc/CarcassSaleOutStoreRpc.cs index f7c18d2..ceed17f 100644 --- a/B3ClientService/OfflinRpc/CarcassSaleOutStoreRpc.cs +++ b/B3ClientService/OfflinRpc/CarcassSaleOutStoreRpc.cs @@ -68,9 +68,10 @@ namespace BWP.B3ClientService.Rpcs var entity = new CarcassFullInfo(); entity.BarCode = obj.BarCode; entity.PickWeight = obj.Weight; - entity.PickGroupID = obj.GroupID; entity.PickTime = obj.Time; entity.SaleGoods_ID = GetGoodsID(obj.SaleGoods_Code, session); + if (obj.ProductBatch_ID.HasValue) + entity.ProductBatch_ID = obj.ProductBatch_ID; entity.PickType = 领用类型.白条销售; session.Insert(entity); }