hotfix: circ dep

pull/8040/head
Gauthier LO 2025-02-21 17:37:43 +01:00
parent 4b51495cda
commit 867a06189a
1 changed files with 0 additions and 3 deletions

View File

@ -60,8 +60,6 @@ public class PurchaseOrderServiceImpl extends ServiceImpl<PurchaseOrderMapper, P
@Autowired
private PlatformOrderMapper platformOrderMapper;
@Autowired
private PlatformOrderShippingInvoiceService platformOrderShippingInvoiceService;
@Autowired
private ISkuService skuService;
@Autowired
private ICurrencyService currencyService;
@ -577,7 +575,6 @@ public class PurchaseOrderServiceImpl extends ServiceImpl<PurchaseOrderMapper, P
Files.copy(template, newInvoice, StandardCopyOption.REPLACE_EXISTING);
PurchaseInvoice pv = new PurchaseInvoice(client, invoiceCode, "Purchase Invoice", purchaseOrderSkuList, promotionDetails, eurToUsd);
pv.toExcelFile(newInvoice);
platformOrderShippingInvoiceService.convertToPdfTest(invoiceCode, "invoice");
return new InvoiceMetaData(filename,invoiceCode, pv.client().getInternalCode(), pv.client().getInvoiceEntity(), "");
}