材料出库、调拨查询重写;采购退料;生成条码接口

This commit is contained in:
2024-08-21 16:58:05 +08:00
parent 75d3148560
commit 24c159fbe8
13 changed files with 804 additions and 99 deletions

View File

@@ -198,10 +198,10 @@ namespace Tnb.WarehouseMgr
{ "checking", 32 },
};
string isCheck = dic2[qcRes].ToString();
await _db.Updateable<WmsCarryH>()
.SetColumns(x => x.is_check == isCheck)
.Where(x => carryIds.Contains(x.id))
.ExecuteCommandAsync();
//await _db.Updateable<WmsCarryH>()
// .SetColumns(x => x.is_check == isCheck)
// .Where(x => carryIds.Contains(x.id))
// .ExecuteCommandAsync();
BasFactoryConfig config = await _db.Queryable<BasFactoryConfig>().FirstAsync(x => x.enabled == 1 && x.key == FactoryConfigConst.BIPURL);