@adempiere/grpc-api
Advanced tools
Comparing version 4.9.9 to 5.0.0
{ | ||
"name": "@adempiere/grpc-api", | ||
"version": "4.9.9", | ||
"version": "5.0.0", | ||
"description": "ADempiere Web write in Javascript for a node service", | ||
@@ -5,0 +5,0 @@ "author": "Yamel Senih", |
@@ -802,3 +802,4 @@ /************************************************************************************* | ||
referenceBankAccountUuid, | ||
customerBankAccountUuid | ||
customerBankAccountUuid, | ||
invoiceReferenceId | ||
}, callback) { | ||
@@ -857,2 +858,5 @@ const { CreatePaymentRequest } = this.stubFile; | ||
request.setReferenceBankAccountUuid(referenceBankAccountUuid); | ||
request.setInvoiceReferenceId( | ||
getValidInteger(invoiceReferenceId) | ||
); | ||
@@ -887,3 +891,4 @@ const metadata = getMetadata({ | ||
conversionTypeUuid, | ||
paymentMethodUuid | ||
paymentMethodUuid, | ||
invoiceReferenceId | ||
}, callback) { | ||
@@ -937,2 +942,5 @@ const { CreatePaymentReferenceRequest } = this.stubFile; | ||
} | ||
request.setInvoiceReferenceId( | ||
getValidInteger(invoiceReferenceId) | ||
); | ||
@@ -963,3 +971,4 @@ const metadata = getMetadata({ | ||
paymentAccountDate, | ||
referenceBankAccountUuid | ||
referenceBankAccountUuid, | ||
invoiceReferenceId | ||
}, callback) { | ||
@@ -1000,3 +1009,6 @@ const { UpdatePaymentRequest } = this.stubFile; | ||
request.setReferenceBankAccountUuid(referenceBankAccountUuid); | ||
request.setInvoiceReferenceId( | ||
getValidInteger(invoiceReferenceId) | ||
); | ||
const metadata = getMetadata({ | ||
@@ -1161,2 +1173,5 @@ token | ||
} | ||
paymentRequest.setInvoiceReferenceId( | ||
getValidInteger(payment.invoiceReferenceId) | ||
); | ||
request.addPayments(paymentRequest) | ||
@@ -1236,2 +1251,5 @@ }) | ||
} | ||
paymentRequest.setInvoiceReferenceId( | ||
getValidInteger(payment.invoiceReferenceId) | ||
); | ||
request.addPayments(paymentRequest) | ||
@@ -1457,2 +1475,5 @@ }) | ||
} | ||
paymentRequest.setInvoiceReferenceId( | ||
getValidInteger(payment.invoiceReferenceId) | ||
); | ||
request.addPayments(paymentRequest) | ||
@@ -1459,0 +1480,0 @@ }) |
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
7266296
206441