|
@@ -7,6 +7,7 @@ import com.alibaba.fastjson.JSON;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.jkcredit.invoice.annotation.LoginRequired;
|
|
|
import com.jkcredit.invoice.mapper.customer.CustomerRecMapper;
|
|
|
+import com.jkcredit.invoice.mapper.waybill.SellCarTradeMapper;
|
|
|
import com.jkcredit.invoice.model.entity.calculate.SelfCarCalculateInfor;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerCarRec;
|
|
|
import com.jkcredit.invoice.model.entity.customer.CustomerRec;
|
|
@@ -56,7 +57,8 @@ public class SelfCarController {
|
|
|
SelfCarInvoiceService selfCarInvoiceService;
|
|
|
@Autowired
|
|
|
SelfCarCalculateInfoService selfCarCalculateInfoService;
|
|
|
-
|
|
|
+ @Autowired
|
|
|
+ SellCarTradeMapper sellCarTradeMapper;
|
|
|
@Autowired
|
|
|
CustomerService customerService;
|
|
|
/**
|
|
@@ -147,6 +149,7 @@ public class SelfCarController {
|
|
|
return new RespR(false,e.getMessage());
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* 分页查询自有车交易信息
|
|
|
*
|
|
@@ -156,9 +159,14 @@ public class SelfCarController {
|
|
|
@PostMapping("/updateTrades")
|
|
|
@ApiOperation(value="更新交易id状态", notes="更新交易id状态")
|
|
|
@LoginRequired
|
|
|
- public void updateTrades( String selfCarTradesStr) {
|
|
|
+ public void updateTrades( String selfCarTradesStr,String companyName) {
|
|
|
try {
|
|
|
+
|
|
|
List<SelfCarTrade> selfCarTrades = JSON.parseArray(selfCarTradesStr,SelfCarTrade.class);
|
|
|
+ if(selfCarTrades== null || selfCarTrades.size()==0){
|
|
|
+ selfCarTrades = sellCarTradeMapper.selectByStatus("2",companyName);
|
|
|
+
|
|
|
+ }
|
|
|
selfCarTradeService.updateTrades(selfCarTrades);
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|