@erp-galoper/types 1.0.666 → 1.0.668
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/openapi.ts +29 -4
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -16834,6 +16834,7 @@ export interface paths {
|
|
|
16834
16834
|
* - success
|
|
16835
16835
|
* - 400:
|
|
16836
16836
|
* - customerDoesNotExist
|
|
16837
|
+
* - downPayment,ReturnInvoice,OrReturnPackageIsRequired
|
|
16837
16838
|
* - 500:
|
|
16838
16839
|
* - internalServerError
|
|
16839
16840
|
*/
|
|
@@ -16963,7 +16964,7 @@ export interface paths {
|
|
|
16963
16964
|
* - returnInvoiceTaxShouldBePosted
|
|
16964
16965
|
* - returnInvoiceTaxDoesNotBelongToCustomer
|
|
16965
16966
|
* - taxDoesNotBelongToReturnInvoiceItem
|
|
16966
|
-
* -
|
|
16967
|
+
* - salesRefundVoucherShouldBeDraft
|
|
16967
16968
|
* - 404:
|
|
16968
16969
|
* - salesRefundVoucherDoesNotExist
|
|
16969
16970
|
* - 500:
|
|
@@ -27544,7 +27545,7 @@ export interface components {
|
|
|
27544
27545
|
/**
|
|
27545
27546
|
* Id
|
|
27546
27547
|
* Format: uuid
|
|
27547
|
-
* @example
|
|
27548
|
+
* @example bd0453a7-c5e5-46c3-b661-24887f17a74f
|
|
27548
27549
|
*/
|
|
27549
27550
|
id: string;
|
|
27550
27551
|
/**
|
|
@@ -44429,6 +44430,10 @@ export interface components {
|
|
|
44429
44430
|
total: string;
|
|
44430
44431
|
/** Unitprice */
|
|
44431
44432
|
unitPrice: string;
|
|
44433
|
+
/** Quantity */
|
|
44434
|
+
quantity: number;
|
|
44435
|
+
/** Unitpackage */
|
|
44436
|
+
unitPackage?: number | null;
|
|
44432
44437
|
/**
|
|
44433
44438
|
* Discount
|
|
44434
44439
|
* @description The discount percentage applied to the sales invoice.
|
|
@@ -44862,6 +44867,10 @@ export interface components {
|
|
|
44862
44867
|
SalesReturnInvoiceItemTotalCalculated: {
|
|
44863
44868
|
/** Total */
|
|
44864
44869
|
total: string;
|
|
44870
|
+
/** Quantity */
|
|
44871
|
+
quantity: number;
|
|
44872
|
+
/** Unitpackage */
|
|
44873
|
+
unitPackage?: number | null;
|
|
44865
44874
|
/** Unitprice */
|
|
44866
44875
|
unitPrice: string;
|
|
44867
44876
|
/**
|
|
@@ -45087,6 +45096,8 @@ export interface components {
|
|
|
45087
45096
|
returnInvoice: string | null;
|
|
45088
45097
|
/** Downpaymentitem */
|
|
45089
45098
|
downPaymentItem: string | null;
|
|
45099
|
+
/** Returnreturnablepackage */
|
|
45100
|
+
returnReturnablePackage: string | null;
|
|
45090
45101
|
/** Amount */
|
|
45091
45102
|
amount: string;
|
|
45092
45103
|
/**
|
|
@@ -45161,15 +45172,29 @@ export interface components {
|
|
|
45161
45172
|
/**
|
|
45162
45173
|
* Returninvoice
|
|
45163
45174
|
* Format: uuid
|
|
45164
|
-
* @description
|
|
45175
|
+
* @description
|
|
45176
|
+
* - return invoice id
|
|
45177
|
+
* - down payment item, return invoice or return returnable package is required per row
|
|
45178
|
+
*
|
|
45165
45179
|
*/
|
|
45166
45180
|
returnInvoice?: string;
|
|
45167
45181
|
/**
|
|
45168
45182
|
* Downpaymentitem
|
|
45169
45183
|
* Format: uuid
|
|
45170
|
-
* @description
|
|
45184
|
+
* @description
|
|
45185
|
+
* - down payment id
|
|
45186
|
+
* - down payment item, return invoice, or return returnable package is required per row
|
|
45187
|
+
*
|
|
45171
45188
|
*/
|
|
45172
45189
|
downPaymentItem?: string;
|
|
45190
|
+
/**
|
|
45191
|
+
* Returnreturnablepackage
|
|
45192
|
+
* Format: uuid
|
|
45193
|
+
* @description
|
|
45194
|
+
* - return returnable package id
|
|
45195
|
+
* - down payment item, return invoice, or return returnable package is required per row
|
|
45196
|
+
*/
|
|
45197
|
+
returnReturnablePackage?: string;
|
|
45173
45198
|
};
|
|
45174
45199
|
/** DownPaymentDetailInRefundVoucher */
|
|
45175
45200
|
DownPaymentDetailInRefundVoucher: {
|