@erp-galoper/types 1.0.1038 → 1.0.1040
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 +178 -48
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -21778,11 +21778,20 @@ export interface components {
|
|
|
21778
21778
|
active: boolean;
|
|
21779
21779
|
/** Description */
|
|
21780
21780
|
description?: string | null;
|
|
21781
|
-
/**
|
|
21781
|
+
/**
|
|
21782
|
+
* Skucode
|
|
21783
|
+
* @description show it as code instead of barcode if service
|
|
21784
|
+
*/
|
|
21782
21785
|
skuCode?: string | null;
|
|
21783
|
-
/**
|
|
21786
|
+
/**
|
|
21787
|
+
* Barcodetype
|
|
21788
|
+
* @description if barcode type is not set then barcode should be null
|
|
21789
|
+
*/
|
|
21784
21790
|
barcodeType: string | null;
|
|
21785
|
-
/**
|
|
21791
|
+
/**
|
|
21792
|
+
* Barcode
|
|
21793
|
+
* @description show it as code instead of barcode if service
|
|
21794
|
+
*/
|
|
21786
21795
|
barcode?: string | null;
|
|
21787
21796
|
type?: components["schemas"]["ItemType"] | null;
|
|
21788
21797
|
usage?: components["schemas"]["ItemUsage"] | null;
|
|
@@ -21866,15 +21875,22 @@ export interface components {
|
|
|
21866
21875
|
defaultPurchasePriceCurrency?: components["schemas"]["CurrencySummaryInfo"] | null;
|
|
21867
21876
|
/** Leadtime */
|
|
21868
21877
|
leadTime?: string | null;
|
|
21869
|
-
/**
|
|
21878
|
+
/**
|
|
21879
|
+
* Minimumquantityorder
|
|
21880
|
+
* @description Not applicable for service items - always null for type=service
|
|
21881
|
+
*/
|
|
21870
21882
|
minimumQuantityOrder?: number | null;
|
|
21871
21883
|
defaultPurchaseUnitOfMeasure: components["schemas"]["UnitOfMeasureSchema"] | null;
|
|
21872
|
-
/**
|
|
21884
|
+
/**
|
|
21885
|
+
* Minimumquantityinstock
|
|
21886
|
+
* @description Not applicable for service items - always null for type=service
|
|
21887
|
+
*/
|
|
21873
21888
|
minimumQuantityInStock?: number | null;
|
|
21874
21889
|
/** Warrantyperiod */
|
|
21875
21890
|
warrantyPeriod?: string | null;
|
|
21876
21891
|
/**
|
|
21877
21892
|
* Allownegativestock
|
|
21893
|
+
* @description Not applicable for service items - always null for type=service
|
|
21878
21894
|
* @default false
|
|
21879
21895
|
*/
|
|
21880
21896
|
allowNegativeStock: boolean;
|
|
@@ -21894,6 +21910,7 @@ export interface components {
|
|
|
21894
21910
|
* @default false
|
|
21895
21911
|
*/
|
|
21896
21912
|
isInventoryTracked: boolean | null;
|
|
21913
|
+
/** @description Not applicable for service items - always null for type=service */
|
|
21897
21914
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
21898
21915
|
/**
|
|
21899
21916
|
* Hasexpirydate
|
|
@@ -21917,6 +21934,7 @@ export interface components {
|
|
|
21917
21934
|
alertDate?: number | null;
|
|
21918
21935
|
/**
|
|
21919
21936
|
* Itempackages
|
|
21937
|
+
* @description Not applicable for service items - always empty list for type=service
|
|
21920
21938
|
* @default []
|
|
21921
21939
|
*/
|
|
21922
21940
|
itemPackages: components["schemas"]["ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema"][];
|
|
@@ -21968,11 +21986,20 @@ export interface components {
|
|
|
21968
21986
|
active: boolean;
|
|
21969
21987
|
/** Description */
|
|
21970
21988
|
description?: string | null;
|
|
21971
|
-
/**
|
|
21989
|
+
/**
|
|
21990
|
+
* Skucode
|
|
21991
|
+
* @description show it as code instead of barcode if service
|
|
21992
|
+
*/
|
|
21972
21993
|
skuCode?: string | null;
|
|
21973
|
-
/**
|
|
21994
|
+
/**
|
|
21995
|
+
* Barcodetype
|
|
21996
|
+
* @description if barcode type is not set then barcode should be null
|
|
21997
|
+
*/
|
|
21974
21998
|
barcodeType: string | null;
|
|
21975
|
-
/**
|
|
21999
|
+
/**
|
|
22000
|
+
* Barcode
|
|
22001
|
+
* @description show it as code instead of barcode if service
|
|
22002
|
+
*/
|
|
21976
22003
|
barcode?: string | null;
|
|
21977
22004
|
type?: components["schemas"]["ItemType"] | null;
|
|
21978
22005
|
usage?: components["schemas"]["ItemUsage"] | null;
|
|
@@ -22056,15 +22083,22 @@ export interface components {
|
|
|
22056
22083
|
defaultPurchasePriceCurrency?: components["schemas"]["CurrencySummaryInfo"] | null;
|
|
22057
22084
|
/** Leadtime */
|
|
22058
22085
|
leadTime?: string | null;
|
|
22059
|
-
/**
|
|
22086
|
+
/**
|
|
22087
|
+
* Minimumquantityorder
|
|
22088
|
+
* @description Not applicable for service items - always null for type=service
|
|
22089
|
+
*/
|
|
22060
22090
|
minimumQuantityOrder?: number | null;
|
|
22061
22091
|
defaultPurchaseUnitOfMeasure: components["schemas"]["UnitOfMeasureSchema"] | null;
|
|
22062
|
-
/**
|
|
22092
|
+
/**
|
|
22093
|
+
* Minimumquantityinstock
|
|
22094
|
+
* @description Not applicable for service items - always null for type=service
|
|
22095
|
+
*/
|
|
22063
22096
|
minimumQuantityInStock?: number | null;
|
|
22064
22097
|
/** Warrantyperiod */
|
|
22065
22098
|
warrantyPeriod?: string | null;
|
|
22066
22099
|
/**
|
|
22067
22100
|
* Allownegativestock
|
|
22101
|
+
* @description Not applicable for service items - always null for type=service
|
|
22068
22102
|
* @default false
|
|
22069
22103
|
*/
|
|
22070
22104
|
allowNegativeStock: boolean;
|
|
@@ -22084,6 +22118,7 @@ export interface components {
|
|
|
22084
22118
|
* @default false
|
|
22085
22119
|
*/
|
|
22086
22120
|
isInventoryTracked: boolean | null;
|
|
22121
|
+
/** @description Not applicable for service items - always null for type=service */
|
|
22087
22122
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
22088
22123
|
/**
|
|
22089
22124
|
* Hasexpirydate
|
|
@@ -22107,6 +22142,7 @@ export interface components {
|
|
|
22107
22142
|
alertDate?: number | null;
|
|
22108
22143
|
/**
|
|
22109
22144
|
* Itempackages
|
|
22145
|
+
* @description Not applicable for service items - always empty list for type=service
|
|
22110
22146
|
* @default []
|
|
22111
22147
|
*/
|
|
22112
22148
|
itemPackages: components["schemas"]["ItemPackageWithCanDeleteAndCanUpdateQuantityOrUomSchema"][];
|
|
@@ -22416,6 +22452,7 @@ export interface components {
|
|
|
22416
22452
|
* @default false
|
|
22417
22453
|
*/
|
|
22418
22454
|
isInventoryTracked: boolean | null;
|
|
22455
|
+
/** @description Not applicable for service items - always null for type=service */
|
|
22419
22456
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
22420
22457
|
/**
|
|
22421
22458
|
* Hasexpirydate
|
|
@@ -22460,14 +22497,21 @@ export interface components {
|
|
|
22460
22497
|
active: boolean;
|
|
22461
22498
|
/** Description */
|
|
22462
22499
|
description?: string | null;
|
|
22463
|
-
/**
|
|
22500
|
+
/**
|
|
22501
|
+
* Skucode
|
|
22502
|
+
* @description Not applicable for service items - always null for type=service
|
|
22503
|
+
*/
|
|
22464
22504
|
skuCode?: string | null;
|
|
22465
22505
|
/** @description
|
|
22466
22506
|
* get default barcode type from inventory settings(/api/v1/settings/inventory/) if field value exist
|
|
22467
22507
|
* - required when barcode is provided
|
|
22508
|
+
* - Not applicable for service items - always null for type=service
|
|
22468
22509
|
* */
|
|
22469
22510
|
barcodeType?: components["schemas"]["BarcodeTypeValues"] | null;
|
|
22470
|
-
/**
|
|
22511
|
+
/**
|
|
22512
|
+
* Barcode
|
|
22513
|
+
* @description if service show it as code instead of barcode
|
|
22514
|
+
*/
|
|
22471
22515
|
barcode?: string | null;
|
|
22472
22516
|
type: components["schemas"]["ItemType"];
|
|
22473
22517
|
/** @description
|
|
@@ -22523,21 +22567,45 @@ export interface components {
|
|
|
22523
22567
|
* @default false
|
|
22524
22568
|
*/
|
|
22525
22569
|
returnableItem: boolean;
|
|
22526
|
-
/**
|
|
22570
|
+
/**
|
|
22571
|
+
* Width
|
|
22572
|
+
* @description Not applicable for service items - always null for type=service
|
|
22573
|
+
*/
|
|
22527
22574
|
width?: number | null;
|
|
22528
|
-
/**
|
|
22575
|
+
/**
|
|
22576
|
+
* Widthunitofmeasure
|
|
22577
|
+
* @description Not applicable for service items - always null for type=service
|
|
22578
|
+
*/
|
|
22529
22579
|
widthUnitOfMeasure?: number | null;
|
|
22530
|
-
/**
|
|
22580
|
+
/**
|
|
22581
|
+
* Height
|
|
22582
|
+
* @description Not applicable for service items - always null for type=service
|
|
22583
|
+
*/
|
|
22531
22584
|
height?: number | null;
|
|
22532
|
-
/**
|
|
22585
|
+
/**
|
|
22586
|
+
* Heightunitofmeasure
|
|
22587
|
+
* @description Not applicable for service items - always null for type=service
|
|
22588
|
+
*/
|
|
22533
22589
|
heightUnitOfMeasure?: number | null;
|
|
22534
|
-
/**
|
|
22590
|
+
/**
|
|
22591
|
+
* Length
|
|
22592
|
+
* @description Not applicable for service items - always null for type=service
|
|
22593
|
+
*/
|
|
22535
22594
|
length?: number | null;
|
|
22536
|
-
/**
|
|
22595
|
+
/**
|
|
22596
|
+
* Lengthunitofmeasure
|
|
22597
|
+
* @description Not applicable for service items - always null for type=service
|
|
22598
|
+
*/
|
|
22537
22599
|
lengthUnitOfMeasure?: number | null;
|
|
22538
|
-
/**
|
|
22600
|
+
/**
|
|
22601
|
+
* Weight
|
|
22602
|
+
* @description Not applicable for service items - always null for type=service
|
|
22603
|
+
*/
|
|
22539
22604
|
weight?: number | null;
|
|
22540
|
-
/**
|
|
22605
|
+
/**
|
|
22606
|
+
* Weightunitofmeasure
|
|
22607
|
+
* @description Not applicable for service items - always null for type=service
|
|
22608
|
+
*/
|
|
22541
22609
|
weightUnitOfMeasure?: number | null;
|
|
22542
22610
|
/**
|
|
22543
22611
|
* Availableinpos
|
|
@@ -22578,17 +22646,23 @@ export interface components {
|
|
|
22578
22646
|
defaultPurchasePriceCurrency?: number | null;
|
|
22579
22647
|
/** Leadtime */
|
|
22580
22648
|
leadTime?: string | null;
|
|
22581
|
-
/**
|
|
22649
|
+
/**
|
|
22650
|
+
* Minimumquantityorder
|
|
22651
|
+
* @description Not applicable for service items - always null for type=service
|
|
22652
|
+
*/
|
|
22582
22653
|
minimumQuantityOrder?: number | null;
|
|
22583
22654
|
/** Defaultpurchaseunitofmeasure */
|
|
22584
22655
|
defaultPurchaseUnitOfMeasure?: number | null;
|
|
22585
|
-
/**
|
|
22656
|
+
/**
|
|
22657
|
+
* Minimumquantityinstock
|
|
22658
|
+
* @description Not applicable for service items - always null for type=service
|
|
22659
|
+
*/
|
|
22586
22660
|
minimumQuantityInStock?: number | null;
|
|
22587
22661
|
/** Warrantyperiod */
|
|
22588
22662
|
warrantyPeriod?: string | null;
|
|
22589
22663
|
/**
|
|
22590
22664
|
* Allownegativestock
|
|
22591
|
-
* @description
|
|
22665
|
+
* @description Not applicable for service items - always null for type=service. Get default value from inventory settings(/api/v1/settings/inventory/)
|
|
22592
22666
|
* @default false
|
|
22593
22667
|
*/
|
|
22594
22668
|
allowNegativeStock: boolean;
|
|
@@ -22617,6 +22691,7 @@ export interface components {
|
|
|
22617
22691
|
* @default false
|
|
22618
22692
|
*/
|
|
22619
22693
|
isInventoryTracked: boolean | null;
|
|
22694
|
+
/** @description Not applicable for service items - always null for type=service */
|
|
22620
22695
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
22621
22696
|
/**
|
|
22622
22697
|
* Hasexpirydate
|
|
@@ -22655,7 +22730,7 @@ export interface components {
|
|
|
22655
22730
|
commissionCalculation?: components["schemas"]["ItemCommissionCalculation"];
|
|
22656
22731
|
/**
|
|
22657
22732
|
* Packages
|
|
22658
|
-
* @description
|
|
22733
|
+
* @description Not applicable for service items - always empty list for type=service. Package and unit of measure should be unique
|
|
22659
22734
|
*/
|
|
22660
22735
|
packages: components["schemas"]["CreateOrUpdatePackageItemSchema"][];
|
|
22661
22736
|
/**
|
|
@@ -22738,11 +22813,17 @@ export interface components {
|
|
|
22738
22813
|
active?: boolean | null;
|
|
22739
22814
|
/** Description */
|
|
22740
22815
|
description?: string | null;
|
|
22741
|
-
/**
|
|
22816
|
+
/**
|
|
22817
|
+
* Skucode
|
|
22818
|
+
* @description Not applicable for service items - always null for type=service
|
|
22819
|
+
*/
|
|
22742
22820
|
skuCode?: string | null;
|
|
22743
|
-
/** @description
|
|
22821
|
+
/** @description Get default barcode type from inventory settings(/api/v1/settings/inventory/) if field value exist */
|
|
22744
22822
|
barcodeType?: components["schemas"]["BarcodeTypeValues"] | null;
|
|
22745
|
-
/**
|
|
22823
|
+
/**
|
|
22824
|
+
* Barcode
|
|
22825
|
+
* @description if barcode type is not set then barcode should be null
|
|
22826
|
+
*/
|
|
22746
22827
|
barcode?: string | null;
|
|
22747
22828
|
type?: components["schemas"]["ItemType"] | null;
|
|
22748
22829
|
/** @description
|
|
@@ -22791,21 +22872,45 @@ export interface components {
|
|
|
22791
22872
|
alternativeItems: components["schemas"]["AlternativeItemIsTwoWaysSchema"][];
|
|
22792
22873
|
/** Returnableitem */
|
|
22793
22874
|
returnableItem?: boolean | null;
|
|
22794
|
-
/**
|
|
22875
|
+
/**
|
|
22876
|
+
* Width
|
|
22877
|
+
* @description Not applicable for service items - always null for type=service
|
|
22878
|
+
*/
|
|
22795
22879
|
width?: number | null;
|
|
22796
|
-
/**
|
|
22880
|
+
/**
|
|
22881
|
+
* Widthunitofmeasure
|
|
22882
|
+
* @description Not applicable for service items - always null for type=service
|
|
22883
|
+
*/
|
|
22797
22884
|
widthUnitOfMeasure?: number | null;
|
|
22798
|
-
/**
|
|
22885
|
+
/**
|
|
22886
|
+
* Height
|
|
22887
|
+
* @description Not applicable for service items - always null for type=service
|
|
22888
|
+
*/
|
|
22799
22889
|
height?: number | null;
|
|
22800
|
-
/**
|
|
22890
|
+
/**
|
|
22891
|
+
* Heightunitofmeasure
|
|
22892
|
+
* @description Not applicable for service items - always null for type=service
|
|
22893
|
+
*/
|
|
22801
22894
|
heightUnitOfMeasure?: number | null;
|
|
22802
|
-
/**
|
|
22895
|
+
/**
|
|
22896
|
+
* Length
|
|
22897
|
+
* @description Not applicable for service items - always null for type=service
|
|
22898
|
+
*/
|
|
22803
22899
|
length?: number | null;
|
|
22804
|
-
/**
|
|
22900
|
+
/**
|
|
22901
|
+
* Lengthunitofmeasure
|
|
22902
|
+
* @description Not applicable for service items - always null for type=service
|
|
22903
|
+
*/
|
|
22805
22904
|
lengthUnitOfMeasure?: number | null;
|
|
22806
|
-
/**
|
|
22905
|
+
/**
|
|
22906
|
+
* Weight
|
|
22907
|
+
* @description Not applicable for service items - always null for type=service
|
|
22908
|
+
*/
|
|
22807
22909
|
weight?: number | null;
|
|
22808
|
-
/**
|
|
22910
|
+
/**
|
|
22911
|
+
* Weightunitofmeasure
|
|
22912
|
+
* @description Not applicable for service items - always null for type=service
|
|
22913
|
+
*/
|
|
22809
22914
|
weightUnitOfMeasure?: number | null;
|
|
22810
22915
|
/** Availableinpos */
|
|
22811
22916
|
availableInPos?: boolean | null;
|
|
@@ -22840,17 +22945,23 @@ export interface components {
|
|
|
22840
22945
|
defaultPurchasePriceCurrency?: number | null;
|
|
22841
22946
|
/** Leadtime */
|
|
22842
22947
|
leadTime?: string | null;
|
|
22843
|
-
/**
|
|
22948
|
+
/**
|
|
22949
|
+
* Minimumquantityorder
|
|
22950
|
+
* @description Not applicable for service items - always null for type=service
|
|
22951
|
+
*/
|
|
22844
22952
|
minimumQuantityOrder?: number | null;
|
|
22845
22953
|
/** Defaultpurchaseunitofmeasure */
|
|
22846
22954
|
defaultPurchaseUnitOfMeasure?: number | null;
|
|
22847
|
-
/**
|
|
22955
|
+
/**
|
|
22956
|
+
* Minimumquantityinstock
|
|
22957
|
+
* @description Not applicable for service items - always null for type=service
|
|
22958
|
+
*/
|
|
22848
22959
|
minimumQuantityInStock?: number | null;
|
|
22849
22960
|
/** Warrantyperiod */
|
|
22850
22961
|
warrantyPeriod?: string | null;
|
|
22851
22962
|
/**
|
|
22852
22963
|
* Allownegativestock
|
|
22853
|
-
* @description
|
|
22964
|
+
* @description Not applicable for service items - always null for type=service. Get default value from inventory settings(/api/v1/settings/inventory/)
|
|
22854
22965
|
*/
|
|
22855
22966
|
allowNegativeStock?: boolean | null;
|
|
22856
22967
|
/** Autoreorder */
|
|
@@ -22875,6 +22986,7 @@ export interface components {
|
|
|
22875
22986
|
* @default false
|
|
22876
22987
|
*/
|
|
22877
22988
|
isInventoryTracked: boolean | null;
|
|
22989
|
+
/** @description Not applicable for service items - always null for type=service */
|
|
22878
22990
|
trackInventoryBy?: components["schemas"]["TrackInventoryBy"] | null;
|
|
22879
22991
|
/**
|
|
22880
22992
|
* Hasexpirydate
|
|
@@ -22904,7 +23016,7 @@ export interface components {
|
|
|
22904
23016
|
alertDate?: number | null;
|
|
22905
23017
|
/**
|
|
22906
23018
|
* Packages
|
|
22907
|
-
* @description
|
|
23019
|
+
* @description Not applicable for service items - always empty list for type=service. Package and unit of measure should be unique
|
|
22908
23020
|
* @default []
|
|
22909
23021
|
*/
|
|
22910
23022
|
packages: components["schemas"]["CreateOrUpdatePackageItemSchema"][];
|
|
@@ -24659,7 +24771,7 @@ export interface components {
|
|
|
24659
24771
|
/** Depth */
|
|
24660
24772
|
depth: number;
|
|
24661
24773
|
/** Image */
|
|
24662
|
-
image?: string
|
|
24774
|
+
image?: string;
|
|
24663
24775
|
/**
|
|
24664
24776
|
* Children
|
|
24665
24777
|
* @default []
|
|
@@ -24702,6 +24814,8 @@ export interface components {
|
|
|
24702
24814
|
/** Issubcategory */
|
|
24703
24815
|
isSubCategory: boolean;
|
|
24704
24816
|
parent?: components["schemas"]["ParentCategorySchema"] | null;
|
|
24817
|
+
/** Image */
|
|
24818
|
+
image: string;
|
|
24705
24819
|
};
|
|
24706
24820
|
/** ParentCategorySchema */
|
|
24707
24821
|
ParentCategorySchema: {
|
|
@@ -25803,7 +25917,8 @@ export interface components {
|
|
|
25803
25917
|
/**
|
|
25804
25918
|
* Item
|
|
25805
25919
|
* @description
|
|
25806
|
-
* - /api/v1/inventory/items/ and filter by active=true
|
|
25920
|
+
* - /api/v1/inventory/items/ and filter by active=true and type=product
|
|
25921
|
+
* - Service items (type=service) are not allowed in stock adjustments
|
|
25807
25922
|
*
|
|
25808
25923
|
*/
|
|
25809
25924
|
item: number;
|
|
@@ -25953,7 +26068,8 @@ export interface components {
|
|
|
25953
26068
|
/**
|
|
25954
26069
|
* Item
|
|
25955
26070
|
* @description
|
|
25956
|
-
* - /api/v1/inventory/items/ and filter by active=true
|
|
26071
|
+
* - /api/v1/inventory/items/ and filter by active=true and type=product
|
|
26072
|
+
* - Service items (type=service) are not allowed in stock adjustments
|
|
25957
26073
|
*
|
|
25958
26074
|
*/
|
|
25959
26075
|
item: number;
|
|
@@ -26109,7 +26225,8 @@ export interface components {
|
|
|
26109
26225
|
/**
|
|
26110
26226
|
* Item
|
|
26111
26227
|
* @description
|
|
26112
|
-
* - get active items only, use route /api/v1/inventory/items/ and filter by active=true
|
|
26228
|
+
* - get active items only, use route /api/v1/inventory/items/ and filter by active=true and type=product
|
|
26229
|
+
* - Service items (type=service) are not allowed in opening stock
|
|
26113
26230
|
*
|
|
26114
26231
|
*/
|
|
26115
26232
|
item: number;
|
|
@@ -26264,7 +26381,8 @@ export interface components {
|
|
|
26264
26381
|
/**
|
|
26265
26382
|
* Item
|
|
26266
26383
|
* @description
|
|
26267
|
-
* - get active items only, use route /api/v1/inventory/items/ and filter by active=true
|
|
26384
|
+
* - get active items only, use route /api/v1/inventory/items/ and filter by active=true and type=product
|
|
26385
|
+
* - Service items (type=service) are not allowed in opening stock
|
|
26268
26386
|
*
|
|
26269
26387
|
*/
|
|
26270
26388
|
item: number;
|
|
@@ -26367,7 +26485,8 @@ export interface components {
|
|
|
26367
26485
|
/**
|
|
26368
26486
|
* Item
|
|
26369
26487
|
* @description
|
|
26370
|
-
* - Select only active items
|
|
26488
|
+
* - Select only active items with type=product
|
|
26489
|
+
* - Service items (type=service) are not allowed in internal transfers
|
|
26371
26490
|
* - Check item availability in source warehouse
|
|
26372
26491
|
* - Get item's tracking method for validation rules
|
|
26373
26492
|
*
|
|
@@ -26509,7 +26628,8 @@ export interface components {
|
|
|
26509
26628
|
/**
|
|
26510
26629
|
* Item
|
|
26511
26630
|
* @description
|
|
26512
|
-
* - Select only active items
|
|
26631
|
+
* - Select only active items with type=product
|
|
26632
|
+
* - Service items (type=service) are not allowed in internal transfers
|
|
26513
26633
|
* - Check item availability in source warehouse
|
|
26514
26634
|
* - Get item's tracking method for validation rules
|
|
26515
26635
|
*
|
|
@@ -37458,7 +37578,13 @@ export interface components {
|
|
|
37458
37578
|
* @description ID of the goods receipt item (for update only)
|
|
37459
37579
|
*/
|
|
37460
37580
|
id?: string | null;
|
|
37461
|
-
/**
|
|
37581
|
+
/**
|
|
37582
|
+
* Item
|
|
37583
|
+
* @description
|
|
37584
|
+
* - if from purchase invoice or order, items of purchase invoice or order should be filtered by the ones with items of type=product`
|
|
37585
|
+
* - Service items (type=service) are not allowed in goods receipt notes
|
|
37586
|
+
*
|
|
37587
|
+
*/
|
|
37462
37588
|
item: number;
|
|
37463
37589
|
/**
|
|
37464
37590
|
* Unitofmeasure
|
|
@@ -47591,7 +47717,11 @@ export interface components {
|
|
|
47591
47717
|
id?: string | null;
|
|
47592
47718
|
/**
|
|
47593
47719
|
* Item
|
|
47594
|
-
* @description
|
|
47720
|
+
* @description
|
|
47721
|
+
* - If there is a linked invoice or order in the GDN, the item should be associated with that specific invoice or order
|
|
47722
|
+
* - if from sales invoice or order, items of sales invoice or order should be filtered by the ones with items of type=product`
|
|
47723
|
+
* - Service items (type=service) are not allowed in goods delivery notes
|
|
47724
|
+
*
|
|
47595
47725
|
*/
|
|
47596
47726
|
item: number;
|
|
47597
47727
|
/**
|