repzo-sap-absjo 1.0.43 → 1.0.44
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.
- package/lib/commands/rep.js +1 -1
- package/package.json +1 -1
- package/src/commands/rep.ts +1 -1
package/lib/commands/rep.js
CHANGED
|
@@ -138,7 +138,7 @@ export const sync_rep = async (commandEvent) => {
|
|
|
138
138
|
assigned_warehouse: warehouse,
|
|
139
139
|
company_namespace: [nameSpace],
|
|
140
140
|
"settings.treating_invoice_as_proforma_for_etax":
|
|
141
|
-
sap_rep.INVOICESTATUS === "
|
|
141
|
+
sap_rep.INVOICESTATUS === "Y" ? true : false,
|
|
142
142
|
};
|
|
143
143
|
if (!repzo_rep) {
|
|
144
144
|
// Create
|
package/package.json
CHANGED
package/src/commands/rep.ts
CHANGED
|
@@ -133,7 +133,7 @@ export const sync_rep = async (commandEvent: CommandEvent) => {
|
|
|
133
133
|
assigned_warehouse: warehouse,
|
|
134
134
|
company_namespace: [nameSpace],
|
|
135
135
|
"settings.treating_invoice_as_proforma_for_etax":
|
|
136
|
-
sap_rep.INVOICESTATUS === "
|
|
136
|
+
sap_rep.INVOICESTATUS === "Y" ? true : false,
|
|
137
137
|
};
|
|
138
138
|
|
|
139
139
|
if (!repzo_rep) {
|