|
|
|
@ -58,6 +58,7 @@ namespace BWP.B3ClientService.Rpcs |
|
|
|
update.Columns.Add(new DQUpdateColumn("SaleGoods_ID", goodsID)); |
|
|
|
update.Columns.Add(new DQUpdateColumn("PickWeight", obj.Weight)); |
|
|
|
update.Columns.Add(new DQUpdateColumn("PickTime", obj.Time)); |
|
|
|
update.Columns.Add(new DQUpdateColumn("PickNumber", obj.Number)); |
|
|
|
if (obj.ProductBatch_ID.HasValue) |
|
|
|
update.Columns.Add(new DQUpdateColumn("ProductBatch_ID", obj.ProductBatch_ID)); |
|
|
|
update.Columns.Add(new DQUpdateColumn("PickType", 领用类型.白条销售)); |
|
|
|
@ -96,6 +97,7 @@ namespace BWP.B3ClientService.Rpcs |
|
|
|
update.Columns.Add(new DQUpdateColumn("Weight", item.Weight)); |
|
|
|
update.Columns.Add(new DQUpdateColumn("OutStoreTime", item.Time)); |
|
|
|
update.Columns.Add(new DQUpdateColumn("PickType", 领用类型.白条销售)); |
|
|
|
update.Columns.Add(new DQUpdateColumn("PickNumber", item.Number)); |
|
|
|
update.Where.Conditions.Add(DQCondition.EQ("BarCode", item.BarCode)); |
|
|
|
session.ExecuteNonQuery(update); |
|
|
|
} |
|
|
|
@ -129,6 +131,7 @@ namespace BWP.B3ClientService.Rpcs |
|
|
|
public DateTime? Time { get; set; } |
|
|
|
public string SaleGoods_Code { get; set; } |
|
|
|
public long? ProductBatch_ID { get; set; } |
|
|
|
public decimal? Number { get; set; } |
|
|
|
} |
|
|
|
|
|
|
|
class MinCarcassSaleOutObj |
|
|
|
|