yibo 7 years ago
parent
commit
d3ff338856
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      B3ClientService/OfflinRpc/CarcassSaleOutStoreRpc.cs

+ 2
- 1
B3ClientService/OfflinRpc/CarcassSaleOutStoreRpc.cs View File

@ -68,9 +68,10 @@ namespace BWP.B3ClientService.Rpcs
var entity = new CarcassFullInfo(); var entity = new CarcassFullInfo();
entity.BarCode = obj.BarCode; entity.BarCode = obj.BarCode;
entity.PickWeight = obj.Weight; entity.PickWeight = obj.Weight;
entity.PickGroupID = obj.GroupID;
entity.PickTime = obj.Time; entity.PickTime = obj.Time;
entity.SaleGoods_ID = GetGoodsID(obj.SaleGoods_Code, session); entity.SaleGoods_ID = GetGoodsID(obj.SaleGoods_Code, session);
if (obj.ProductBatch_ID.HasValue)
entity.ProductBatch_ID = obj.ProductBatch_ID;
entity.PickType = .; entity.PickType = .;
session.Insert(entity); session.Insert(entity);
} }


Loading…
Cancel
Save