From 2a32dfbf5fe3b484d1ef6849cd8e322faa70ce14 Mon Sep 17 00:00:00 2001 From: wankeda <Administrator@DESKTOP-HAU3ST3> Date: 星期六, 20 九月 2025 16:58:20 +0800 Subject: [PATCH] 入库流程 --- 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/PalletCodeInfoController.cs | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/PalletCodeInfoController.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/PalletCodeInfoController.cs" index beb05d9..7b617f2 100644 --- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/PalletCodeInfoController.cs" +++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/PalletCodeInfoController.cs" @@ -14,6 +14,28 @@ public PalletCodeInfoController(IPalletCodeInfoService service) : base(service) { } + /// <summary> + /// + /// </summary> + /// <param name="warehouseId"></param> + /// <param name="count"></param> + /// <param name="palletTypeId"></param> + /// <returns></returns> + [HttpPost, Route("AddPalletCodeData")] + public WebResponseContent AddData(int warehouseId, int count, int palletTypeId) + { + return Service.AddData(warehouseId, count, palletTypeId); + } + /// <summary> + /// + /// </summary> + /// <param name="printCode"></param> + /// <returns></returns> + [HttpPost, Route("PrintStatusUp")] + public WebResponseContent PrintStatusUp(string printCode) + { + return Service.PrintStatusUp(printCode); + } } } -- Gitblit v1.9.3