增加预任务的点位ID和点位编号,更改任务执行字段

This commit is contained in:
FanLian
2023-08-01 10:49:30 +08:00
parent e8e590ba1b
commit d6c33d91c1
20 changed files with 115 additions and 2 deletions

View File

@@ -106,6 +106,10 @@ namespace Tnb.WarehouseMgr
preTask.endlocation_code = ePoint?.location_code!;
preTask.start_floor = sPoint?.floor.ToString();
preTask.end_floor = ePoint?.floor.ToString();
preTask.startpoint_id = sPoint?.id!;
preTask.startpoint_code = sPoint?.point_code!;
preTask.endpoint_id = ePoint?.id!;
preTask.endpoint_code = ePoint?.point_code!;
preTask.bill_code = _billRullService.GetBillNumber(WmsWareHouseConst.WMS_PRETASK_H_ENCODE).GetAwaiter().GetResult();
preTask.status = WmsWareHouseConst.PRETASK_BILL_STATUS_DXF_ID;
preTask.biz_type = WmsWareHouseConst.BIZTYPE_WMSEMPTYINSTOCK_ID;