Commit e641fb57 authored by jiaorz's avatar jiaorz

发票

parent c192d1c0
...@@ -111,7 +111,10 @@ public class OrderInvoiceBiz extends BaseBiz<OrderInvoiceMapper, OrderInvoice> { ...@@ -111,7 +111,10 @@ public class OrderInvoiceBiz extends BaseBiz<OrderInvoiceMapper, OrderInvoice> {
invoiceVo.setPurchaserTaxCode(newValue.getTaxCode()); invoiceVo.setPurchaserTaxCode(newValue.getTaxCode());
invoiceVo.setRemark(newValue.getContentRemark()); invoiceVo.setRemark(newValue.getContentRemark());
invoiceVo.setOrderInvoiceId(newValue.getId()); invoiceVo.setOrderInvoiceId(newValue.getId());
thirdFeign.invoicing(invoiceVo); ObjectRestResponse objectRestResponse = thirdFeign.invoicing(invoiceVo);
if (!objectRestResponse.isRel()) {
return objectRestResponse;
}
//更新订单状态 //更新订单状态
for (int a = 0; a <= orderIdArray.length - 1; a ++) { for (int a = 0; a <= orderIdArray.length - 1; a ++) {
String orderId = StringUtils.isBlank(orderIdArray[a]) ? "0" : orderIdArray[a]; String orderId = StringUtils.isBlank(orderIdArray[a]) ? "0" : orderIdArray[a];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment