From e31ca4e3e1774b7ddb832e8ec498b5ada24b2608 Mon Sep 17 00:00:00 2001
From: pan <antony1029@163.com>
Date: 星期日, 16 十一月 2025 19:13:58 +0800
Subject: [PATCH] 提交
---
项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/OutboundOrderGetDTO.cs | 46 +++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 45 insertions(+), 1 deletions(-)
diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/OutboundOrderGetDTO.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/OutboundOrderGetDTO.cs"
index 88aa0f7..e62e839 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/OutboundOrderGetDTO.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/OutboundOrderGetDTO.cs"
@@ -1,9 +1,11 @@
锘縰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
{
@@ -22,8 +24,25 @@
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; }
@@ -39,6 +58,7 @@
public class DirectOutboundRequest
{
public string PalletCode { get; set; }
+ public string OrderNo { get; set; }
}
public class CancelPickingRequest
@@ -115,7 +135,11 @@
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; }
@@ -213,4 +237,24 @@
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; }
+ }
}
--
Gitblit v1.9.3