| | |
| | | /// <summary> |
| | | /// 收货程序查询料品视图ReceiptMode得出 |
| | | /// </summary> |
| | | public double RcvProcedure { get; set; } |
| | | public int RcvProcedure { get; set; } |
| | | /// <summary> |
| | | /// 存储类型固定传4 |
| | | /// </summary> |
| | | public double StorageType { get; set; } = 4; |
| | | public int StorageType { get; set; } = 4; |
| | | /// <summary> |
| | | /// 收货批号有asn单则带出里面批次,无asn单则按年月日生成8位批号 |
| | | /// </summary> |
| | |
| | | |
| | | #endregion |
| | | |
| | | |
| | | #region 收货单新增行库位 |
| | | |
| | | public class CreateRcvLineLocationInput : U9CBaseInput |
| | | { |
| | | public CreateRcvLineLocationParam RcvLineLocationParam { get; set; } |
| | | } |
| | | |
| | | |
| | | public class CreateRcvLineLocationParam |
| | | { |
| | | /// <summary> |
| | | /// 收货行ID |
| | | /// </summary> |
| | | public long RcvLineId { get; set; } |
| | | /// <summary> |
| | | /// 储位 |
| | | /// </summary> |
| | | public string BinCode { get; set; } |
| | | } |
| | | |
| | | #endregion |
| | | } |