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); }