@adempiere/grpc-api
Advanced tools
Comparing version 4.4.3 to 4.4.4
{ | ||
"name": "@adempiere/grpc-api", | ||
"version": "4.4.3", | ||
"version": "4.4.4", | ||
"description": "ADempiere Web write in Javascript for a node service", | ||
@@ -5,0 +5,0 @@ "author": "Yamel Senih", |
/************************************************************************************* | ||
* Product: ADempiere gRPC Payment Allocation Client * | ||
* Copyright (C) 2012-2023 E.R.P. Consultores y Asociados, C.A. * | ||
* Copyright (C) 2018-2023 E.R.P. Consultores y Asociados, C.A. * | ||
* Contributor(s): Edwin Betancourt EdwinBetanc0urt@outlook.com * | ||
@@ -218,8 +218,5 @@ * This program is free software: you can redistribute it and/or modify * | ||
businessPartnerId, | ||
businessPartnerUuid, | ||
date, | ||
organizationId, | ||
organizationUuid, | ||
currencyId, | ||
currencyUuid, | ||
isMultiCurrency, | ||
@@ -240,3 +237,2 @@ transactionType, | ||
); | ||
request.setBusinessPartnerUuid(businessPartnerUuid); | ||
@@ -251,3 +247,2 @@ const { getTimestamp } = require('@adempiere/grpc-api/src/utils/valueUtils.js'); | ||
); | ||
request.setOrganizationUuid(organizationUuid); | ||
@@ -257,3 +252,2 @@ request.setCurrencyId( | ||
); | ||
request.setCurrencyUuid(currencyUuid); | ||
@@ -293,8 +287,5 @@ request.setIsMultiCurrency(isMultiCurrency); | ||
businessPartnerId, | ||
businessPartnerUuid, | ||
date, | ||
organizationId, | ||
organizationUuid, | ||
currencyId, | ||
currencyUuid, | ||
isMultiCurrency, | ||
@@ -315,3 +306,2 @@ transactionType, | ||
); | ||
request.setBusinessPartnerUuid(businessPartnerUuid); | ||
@@ -326,3 +316,2 @@ const { getTimestamp } = require('@adempiere/grpc-api/src/utils/valueUtils.js'); | ||
); | ||
request.setOrganizationUuid(organizationUuid); | ||
@@ -332,3 +321,2 @@ request.setCurrencyId( | ||
); | ||
request.setCurrencyUuid(currencyUuid); | ||
@@ -453,2 +441,3 @@ request.setIsMultiCurrency(isMultiCurrency); | ||
transactionOrganizationUuid, | ||
totalDifference, | ||
date, | ||
@@ -467,3 +456,2 @@ description, | ||
); | ||
request.setBusinessPartnerUuid(businessPartnerUuid); | ||
@@ -473,3 +461,2 @@ request.setCurrencyId( | ||
); | ||
request.setCurrencyUuid(currencyUuid); | ||
@@ -479,3 +466,2 @@ request.setChargeId( | ||
); | ||
request.setChargeUuid(chargeUuid); | ||
@@ -485,3 +471,2 @@ request.setTransactionOrganizationId( | ||
); | ||
request.setTransactionOrganizationUuid(transactionOrganizationUuid); | ||
@@ -508,6 +493,6 @@ const { getTimestamp } = require('@adempiere/grpc-api/src/utils/valueUtils.js'); | ||
paymentSelectionInstance.setAppliedAmount( | ||
getDecimalToGRPC(paymentSelection.applied_amount) | ||
getDecimalToGRPC(paymentSelection.applied) | ||
); | ||
request.addPaymentsSelections(paymentSelectionInstance); | ||
request.addPaymentSelections(paymentSelectionInstance); | ||
}); | ||
@@ -525,3 +510,3 @@ | ||
invoiceSelectionInstance.setAppliedAmount( | ||
getDecimalToGRPC(invoiceSelection.applied_amount) | ||
getDecimalToGRPC(invoiceSelection.applied) | ||
); | ||
@@ -532,3 +517,3 @@ invoiceSelectionInstance.setDiscountAmount( | ||
invoiceSelectionInstance.setWriteOffAmount( | ||
getDecimalToGRPC(invoiceSelection.write_off_amount) | ||
getDecimalToGRPC(invoiceSelection.writeOff) | ||
); | ||
@@ -539,3 +524,5 @@ invoiceSelectionInstance.setOpenAmount( | ||
request.addInvocieSelections(invoiceSelectionInstance); | ||
request.setTotalDifference(getDecimalToGRPC(totalDifference)); | ||
request.addInvoiceSelections(invoiceSelectionInstance); | ||
}); | ||
@@ -542,0 +529,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6524005
185096