1
yangpeixing
2026-02-04 dccc001554c6c5376482df77f929c0d49b258844
WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Stock/StockInfoController.cs
@@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEA_Core;
using WIDESEA_Core.BaseController;
using WIDESEA_DTO.Stock;
using WIDESEA_IBasicRepository;
@@ -34,5 +35,17 @@
        {
            return Service.Repository.GetPalletStockInfo(roadwayNo);
        }
        [HttpPost, Route("GetStockDetails"), AllowAnonymous]
        public WebResponseContent GetStockDetails([FromBody] SaveModel saveModel)
        {
            return Service.Repository.GetStockDetails(saveModel);
        }
        [HttpPost, Route("UpdateGetStockDetails"), AllowAnonymous]
        public WebResponseContent UpdateGetStockDetails([FromBody] SaveModel saveModel)
        {
            return Service.Repository.UpdateGetStockDetails(saveModel);
        }
    }
}