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

            IStockServer stockServer = new StockServerImpl(g_dbHelper, g_logServer);

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