注塑空箱配送控制

This commit is contained in:
2024-10-12 11:34:57 +08:00
parent 16d0cae943
commit 10d7470b56
4 changed files with 20 additions and 1 deletions

View File

@@ -512,7 +512,7 @@ namespace Tnb.ProductionMgr
string msg = "";
List<EqpEquipment> equipments = await _db.Queryable<EqpEquipType>()
.InnerJoin<EqpEquipment>((x, y) => x.id == y.equip_type_id)
.Where((x, y) => x.code == "ZSJ")
.Where((x, y) => x.code == "ZSJ" && y.is_send==1)
.Select((x, y) => y).ToListAsync();
int cs01Count = await _redisData.TryGetValueByKeyField<int>("YTCS", "EmptyNo_CS01");