@erp-galoper/types 1.0.827 → 1.0.829

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.
Files changed (2) hide show
  1. package/openapi.ts +20 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -34307,6 +34307,11 @@ export interface components {
34307
34307
  * @default 0
34308
34308
  */
34309
34309
  companyTotal: number;
34310
+ /**
34311
+ * Returnedquantity
34312
+ * @description Quantity already returned/invoiced (quantity for regular items, unit package for packaged items)
34313
+ */
34314
+ returnedQuantity?: number | null;
34310
34315
  };
34311
34316
  /** PurchaseReturnOrderSchema */
34312
34317
  PurchaseReturnOrderSchema: {
@@ -44745,6 +44750,11 @@ export interface components {
44745
44750
  * @default 0
44746
44751
  */
44747
44752
  companyTotal: string;
44753
+ /**
44754
+ * Returnedquantity
44755
+ * @description Quantity already returned/invoiced (quantity for regular items, unit package for packaged items)
44756
+ */
44757
+ returnedQuantity?: number | null;
44748
44758
  };
44749
44759
  /** SalesReturnOrderSchema */
44750
44760
  SalesReturnOrderSchema: {
@@ -44843,6 +44853,11 @@ export interface components {
44843
44853
  * @description
44844
44854
  * - Disabled when item package is selected
44845
44855
  * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
44856
+ * - When a return order is selected, the maximum returnable quantity is calculated as:
44857
+ * Original Return Order Quantity - Already Returned Quantity
44858
+ * - Use the returnedQuantity field from the return order item to calculate the maximum allowed value
44859
+ * - For items: Maximum = Quantity - Returned Quantity
44860
+ * - in case of package, the returned quantity is the unitPackage
44846
44861
  *
44847
44862
  */
44848
44863
  quantity?: number;
@@ -45291,6 +45306,11 @@ export interface components {
45291
45306
  * @description
45292
45307
  * - Disabled when item package is selected
45293
45308
  * - The quantity of the items, incase of package, it should be unitPackage * quantity of the package
45309
+ * - When a return order is selected, the maximum returnable quantity is calculated as:
45310
+ * Original Return Order Quantity - Already Returned Quantity
45311
+ * - Use the returnedQuantity field from the return order item to calculate the maximum allowed value
45312
+ * - For items: Maximum = Quantity - Returned Quantity
45313
+ * - in case of package, the returned quantity is the unitPackage
45294
45314
  *
45295
45315
  */
45296
45316
  quantity?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.827",
3
+ "version": "1.0.829",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],