|
@@ -19,6 +19,8 @@ public class RepairCustomerService {
|
|
@Autowired
|
|
@Autowired
|
|
ICustomerService customerService;
|
|
ICustomerService customerService;
|
|
@Autowired
|
|
@Autowired
|
|
|
|
+ ICustomerAddressService customerAddressService;
|
|
|
|
+ @Autowired
|
|
IRepairService repairService;
|
|
IRepairService repairService;
|
|
@Autowired
|
|
@Autowired
|
|
IRepairLogService repairLogService;
|
|
IRepairLogService repairLogService;
|
|
@@ -111,4 +113,8 @@ public class RepairCustomerService {
|
|
repairService.updateInvoiceStatus(param.getRepairId());
|
|
repairService.updateInvoiceStatus(param.getRepairId());
|
|
|
|
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public Object getInvoiceAddress(String repairId) {
|
|
|
|
+ return customerAddressService.getByRepairId(repairId);
|
|
|
|
+ }
|
|
}
|
|
}
|