repzo-sap-absjo 1.0.45 → 1.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -311,6 +311,7 @@ export const create_proforma = async (event, options) => {
|
|
|
311
311
|
});
|
|
312
312
|
}
|
|
313
313
|
const sap_invoice = {
|
|
314
|
+
RepzoSerial: repzo_proforma.serial_number.formatted,
|
|
314
315
|
RefNum: repzo_proforma.serial_number.formatted,
|
|
315
316
|
SalPersCode: repzo_rep
|
|
316
317
|
? repzo_rep.integration_id
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repzo-sap-absjo",
|
|
3
3
|
"description": "repzo SAP ABS jo integration",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.46",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"keywords": [],
|
|
7
7
|
"author": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"jsonwebtoken": "^8.5.1",
|
|
46
46
|
"lodash": "^4.17.21",
|
|
47
47
|
"moment-timezone": "^0.5.34",
|
|
48
|
-
"repzo": "^1.0.
|
|
48
|
+
"repzo": "^1.0.193",
|
|
49
49
|
"uuid": "^8.3.2"
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -27,6 +27,7 @@ interface SAPProformaItem {
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
interface SAPProforma {
|
|
30
|
+
RepzoSerial: string; // "INV-1021-4",
|
|
30
31
|
RefNum: string; // "INV-1021-4",
|
|
31
32
|
SalPersCode: string; // "106",
|
|
32
33
|
DocDate: string; // "20211229",
|
|
@@ -224,6 +225,7 @@ export const create_proforma = async (event: EVENT, options: Config) => {
|
|
|
224
225
|
}
|
|
225
226
|
|
|
226
227
|
const sap_invoice: SAPProforma = {
|
|
228
|
+
RepzoSerial: repzo_proforma.serial_number.formatted,
|
|
227
229
|
RefNum: repzo_proforma.serial_number.formatted,
|
|
228
230
|
SalPersCode: repzo_rep
|
|
229
231
|
? repzo_rep.integration_id
|