From b7f53ba61fbc1844d7b92ff852762b140d46ab54 Mon Sep 17 00:00:00 2001 From: huanghongfeng <huanghongfeng@hnkhzn.com> Date: 星期一, 23 六月 2025 19:58:16 +0800 Subject: [PATCH] 最新 --- 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs | 38 +++++++++++++++++++++++++++++++++++++- 1 files changed, 37 insertions(+), 1 deletions(-) diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs" index 6c574e7..965e756 100644 --- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs" +++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs" @@ -15,6 +15,8 @@ *----------------------------------------------------------------*/ #endregion << 鐗� 鏈� 娉� 閲� >> +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.RazorPages; using SqlSugar; using System; using System.Collections.Generic; @@ -38,7 +40,7 @@ WebResponseContent GenerateInboundTask(string stationCode, int taskType, string palletCode); WebResponseContent InboundRequest(string stationCode, string palletCode); - WebResponseContent TaskCompleted(int taskNum); + WebResponseContent TaskCompleted(int taskNum, int HowWorks); WebResponseContent GenerateOutboundTask(int orderDetailId, List<StockSelectViewDTO> stockSelectViews); @@ -49,5 +51,39 @@ WebResponseContent CallMateriel(string endPoint); WebResponseContent MaterielCarry(string startPoint); + WebResponseContent IsRelocations(int TaskNum, string SourceAddress); + + WebResponseContent GenerateInventoryInformation(GenerateInv generate); + WebResponseContent ManualOutbound(SaveModel saveModel); + WebResponseContent ManualOutbound2(SaveModel saveModel); + WebResponseContent ManualOutbound3(SaveModel saveModel); + WebResponseContent ManualOutbound4(SaveModel saveModel); + WebResponseContent ManualOutboundDeleteinventory(SaveModel saveModel); + WebResponseContent Empty_outbound(GenerateInv generate); + WebResponseContent Queryinventory(GenerateInv generate); + WebResponseContent PalletQueryinventory(); + WebResponseContent RelocationInTaskCompleted(Dt_Task task); + WebResponseContent Rawmaterialout(GenerateInv3 generate); + WebResponseContent Cancelinventory(int taskNum); + + public class GenerateInv + { + public string SourceAddress { get; set; } + public string PalletCode { get; set; } + } + + public class GenerateInv2 + { + public string PalletCode { get; set; } + public string SourceAddress { get; set; } + public string TargetAddress { get; set; } + } + + public class GenerateInv3 + { + public string PalletCode { get; set; } + public int outCount { get; set; } + public string TargetAddress { get; set; } + } } } -- Gitblit v1.9.3