mirror of https://github.com/jeecgboot/jeecg-boot
hotfix: circ dep
parent
4b51495cda
commit
867a06189a
|
@ -60,8 +60,6 @@ public class PurchaseOrderServiceImpl extends ServiceImpl<PurchaseOrderMapper, P
|
||||||
@Autowired
|
@Autowired
|
||||||
private PlatformOrderMapper platformOrderMapper;
|
private PlatformOrderMapper platformOrderMapper;
|
||||||
@Autowired
|
@Autowired
|
||||||
private PlatformOrderShippingInvoiceService platformOrderShippingInvoiceService;
|
|
||||||
@Autowired
|
|
||||||
private ISkuService skuService;
|
private ISkuService skuService;
|
||||||
@Autowired
|
@Autowired
|
||||||
private ICurrencyService currencyService;
|
private ICurrencyService currencyService;
|
||||||
|
@ -577,7 +575,6 @@ public class PurchaseOrderServiceImpl extends ServiceImpl<PurchaseOrderMapper, P
|
||||||
Files.copy(template, newInvoice, StandardCopyOption.REPLACE_EXISTING);
|
Files.copy(template, newInvoice, StandardCopyOption.REPLACE_EXISTING);
|
||||||
PurchaseInvoice pv = new PurchaseInvoice(client, invoiceCode, "Purchase Invoice", purchaseOrderSkuList, promotionDetails, eurToUsd);
|
PurchaseInvoice pv = new PurchaseInvoice(client, invoiceCode, "Purchase Invoice", purchaseOrderSkuList, promotionDetails, eurToUsd);
|
||||||
pv.toExcelFile(newInvoice);
|
pv.toExcelFile(newInvoice);
|
||||||
platformOrderShippingInvoiceService.convertToPdfTest(invoiceCode, "invoice");
|
|
||||||
return new InvoiceMetaData(filename,invoiceCode, pv.client().getInternalCode(), pv.client().getInvoiceEntity(), "");
|
return new InvoiceMetaData(filename,invoiceCode, pv.client().getInternalCode(), pv.client().getInvoiceEntity(), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue