| | |
| | | 锘縰sing Microsoft.AspNetCore.Components.Forms; |
| | | using Newtonsoft.Json; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Model.Models; |
| | | |
| | | namespace WIDESEA_DTO.Outbound |
| | | { |
| | |
| | | public decimal SplitQuantity { get; set; } |
| | | public string Operator { get; set; } |
| | | } |
| | | 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 CurrentBarcode { get; set; } = string.Empty; |
| | | public decimal AssignQuantity { get; set; } |
| | | } |
| | | |
| | | public class LockInfoDetailDto : Dt_OutStockLockInfo |
| | | { |
| | | public string MaterielName { get; set; } |
| | | public string Unit { get; set; } |
| | | } |
| | | public class MaterielBarcodeValidateOutput : OutputDto |
| | | { |
| | | public bool IsValid { get; set; } |
| | |
| | | public decimal pickQuantity { get; set; } |
| | | public string pickTime { get; set; } = string.Empty; |
| | | } |
| | | |
| | | public class CancelPickingDto |
| | | { |
| | | public string OrderNo { get; set; } |
| | | public string PalletCode { get; set; } |
| | | public string Barcode { get; set; } |
| | | } |
| | | |
| | | public class SplitPackageDto |
| | | { |
| | | public string OrderNo { get; set; } |
| | | public string PalletCode { get; set; } |
| | | public string OriginalBarcode { get; set; } |
| | | public decimal SplitQuantity { get; set; } |
| | | } |
| | | |
| | | public class RevertSplitDto |
| | | { |
| | | public string OriginalBarcode { get; set; } |
| | | } |
| | | } |