重启定时任务

This commit is contained in:
alex
2023-08-15 16:46:41 +08:00
parent 7152bbddb3
commit 0b23512a57
5 changed files with 105 additions and 40 deletions

View File

@@ -246,6 +246,10 @@ namespace Tnb.WarehouseMgr
kittingOut.carry_id = kittingIn.carry_id;
kittingOut.carry_code = kittingIn.carry_code;
await _db.Updateable(kittingOut).UpdateColumns(it => new { it.status, it.carry_id, it.carry_code }).ExecuteCommandAsync();
//if (kittingOut.status == WmsWareHouseConst.BILLSTATUS_TOBESHIPPED_ID)
//{
// await Publish(nameof(IWmskittingOutService.KittingOutByIsToBeShipped));
//}
}
}