|
@@ -80,6 +80,9 @@ public class RepairBusiness {
|
|
|
ItfTblAssignAppointmentDownloadService itfTblAssignAppointmentDownloadService;
|
|
|
@Resource
|
|
|
OrderRepairDetailService orderRepairDetailService;
|
|
|
+ @Resource
|
|
|
+ OrderRepairService orderRepairService;
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -109,6 +112,11 @@ public class RepairBusiness {
|
|
|
// 提取品牌商对应的系列信息
|
|
|
Map<String, List<SysDictRef>> sysDictRefXiLieMap = publicService.getMap(brand);
|
|
|
|
|
|
+ // 提取品牌商对应的需求大类信息
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefDLMapXq = publicService.getStringListMapXq(brand);
|
|
|
+ // 提取品牌商对应的需求小类信息
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefXLMapXq = publicService.getListMapXq(brand);
|
|
|
+
|
|
|
// 提取待落本地表的数据
|
|
|
repairRec = itfTblAssignDownloadService.lambdaQuery()
|
|
|
.eq(ItfTblAssignDownload::getSynStatus,0)
|
|
@@ -136,11 +144,13 @@ public class RepairBusiness {
|
|
|
if (orderBaselist.contains(String.valueOf(item.getPgid()))){
|
|
|
// 修改
|
|
|
log.info("修改:");
|
|
|
- repairBusiness.updateOrder(brand, sysDictRefDLMap, sysDictRefXLMap, sysDictRefXiLieMap, item);
|
|
|
+ repairBusiness.updateOrder(brand, sysDictRefDLMap, sysDictRefXLMap, sysDictRefXiLieMap, item,
|
|
|
+ sysDictRefDLMapXq, sysDictRefXLMapXq);
|
|
|
} else {
|
|
|
// 新增 TL_SynDataFrom_tbl_assign_batch
|
|
|
log.info("新增:");
|
|
|
- repairBusiness.addOrder(brand, item, sysDictRefDLMap, sysDictRefXLMap, sysDictRefXiLieMap);
|
|
|
+ repairBusiness.addOrder(brand, item, sysDictRefDLMap, sysDictRefXLMap, sysDictRefXiLieMap,
|
|
|
+ sysDictRefDLMapXq, sysDictRefXLMapXq);
|
|
|
orderBaselist.add(String.valueOf(item.getPgid()));
|
|
|
|
|
|
}
|
|
@@ -154,7 +164,12 @@ public class RepairBusiness {
|
|
|
}
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
- public void updateOrder(Brand brand, Map<String, List<SysDictRef>> sysDictRefDLMap, Map<String, List<SysDictRef>> sysDictRefXLMap, Map<String, List<SysDictRef>> sysDictRefXiLieMap, ItfTblAssignDownload item) {
|
|
|
+ public void updateOrder(Brand brand, Map<String, List<SysDictRef>> sysDictRefDLMap,
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefXLMap,
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefXiLieMap,
|
|
|
+ ItfTblAssignDownload item,
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefDLMapXq,
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefXLMapXq) {
|
|
|
List<ItfTblAssignXzydDownload> yds = itfTblAssignXzydDownloadService.lambdaQuery()
|
|
|
.eq(ItfTblAssignXzydDownload::getDownloadTaskNo, item.getDownloadTaskNo()).list();
|
|
|
|
|
@@ -170,7 +185,7 @@ public class RepairBusiness {
|
|
|
// 工单师傅信息更新
|
|
|
upOrderWorker(order);
|
|
|
// 工单扩展信息更新
|
|
|
- getOrderInstall(item, order);
|
|
|
+ getOrderInstall(item, order,sysDictRefDLMapXq, sysDictRefXLMapXq);
|
|
|
// 维修单明细表更新 TL_SynDataFrom_tbl_assign_mx
|
|
|
generateMxUpdate(brand, item, order, sysDictRefDLMap, sysDictRefXLMap, sysDictRefXiLieMap);
|
|
|
// 处理维修单过程反馈(只新增不修改) 放入操作日志表 TL_SynDataFrom_tbl_assign_fkmx
|
|
@@ -472,7 +487,9 @@ public class RepairBusiness {
|
|
|
public void addOrder(Brand brand, ItfTblAssignDownload item,
|
|
|
Map<String, List<SysDictRef>> sysDictRefDLMap,
|
|
|
Map<String, List<SysDictRef>> sysDictRefXLMap,
|
|
|
- Map<String, List<SysDictRef>> sysDictRefXiLieMap) {
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefXiLieMap,
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefDLMapXq,
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefXLMapXq) {
|
|
|
|
|
|
List<ItfTblAssignXzydDownload> yds = itfTblAssignXzydDownloadService.lambdaQuery()
|
|
|
.eq(ItfTblAssignXzydDownload::getDownloadTaskNo,item.getDownloadTaskNo()).list();
|
|
@@ -484,7 +501,7 @@ public class RepairBusiness {
|
|
|
// 处理工单师傅
|
|
|
publicService.getOrderWorker(order);
|
|
|
// 获取工单扩展信息
|
|
|
- getOrderInstall(item, order);
|
|
|
+ getOrderInstall(item, order, sysDictRefDLMapXq, sysDictRefXLMapXq);
|
|
|
// 处理维修单明细表 TL_SynDataFrom_tbl_assign_mx
|
|
|
generateMx(brand, item, order, sysDictRefDLMap, sysDictRefXLMap, sysDictRefXiLieMap);
|
|
|
// 处理维修单过程反馈表 放入操作日志表 TL_SynDataFrom_tbl_assign_fkmx
|
|
@@ -961,19 +978,39 @@ public class RepairBusiness {
|
|
|
orols.add(add);
|
|
|
}
|
|
|
|
|
|
- private void getOrderInstall(ItfTblAssignDownload item, OrderBase order) {
|
|
|
- OrderInstall oit = new OrderInstall();
|
|
|
- oit.setOrderBaseId(order.getId());
|
|
|
- oit.setExtendField1(item.getExtjson1());
|
|
|
- oit.setExtendField2(item.getExtjson2());
|
|
|
- oit.setExtendField3(item.getExtjson3());
|
|
|
- oit.setExtendField4(item.getExtjson4());
|
|
|
- oit.setExtendField5(item.getExtjson5());
|
|
|
- oit.setCreateBy(order.getCreateBy());
|
|
|
- oit.setCreateTime(order.getCreateTime());
|
|
|
- oit.setUpdateBy(order.getUpdateBy());
|
|
|
- oit.setUpdateTime(order.getUpdateTime());
|
|
|
- orderInstallService.saveOrUpdate(oit);
|
|
|
+ private void getOrderInstall(ItfTblAssignDownload item, OrderBase order, Map<String, List<SysDictRef>> sysDictRefDLMapXq,
|
|
|
+ Map<String, List<SysDictRef>> sysDictRefXLMapXq) {
|
|
|
+ OrderRepair or = new OrderRepair();
|
|
|
+ or.setOrderBaseId(order.getId());
|
|
|
+ or.setCxyzm(item.getCxyzm());
|
|
|
+ or.setSffswx(item.getSffswx());
|
|
|
+ or.setChaoshiqe(item.getChaoshiqe());
|
|
|
+ or.setZbby(item.getZbby());
|
|
|
+ or.setZptype(item.getZptype());
|
|
|
+ or.setYhif(item.getYhif());
|
|
|
+ or.setTsdengji(item.getTsdengji());
|
|
|
+ // 需求大类
|
|
|
+ or.setDemandTypeId(sysDictRefXLMapXq.get(String.valueOf(item.getSpid())).get(0).getDictCode());
|
|
|
+ or.setDemandTypeName(sysDictRefXLMapXq.get(String.valueOf(item.getSpid())).get(0).getDictValue());
|
|
|
+
|
|
|
+ // 需求小类
|
|
|
+ if (!item.getXqxiaolei().equals(0L)){
|
|
|
+ or.setDemandSmallTypeId(sysDictRefXLMapXq.get(String.valueOf(item.getXqxiaolei())).get(0).getDictCode());
|
|
|
+ or.setDemandSmallTypeName(sysDictRefXLMapXq.get(String.valueOf(item.getXqxiaolei())).get(0).getDictValue());
|
|
|
+ } else {
|
|
|
+ or.setDemandSmallTypeId("");
|
|
|
+ or.setDemandSmallTypeName("");
|
|
|
+ }
|
|
|
+ or.setExtendField1(item.getExtjson1());
|
|
|
+ or.setExtendField2(item.getExtjson2());
|
|
|
+ or.setExtendField3(item.getExtjson3());
|
|
|
+ or.setExtendField4(item.getExtjson4());
|
|
|
+ or.setExtendField5(item.getExtjson5());
|
|
|
+ or.setCreateBy(order.getCreateBy());
|
|
|
+ or.setCreateTime(order.getCreateTime());
|
|
|
+ or.setUpdateBy(order.getUpdateBy());
|
|
|
+ or.setUpdateTime(order.getUpdateTime());
|
|
|
+ orderRepairService.saveOrUpdate(or);
|
|
|
}
|
|
|
|
|
|
private void generateMx(Brand brand, ItfTblAssignDownload item, OrderBase order,
|