| | |
| | | using Microsoft.AspNetCore.Components.Forms; |
| | | using Newtonsoft.Json; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | |
| | | public int pageNo { get; set; } |
| | | |
| | | } |
| | | // æå
é¾DTO |
| | | public class SplitPackageChainDto |
| | | { |
| | | public int Id { get; set; } |
| | | public DateTime SplitTime { get; set; } |
| | | public string Operator { get; set; } |
| | | public string OriginalBarcode { get; set; } |
| | | public string NewBarcode { get; set; } |
| | | public decimal SplitQty { get; set; } |
| | | public decimal RemainQuantity { get; set; } |
| | | public bool IsReverted { get; set; } |
| | | public DateTime? RevertTime { get; set; } |
| | | public int? PreviousSplitRecordId { get; set; } |
| | | |
| | | public int NewLockInfoId { get; set; } |
| | | public int Status { get; set; } |
| | | } |
| | | // æå
è¯·æ± |
| | | public class SplitPackageRequest |
| | | { |
| | |
| | | } |
| | | public class ConfirmPickingDto |
| | | { |
| | | [JsonProperty("orderNo")] |
| | | public string OrderNo { get; set; } |
| | | [JsonProperty("palletCode")] |
| | | public string PalletCode { get; set; } |
| | | [JsonProperty("barcode")] |
| | | public string Barcode { get; set; } |
| | | } |
| | | public class SummaryPickingDto |
| | | { |
| | | |
| | | public string PalletCode { get; set; } |
| | | public string MaterielCode { get; set; } |
| | | public int UnpickedCount { get; set; } |
| | | public decimal UnpickedQuantity { get; set; } |
| | | public int pickedCount { get; set; } |
| | | |
| | | } |
| | | public class PickingConfirmRequest |
| | | { |
| | | public int OrderDetailId { get; set; } |
| | |
| | | public class DirectOutboundRequest |
| | | { |
| | | public string PalletCode { get; set; } |
| | | public string OrderNo { get; set; } |
| | | } |
| | | |
| | | public class CancelPickingRequest |
| | |
| | | public string PalletCode { get; set; } |
| | | public string OriginalBarcode { get; set; } |
| | | public decimal SplitQuantity { get; set; } |
| | | public string MaterielCode { get; set; } |
| | | } |
| | | |
| | | public class RevertSplitDto |
| | | { |
| | | public string OriginalBarcode { get; set; } |
| | | } |
| | | |
| | | // æå
ç»æç±» |
| | | public class SplitResult |
| | | { |
| | | public string OriginalBarcode { get; set; } |
| | | public string NewBarcode { get; set; } |
| | | public decimal SplitQuantity { get; set; } |
| | | public decimal RemainQuantity { get; set; } |
| | | } |
| | | } |