This commit is contained in:
2024-09-21 09:30:19 +08:00
parent d35203a505
commit 1c04f0449f
4 changed files with 17 additions and 0 deletions

View File

@@ -342,6 +342,11 @@ namespace Tnb.WarehouseMgr
}
}
else
{
throw new AppFriendlyException($"【OutsourcedPartsInstock】点位不存在", 500);
}
// 更新成品调拨入库单子表已下发数量
await _db.Updateable<WmsTransferInstockD>().SetColumns(r => r.xf_qty == r.xf_qty + input.qty).Where(r => r.id == input.source_id).ExecuteCommandAsync();