生产退料开发等
This commit is contained in:
@@ -15,6 +15,7 @@ using Tnb.EquipMgr.Entities;
|
||||
using Tnb.ProductionMgr.Entities;
|
||||
using Tnb.ProductionMgr.Entities.Dto;
|
||||
using Tnb.ProductionMgr.Interfaces;
|
||||
using Tnb.WarehouseMgr;
|
||||
using Tnb.WarehouseMgr.Entities;
|
||||
using Tnb.WarehouseMgr.Entities.Dto.Inputs;
|
||||
using Tnb.WarehouseMgr.Interfaces;
|
||||
@@ -34,6 +35,7 @@ namespace Tnb.ProductionMgr
|
||||
private readonly IBillRullService _billRullService;
|
||||
private readonly IDictionaryDataService _dictionaryDataService;
|
||||
private readonly IWmsCarryBindService _wmsCarryBindService;
|
||||
private readonly IWmsCarryUnbindService _wmsCarryUnbindService;
|
||||
// private readonly WmsSignForDeliveryService _wmsSignForDeliveryService;
|
||||
|
||||
|
||||
@@ -45,6 +47,7 @@ namespace Tnb.ProductionMgr
|
||||
// WmsSignForDeliveryService wmsSignForDeliveryService,
|
||||
IDictionaryDataService dictionaryDataService,
|
||||
IWmsCarryBindService wmsCarryBindService,
|
||||
IWmsCarryUnbindService wmsCarryUnbindService,
|
||||
IUserManager userManager
|
||||
)
|
||||
{
|
||||
@@ -55,6 +58,7 @@ namespace Tnb.ProductionMgr
|
||||
_dictionaryDataService = dictionaryDataService;
|
||||
_billRullService = billRullService;
|
||||
_wmsCarryBindService = wmsCarryBindService;
|
||||
_wmsCarryUnbindService = wmsCarryUnbindService;
|
||||
}
|
||||
|
||||
|
||||
@@ -457,7 +461,7 @@ namespace Tnb.ProductionMgr
|
||||
|
||||
_ = await db.Insertable<PrdFeedingH>(prdFeedingH).ExecuteCommandAsync();
|
||||
_ = await db.Insertable<PrdFeedingD>(list).ExecuteCommandAsync();
|
||||
_wmsCarryBindService.CarryCodeUnbind(new CarryCodeUnbindInput()
|
||||
_wmsCarryUnbindService.CarryCodeUnbind(new CarryCodeUnbindInput()
|
||||
{
|
||||
carry_id = carry.id
|
||||
});
|
||||
|
||||
@@ -106,6 +106,7 @@ namespace Tnb.ProductionMgr
|
||||
private readonly IBillRullService _billRullService;
|
||||
private readonly IWareHouseService _wareHouseService;
|
||||
private readonly IWmsCarryBindService _wmsCarryBindService;
|
||||
private readonly IWmsCarryUnbindService _wmsCarryUnbindService;
|
||||
private readonly IWmsEmptyOutstockService _wmsEmptyOutstockService;
|
||||
|
||||
private readonly ElevatorControlConfiguration _eleCtlCfg = App.Configuration.Build<ElevatorControlConfiguration>();
|
||||
@@ -114,7 +115,8 @@ namespace Tnb.ProductionMgr
|
||||
|
||||
#region 构造函数
|
||||
public RedisBackGround(StackExRedisHelper redisData, IPrdInstockService prdInstockService, ISqlSugarRepository<RedisReadConfig> repository, IWmsPDAScanInStockService wmsPDAScanInStock
|
||||
, IUserManager userManager, IBillRullService billRullService, IWareHouseService wareHouseService, IWmsCarryBindService wmsCarryBindService, IWmsEmptyOutstockService wmsEmptyOutstockService)
|
||||
, IUserManager userManager, IBillRullService billRullService, IWareHouseService wareHouseService, IWmsCarryBindService wmsCarryBindService,
|
||||
IWmsCarryUnbindService wmsCarryUnbindService, IWmsEmptyOutstockService wmsEmptyOutstockService)
|
||||
{
|
||||
_redisData = redisData;
|
||||
_prdInstockService = prdInstockService;
|
||||
@@ -125,6 +127,7 @@ namespace Tnb.ProductionMgr
|
||||
_wareHouseService = wareHouseService;
|
||||
_wmsCarryBindService = wmsCarryBindService;
|
||||
_wmsEmptyOutstockService = wmsEmptyOutstockService;
|
||||
_wmsCarryUnbindService = wmsCarryUnbindService;
|
||||
|
||||
db_CheckGettimer = repository.CopyNew();
|
||||
db_Scantimer = repository.CopyNew();
|
||||
@@ -1456,7 +1459,7 @@ where carry_code = '{coderesult}' and status = '{WmsWareHouseConst.TASK_BILL_STA
|
||||
carryBindInput.carry_code = wmsMechanicalArmH.rackcode;
|
||||
carryBindInput.source_code = wmsMechanicalArmH.outbill;
|
||||
|
||||
await _wmsCarryBindService.CarryUnbind(carryBindInput);
|
||||
await _wmsCarryUnbindService.CarryUnbind(carryBindInput);
|
||||
|
||||
// 锁住终点库位
|
||||
await db_Floor2timer移走下升降区未生成预任务且空托的料架.Updateable<BasLocation>(r => new BasLocation
|
||||
|
||||
Reference in New Issue
Block a user