This commit is contained in:
alex
2023-08-15 14:27:10 +08:00
parent e09251ef76
commit 2f3cf868d7
10 changed files with 88 additions and 24 deletions

View File

@@ -54,8 +54,9 @@ namespace Tnb.WarehouseMgr
IBasLocationService basLocationService,
IWareHouseService wareHouseService,
IUserManager userManager,
IBillRullService billRullService
)
IBillRullService billRullService,
ITaskMessageNotify taskMessageNotify
) : base(taskMessageNotify.Writer)
{
_db = repository.AsSugarClient();
_runService = runService;
@@ -191,6 +192,10 @@ namespace Tnb.WarehouseMgr
{
throw;
}
finally
{
await Publish(nameof(IWareHouseService.GenTaskExecute));
}
return await Task.FromResult(true);
}
public override async Task ModifyAsync(WareHouseUpInput input)