public async Task <IActionResult> GetStockInDetail([FromQuery] StockInDetailModel model)
        {
            if (!ModelState.IsValid)
            {
                return(GetModelErrorCode());
            }
            reqmodel <StockInDetailModel> reqmodel = await RequestPackingAsync(model);

            IStockServer stockServer = new StockServerImpl(g_dbHelper, g_logServer);

            return(await stockServer.GetStockInDetailAsync(reqmodel));
        }