配置文件修改;
This commit is contained in:
+4
-2
@@ -441,7 +441,9 @@ public class StockReceiptOrderDomainService {
|
|||||||
* 定时任务整租推送到bms装卸费
|
* 定时任务整租推送到bms装卸费
|
||||||
*/
|
*/
|
||||||
public void wholeRentSynchronizationZXF(Long busId) {
|
public void wholeRentSynchronizationZXF(Long busId) {
|
||||||
StockInOrder stockInOrder = stockInOrderService.getById(busId);
|
StockReceiptOrder stockReceiptOrder = stockReceiptOrderService.getById(busId);
|
||||||
|
String inOrderNumber = stockReceiptOrder.getInOrderNumber();
|
||||||
|
StockInOrder stockInOrder = stockInOrderService.getOne(new QueryWrapper<StockInOrder>().lambda().eq(StockInOrder::getInOrderNumber, inOrderNumber),false);
|
||||||
Long shipperId = stockInOrder.getShipperId();
|
Long shipperId = stockInOrder.getShipperId();
|
||||||
Long organizationId = stockInOrder.getOrganizationId();
|
Long organizationId = stockInOrder.getOrganizationId();
|
||||||
String organizationName = stockInOrder.getOrganizationName();
|
String organizationName = stockInOrder.getOrganizationName();
|
||||||
@@ -454,7 +456,7 @@ public class StockReceiptOrderDomainService {
|
|||||||
if (shipperId == null) {
|
if (shipperId == null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
log.info("开始执行{}", com.alibaba.fastjson.JSONObject.toJSONString(stockInOrder));
|
log.info("开始执行{}", com.alibaba.fastjson.JSONObject.toJSONString(stockReceiptOrder));
|
||||||
BusinessDataPushDTO businessDataPushDTO = new BusinessDataPushDTO();
|
BusinessDataPushDTO businessDataPushDTO = new BusinessDataPushDTO();
|
||||||
businessDataPushDTO.setOrganizationId(organizationId);
|
businessDataPushDTO.setOrganizationId(organizationId);
|
||||||
businessDataPushDTO.setTopOrganizationId(topOrganizationId);
|
businessDataPushDTO.setTopOrganizationId(topOrganizationId);
|
||||||
|
|||||||
Reference in New Issue
Block a user