sjz
2025-11-11 7f90b7f3e67434faaad969d5f459c4e681d23bd9
新增调拨主表字段
已修改2个文件
7 ■■■■■ 文件已修改
WebApi/Gs.Warehouse/Services/MesInvItemMovesManager.cs 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebApi/Gs.Warehouse/Services/VArrivalBarcodeManager.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebApi/Gs.Warehouse/Services/MesInvItemMovesManager.cs
@@ -149,6 +149,7 @@
        string dchzlx = model.dchzlx;//调出货主类型
        string drhzlx = model.drhzlx;//调入货主类型
        string inRemark = model.inRemark;//备注
        string gdhb = model.gdhb;
        var _sb = new StringBuilder();
        var _split = "|";
        foreach (var m in model.list)
@@ -197,7 +198,8 @@
                        new("@drhzlx", drhzlx),
                        new("@inRemark", inRemark),
                        new("@inEdtUserGuid", _userGuid),
                        new("@inLineList", _sb.ToString())
                        new("@inLineList", _sb.ToString()),
                        new("@gdbh",gdhb)
                };
                    parameters[0].Direction = ParameterDirection.Output;
                    parameters[1].Direction = ParameterDirection.Output;
WebApi/Gs.Warehouse/Services/VArrivalBarcodeManager.cs
@@ -58,8 +58,7 @@
        try
        {
            dset = DbHelperSQL.RunProcedure("prc_dhtm_list", parameters, "0");
            if (dset != null && dset.Tables.Count > 0 &&
                dset.Tables[0].Rows.Count > 0) //有数据
            if (dset != null && dset.Tables.Count > 0 && dset.Tables[0].Rows.Count > 0) //有数据
            {
                var intTotal =
                    int.Parse(dset.Tables[1].Rows[0]["intTotal"].ToString());