use of com.axelor.apps.base.db.Product 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.base.db.Product in project axelor-open-suite by axelor.
the class StockLocationServiceSupplychainImpl method getReservedQty.
@Override
public BigDecimal getReservedQty(Long productId, Long locationId, Long companyId) throws AxelorException {
if (productId != null) {
Product product = productRepo.find(productId);
Unit productUnit = product.getUnit();
UnitConversionService unitConversionService = Beans.get(UnitConversionService.class);
if (locationId == null || locationId == 0L) {
List<StockLocation> stockLocations = getNonVirtualStockLocations(companyId);
if (!stockLocations.isEmpty()) {
BigDecimal reservedQty = BigDecimal.ZERO;
for (StockLocation stockLocation : stockLocations) {
StockLocationLine stockLocationLine = stockLocationLineService.getOrCreateStockLocationLine(stockLocationRepo.find(stockLocation.getId()), productRepo.find(productId));
if (stockLocationLine != null) {
Unit stockLocationLineUnit = stockLocationLine.getUnit();
reservedQty = reservedQty.add(stockLocationLine.getReservedQty());
if (productUnit != null && !productUnit.equals(stockLocationLineUnit)) {
reservedQty = unitConversionService.convert(stockLocationLineUnit, productUnit, reservedQty, reservedQty.scale(), product);
}
}
}
return reservedQty;
}
} else {
StockLocationLine stockLocationLine = stockLocationLineService.getOrCreateStockLocationLine(stockLocationRepo.find(locationId), productRepo.find(productId));
if (stockLocationLine != null) {
Unit stockLocationLineUnit = stockLocationLine.getUnit();
if (productUnit != null && !productUnit.equals(stockLocationLineUnit)) {
return unitConversionService.convert(stockLocationLineUnit, productUnit, stockLocationLine.getReservedQty(), stockLocationLine.getReservedQty().scale(), product);
}
return stockLocationLine.getReservedQty();
}
}
}
return BigDecimal.ZERO;
}
use of com.axelor.apps.base.db.Product in project axelor-open-suite by axelor.
the class InvoiceLineController method getFixedAssetCategory.
public void getFixedAssetCategory(ActionRequest request, ActionResponse response) {
Context context = request.getContext();
InvoiceLine invoiceLine = context.asType(InvoiceLine.class);
Invoice invoice = this.getInvoice(context);
Product product = invoiceLine.getProduct();
if (invoice == null || product == null) {
return;
}
FixedAssetCategory fixedAssetCategory = null;
if (!product.getAccountManagementList().isEmpty() && (invoice.getOperationTypeSelect() == InvoiceRepository.OPERATION_TYPE_SUPPLIER_PURCHASE || invoice.getOperationTypeSelect() == InvoiceRepository.OPERATION_TYPE_SUPPLIER_REFUND)) {
Optional<AccountManagement> optionalFixedAssetCategory = product.getAccountManagementList().stream().filter(am -> invoice.getCompany().equals(am.getCompany())).findFirst();
fixedAssetCategory = optionalFixedAssetCategory.isPresent() ? optionalFixedAssetCategory.get().getFixedAssetCategory() : null;
}
response.setValue("fixedAssetCategory", fixedAssetCategory);
}
use of com.axelor.apps.base.db.Product in project axelor-open-suite by axelor.
the class InvoiceLineController method getAccount.
public void getAccount(ActionRequest request, ActionResponse response) {
try {
InvoiceLine invoiceLine = request.getContext().asType(InvoiceLine.class);
if (invoiceLine != null) {
Product product = invoiceLine.getProduct();
Invoice invoice = this.getInvoice(request.getContext());
if (product != null) {
Account account = Beans.get(AccountManagementServiceAccountImpl.class).getProductAccount(product, invoice.getCompany(), invoice.getPartner().getFiscalPosition(), InvoiceToolService.isPurchase(invoice), invoiceLine.getFixedAssets());
response.setValue("account", account);
}
}
} catch (Exception e) {
TraceBackService.trace(response, e);
}
}
use of com.axelor.apps.base.db.Product in project axelor-open-suite by axelor.
the class ProductController method generateProductVariants.
public void generateProductVariants(ActionRequest request, ActionResponse response) throws AxelorException {
Product product = request.getContext().asType(Product.class);
product = Beans.get(ProductRepository.class).find(product.getId());
if (product.getProductVariantConfig() != null) {
Beans.get(ProductService.class).generateProductVariants(product);
response.setFlash(I18n.get(IExceptionMessage.PRODUCT_1));
response.setReload(true);
}
}
Aggregations