1、修改bug
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -77,7 +77,7 @@ public class PrchOrdDtlDetailsRespVO {
|
||||
* 税码(字典: PRCH_TAX);推送ERP
|
||||
*/
|
||||
|
||||
private BigDecimal taxNum;
|
||||
private String taxNum;
|
||||
/**
|
||||
* 是否基于GR的发票校验;推送ERP
|
||||
*/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -124,6 +124,25 @@ public interface PurchaseOrderService {
|
||||
* @return 结果
|
||||
*/
|
||||
Boolean linkOrder(@Valid LinkOrderReqVO LinkOrderReqVO);
|
||||
|
||||
/**
|
||||
* 获取订单详情
|
||||
*
|
||||
* @param ids 订单id
|
||||
* @return 订单详情
|
||||
*/
|
||||
List<PurchaseOrderDetailsRespVO> getOrderByIds(List<Long> ids);
|
||||
/**
|
||||
* 获取订单详情
|
||||
*
|
||||
* @param orderNos 订单编号
|
||||
* @return 订单详情
|
||||
*/
|
||||
List<PurchaseOrderDO> getOrderByNos(List<String> orderNos);
|
||||
/**
|
||||
* 获取订单详情
|
||||
*
|
||||
* @param ids 订单id
|
||||
* @return 订单详情
|
||||
*/
|
||||
List<PurchaseOrderDO> getOrdersByIds(List<String> ids);
|
||||
}
|
||||
|
||||
@@ -677,4 +677,14 @@ public class PurchaseOrderServiceImpl implements PurchaseOrderService {
|
||||
});
|
||||
return purchaseOrderDetailsRespVOS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PurchaseOrderDO> getOrderByNos(List<String> orderNos) {
|
||||
return purchaseOrderMapper.selectList(PurchaseOrderDO::getSystemOrderNumber, orderNos);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PurchaseOrderDO> getOrdersByIds(List<String> ids) {
|
||||
return purchaseOrderMapper.selectByIds(ids);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user