use of com.axelor.apps.stock.db.StockMove in project axelor-open-suite by axelor.
the class SaleOrderStockServiceImpl method createStocksMovesFromSaleOrder.
@Override
@Transactional(rollbackOn = { Exception.class })
public List<Long> createStocksMovesFromSaleOrder(SaleOrder saleOrder) throws AxelorException {
if (!this.isSaleOrderWithProductsToDeliver(saleOrder)) {
return null;
}
if (saleOrder.getStockLocation() == null) {
throw new AxelorException(saleOrder, TraceBackRepository.CATEGORY_CONFIGURATION_ERROR, I18n.get(IExceptionMessage.SO_MISSING_STOCK_LOCATION), saleOrder.getSaleOrderSeq());
}
List<Long> stockMoveList = new ArrayList<>();
Map<LocalDate, List<SaleOrderLine>> saleOrderLinePerDateMap = getAllSaleOrderLinePerDate(saleOrder);
for (LocalDate estimatedDeliveryDate : saleOrderLinePerDateMap.keySet().stream().filter(x -> x != null).sorted((x, y) -> x.compareTo(y)).collect(Collectors.toList())) {
List<SaleOrderLine> saleOrderLineList = saleOrderLinePerDateMap.get(estimatedDeliveryDate);
Optional<StockMove> stockMove = createStockMove(saleOrder, estimatedDeliveryDate, saleOrderLineList);
stockMove.map(StockMove::getId).ifPresent(stockMoveList::add);
}
Optional<List<SaleOrderLine>> saleOrderLineList = Optional.ofNullable(saleOrderLinePerDateMap.get(null));
if (saleOrderLineList.isPresent()) {
Optional<StockMove> stockMove = createStockMove(saleOrder, null, saleOrderLineList.get());
stockMove.map(StockMove::getId).ifPresent(stockMoveList::add);
}
return stockMoveList;
}
use of com.axelor.apps.stock.db.StockMove in project axelor-open-suite by axelor.
the class SaleOrderWorkflowServiceSupplychainImpl method completeSaleOrder.
@Override
@Transactional(rollbackOn = { AxelorException.class, RuntimeException.class })
public void completeSaleOrder(SaleOrder saleOrder) throws AxelorException {
if (!Beans.get(AppSupplychainService.class).isApp("supplychain")) {
super.completeSaleOrder(saleOrder);
return;
}
List<StockMove> stockMoves = Beans.get(StockMoveRepository.class).all().filter("self.originId = ? AND self.originTypeSelect = ?", saleOrder.getId(), "com.axelor.apps.sale.db.SaleOrder").fetch();
if (!stockMoves.isEmpty()) {
for (StockMove stockMove : stockMoves) {
Integer statusSelect = stockMove.getStatusSelect();
if (statusSelect == StockMoveRepository.STATUS_DRAFT || statusSelect == StockMoveRepository.STATUS_PLANNED) {
throw new AxelorException(TraceBackRepository.CATEGORY_INCONSISTENCY, I18n.get(IExceptionMessage.SALE_ORDER_COMPLETE_MANUALLY));
}
}
}
super.completeSaleOrder(saleOrder);
}
use of com.axelor.apps.stock.db.StockMove in project axelor-open-suite by axelor.
the class DeclarationOfExchangesExporterGoods method exportLineToCsv.
protected String[] exportLineToCsv(StockMoveLine stockMoveLine, int lineNum) throws AxelorException {
String[] data = new String[columnHeadersList.size()];
StockMove stockMove = stockMoveLine.getStockMove();
String customsCode = stockMoveLine.getCustomsCode();
Product product = stockMoveLine.getProduct();
if (StringUtils.isBlank(customsCode)) {
if (product == null) {
customsCode = I18n.get("Product is missing.");
}
if (product != null && product.getCustomsCodeNomenclature() != null) {
customsCode = product.getCustomsCodeNomenclature().getCode();
}
if (StringUtils.isBlank(customsCode)) {
customsCode = String.format(I18n.get("Customs code nomenclature is missing on product %s."), product.getCode());
}
}
BigDecimal fiscalValue = stockMoveLine.getCompanyUnitPriceUntaxed().multiply(stockMoveLine.getRealQty()).setScale(0, RoundingMode.HALF_UP);
// Only positive fiscal value should be take into account
if (fiscalValue.compareTo(BigDecimal.ZERO) <= 0) {
return new String[0];
}
Regime regime = stockMoveLine.getRegime();
if (regime == null) {
if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_OUTGOING) {
regime = Regime.EXONERATED_SHIPMENT_AND_TRANSFER;
} else if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_INCOMING) {
regime = Regime.INTRACOMMUNITY_ACQUISITION_TAXABLE_IN_FRANCE;
}
}
BigDecimal totalNetMass = stockMoveLine.getTotalNetMass().setScale(0, RoundingMode.HALF_UP);
BigInteger supplementaryUnit = stockMoveLine.getRealQty().setScale(0, RoundingMode.CEILING).toBigInteger();
NatureOfTransaction natTrans = stockMoveLine.getNatureOfTransaction();
if (natTrans == null) {
natTrans = stockMove.getIsReversion() ? NatureOfTransaction.RETURN_OF_GOODS : NatureOfTransaction.FIRM_PURCHASE_OR_SALE;
}
ModeOfTransport modeOfTransport = stockMove.getModeOfTransport();
if (modeOfTransport == null) {
modeOfTransport = ModeOfTransport.CONSIGNMENTS_BY_POST;
}
String srcDstCountry;
String dept;
try {
Address partnerAddress = stockMoveToolService.getPartnerAddress(stockMoveLine.getStockMove());
srcDstCountry = partnerAddress.getAddressL7Country().getAlpha2Code();
} catch (AxelorException e) {
srcDstCountry = e.getMessage();
}
try {
Address companyAddress = stockMoveToolService.getCompanyAddress(stockMoveLine.getStockMove());
dept = companyAddress.getCity().getDepartment().getCode();
} catch (AxelorException e) {
dept = e.getMessage();
}
String countryOrigCode;
if (stockMoveLine.getCountryOfOrigin() != null) {
countryOrigCode = stockMoveLine.getCountryOfOrigin().getAlpha2Code();
} else {
if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_INCOMING) {
countryOrigCode = srcDstCountry;
} else {
countryOrigCode = "";
}
}
String taxNbr;
if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_OUTGOING && stockMoveLine.getRegime() != Regime.OTHER_EXPEDITIONS) {
if (stockMove.getPartner() == null) {
taxNbr = String.format(I18n.get("Partner is missing on stock move %s."), stockMove.getName());
} else if (StringUtils.isBlank(stockMove.getPartner().getTaxNbr())) {
taxNbr = String.format(I18n.get("Tax number is missing on partner %s."), stockMove.getPartner().getName());
} else {
taxNbr = stockMove.getPartner().getTaxNbr();
}
} else {
taxNbr = "";
}
String partnerSeq = "";
if (stockMove.getPartner() != null) {
partnerSeq = stockMove.getPartner().getPartnerSeq();
}
String productCode = "";
String productName = "";
if (product != null) {
productCode = product.getCode();
productName = product.getName();
}
String invoiceId = "";
Set<Invoice> invoiceSet = stockMove.getInvoiceSet();
if (invoiceSet != null) {
for (Invoice invoice : invoiceSet) {
if (invoice.getStatusSelect() == InvoiceRepository.STATUS_VENTILATED) {
invoiceId += invoice.getInvoiceId() + "|";
}
}
if (invoiceId != null && !invoiceId.isEmpty()) {
invoiceId = invoiceId.substring(0, invoiceId.length() - 1);
}
}
data[columnHeadersList.indexOf(LINE_NUM)] = String.valueOf(lineNum);
data[columnHeadersList.indexOf(NOMENCLATURE)] = customsCode;
data[columnHeadersList.indexOf(SRC_DST_COUNTRY)] = srcDstCountry;
data[columnHeadersList.indexOf(FISC_VAL)] = String.valueOf(fiscalValue);
data[columnHeadersList.indexOf(REGIME)] = String.valueOf(regime.getValue());
data[columnHeadersList.indexOf(MASS)] = String.valueOf(totalNetMass);
data[columnHeadersList.indexOf(UNITS)] = String.valueOf(supplementaryUnit);
data[columnHeadersList.indexOf(NAT_TRANS)] = String.valueOf(natTrans.getValue());
data[columnHeadersList.indexOf(TRANSP)] = String.valueOf(modeOfTransport.getValue());
data[columnHeadersList.indexOf(DEPT)] = dept;
data[columnHeadersList.indexOf(COUNTRY_ORIG)] = countryOrigCode;
data[columnHeadersList.indexOf(ACQUIRER)] = taxNbr;
data[columnHeadersList.indexOf(PRODUCT_CODE)] = productCode;
data[columnHeadersList.indexOf(PRODUCT_NAME)] = productName;
data[columnHeadersList.indexOf(PARTNER_SEQ)] = partnerSeq;
data[columnHeadersList.indexOf(INVOICE)] = invoiceId;
return data;
}
use of com.axelor.apps.stock.db.StockMove in project axelor-open-suite by axelor.
the class StockMoveMultiInvoiceServiceImpl method fillReferenceInvoiceFromMultiOutStockMove.
/**
* Fill external and internal reference in the given invoice, from the list of stock moves.
*
* @param stockMoveList
* @param dummyInvoice
*/
protected void fillReferenceInvoiceFromMultiOutStockMove(List<StockMove> stockMoveList, Invoice dummyInvoice) {
// Concat sequence, internal ref and external ref from all saleOrder
List<String> externalRefList = new ArrayList<>();
List<String> internalRefList = new ArrayList<>();
for (StockMove stockMove : stockMoveList) {
SaleOrder saleOrder = StockMoveRepository.ORIGIN_SALE_ORDER.equals(stockMove.getOriginTypeSelect()) && stockMove.getOriginId() != null ? saleOrderRepository.find(stockMove.getOriginId()) : null;
if (saleOrder != null) {
externalRefList.add(saleOrder.getExternalReference());
}
internalRefList.add(stockMove.getStockMoveSeq() + (saleOrder != null ? (":" + saleOrder.getSaleOrderSeq()) : ""));
}
String externalRef = String.join("|", externalRefList);
String internalRef = String.join("|", internalRefList);
dummyInvoice.setExternalReference(StringTool.cutTooLongString(externalRef));
dummyInvoice.setInternalReference(StringTool.cutTooLongString(internalRef));
}
use of com.axelor.apps.stock.db.StockMove in project axelor-open-suite by axelor.
the class StockMoveMultiInvoiceServiceImpl method fillReferenceInvoiceFromMultiInStockMove.
/**
* Fill external and internal reference in the given invoice, from the list of stock moves.
*
* @param stockMoveList
* @param dummyInvoice
*/
protected void fillReferenceInvoiceFromMultiInStockMove(List<StockMove> stockMoveList, Invoice dummyInvoice) {
// Concat sequence, internal ref and external ref from all saleOrder
List<String> externalRefList = new ArrayList<>();
List<String> internalRefList = new ArrayList<>();
for (StockMove stockMove : stockMoveList) {
PurchaseOrder purchaseOrder = StockMoveRepository.ORIGIN_PURCHASE_ORDER.equals(stockMove.getOriginTypeSelect()) && stockMove.getOriginId() != null ? purchaseOrderRepository.find(stockMove.getOriginId()) : null;
if (purchaseOrder != null) {
externalRefList.add(purchaseOrder.getExternalReference());
}
internalRefList.add(stockMove.getStockMoveSeq() + (purchaseOrder != null ? (":" + purchaseOrder.getPurchaseOrderSeq()) : ""));
}
String externalRef = String.join("|", externalRefList);
String internalRef = String.join("|", internalRefList);
dummyInvoice.setExternalReference(StringTool.cutTooLongString(externalRef));
dummyInvoice.setInternalReference(StringTool.cutTooLongString(internalRef));
}
Aggregations