sysone-api-mapper 1.0.59 → 1.0.61
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/package.json
CHANGED
|
@@ -376,10 +376,10 @@ export const getQuotationByCode_Request = (inputParams) => {
|
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
export const getQuotations_Request = (inputParams) => {
|
|
379
|
-
const { quotationNumber, ...otherParams } = inputParams;
|
|
380
379
|
return {
|
|
381
|
-
number: quotationNumber,
|
|
382
|
-
|
|
380
|
+
number: inputParams.quotationNumber || undefined,
|
|
381
|
+
from: inputParams.from || undefined,
|
|
382
|
+
to: inputParams.to || undefined,
|
|
383
383
|
}
|
|
384
384
|
}
|
|
385
385
|
|