1
wankeda
2026-02-04 06bc8ee02717f3ee80483d15a52c753cb6df9432
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);
        }
    }
}