erpnext-queue-client 1.5.4 → 1.7.0
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/dist/client.js +1 -1
- package/dist/erpnext/doctypeResourceRequest.d.ts +1 -1
- package/dist/erpnext/doctypes/address.d.ts +14 -14
- package/dist/erpnext/doctypes/contact.d.ts +26 -26
- package/dist/erpnext/doctypes/deliveryNote.d.ts +16 -16
- package/dist/erpnext/doctypes/item.d.ts +26 -26
- package/dist/erpnext/doctypes/purchaseInvoice.d.ts +34 -34
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +20 -20
- package/dist/erpnext/doctypes/shipment.d.ts +31 -31
- package/dist/erpnext/model/Account.d.ts +2 -2
- package/dist/erpnext/model/Address.d.ts +8 -8
- package/dist/erpnext/model/Contact.d.ts +20 -20
- package/dist/erpnext/model/Country.d.ts +2 -2
- package/dist/erpnext/model/Customer.d.ts +2 -2
- package/dist/erpnext/model/DeliveryNote.d.ts +12 -12
- package/dist/erpnext/model/DispatchRun.d.ts +25 -25
- package/dist/erpnext/model/DispatcherPreset.d.ts +8 -8
- package/dist/erpnext/model/File.d.ts +4 -4
- package/dist/erpnext/model/Fulfiller.d.ts +2 -2
- package/dist/erpnext/model/Item.d.ts +44 -44
- package/dist/erpnext/model/PaymentEntry.d.ts +2 -2
- package/dist/erpnext/model/ProductBundle.d.ts +6 -6
- package/dist/erpnext/model/PurchaseInvoice.d.ts +26 -26
- package/dist/erpnext/model/PurchaseOrder.d.ts +10 -10
- package/dist/erpnext/model/Receipt.d.ts +6 -6
- package/dist/erpnext/model/ReceiptDraft.d.ts +4 -4
- package/dist/erpnext/model/Shipment.d.ts +32 -32
- package/dist/erpnext/model/ShippingProvider.d.ts +2 -2
- package/dist/erpnext/model/StockEntry.d.ts +2 -2
- package/dist/erpnext/model/StockReconciliation.d.ts +2 -2
- package/dist/erpnext/model/Supplier.d.ts +6 -6
- package/dist/erpnext/resourceRequest.d.ts +1 -1
- package/dist/erpnext/resourceRequest.js +38 -14
- package/package.json +1 -1
|
@@ -9,13 +9,13 @@ export declare class ERPNextDeliveryNote {
|
|
|
9
9
|
create: <TInput extends TInputModel extends undefined ? Partial<{
|
|
10
10
|
status: string;
|
|
11
11
|
name: string;
|
|
12
|
+
doctype: string;
|
|
12
13
|
owner: string;
|
|
13
14
|
creation: string;
|
|
14
15
|
modified: string;
|
|
15
16
|
modified_by: string;
|
|
16
17
|
idx: number;
|
|
17
18
|
docstatus: number;
|
|
18
|
-
doctype: string;
|
|
19
19
|
tax_category: string;
|
|
20
20
|
company: string;
|
|
21
21
|
naming_series: string;
|
|
@@ -24,6 +24,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
24
24
|
items: {
|
|
25
25
|
description: string;
|
|
26
26
|
name: string;
|
|
27
|
+
doctype: string;
|
|
27
28
|
owner: string;
|
|
28
29
|
creation: string;
|
|
29
30
|
modified: string;
|
|
@@ -33,7 +34,6 @@ export declare class ERPNextDeliveryNote {
|
|
|
33
34
|
parenttype: string;
|
|
34
35
|
idx: number;
|
|
35
36
|
docstatus: number;
|
|
36
|
-
doctype: string;
|
|
37
37
|
image: string;
|
|
38
38
|
item_code: string;
|
|
39
39
|
qty: number;
|
|
@@ -202,13 +202,13 @@ export declare class ERPNextDeliveryNote {
|
|
|
202
202
|
}) => Promise<{
|
|
203
203
|
status: string;
|
|
204
204
|
name: string;
|
|
205
|
+
doctype: string;
|
|
205
206
|
owner: string;
|
|
206
207
|
creation: string;
|
|
207
208
|
modified: string;
|
|
208
209
|
modified_by: string;
|
|
209
210
|
idx: number;
|
|
210
211
|
docstatus: number;
|
|
211
|
-
doctype: string;
|
|
212
212
|
tax_category: string;
|
|
213
213
|
company: string;
|
|
214
214
|
naming_series: string;
|
|
@@ -217,6 +217,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
217
217
|
items: {
|
|
218
218
|
description: string;
|
|
219
219
|
name: string;
|
|
220
|
+
doctype: string;
|
|
220
221
|
owner: string;
|
|
221
222
|
creation: string;
|
|
222
223
|
modified: string;
|
|
@@ -226,7 +227,6 @@ export declare class ERPNextDeliveryNote {
|
|
|
226
227
|
parenttype: string;
|
|
227
228
|
idx: number;
|
|
228
229
|
docstatus: number;
|
|
229
|
-
doctype: string;
|
|
230
230
|
image: string;
|
|
231
231
|
item_code: string;
|
|
232
232
|
qty: number;
|
|
@@ -389,9 +389,9 @@ export declare class ERPNextDeliveryNote {
|
|
|
389
389
|
sales_partner?: string | null | undefined;
|
|
390
390
|
dispatch_run?: string | null | undefined;
|
|
391
391
|
}>;
|
|
392
|
-
getList: <TField extends ("status" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "
|
|
392
|
+
getList: <TField extends ("status" | "name" | "doctype" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "tax_category" | "company" | "naming_series" | "language" | "customer" | "items" | "discount_amount" | "pricing_rules" | "title" | "customer_name" | "posting_date" | "posting_time" | "set_posting_time" | "is_return" | "issue_credit_note" | "po_no" | "currency" | "conversion_rate" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "total_qty" | "base_total" | "base_net_total" | "total_net_weight" | "total" | "net_total" | "base_total_taxes_and_charges" | "total_taxes_and_charges" | "apply_discount_on" | "base_discount_amount" | "additional_discount_percentage" | "base_grand_total" | "base_rounding_adjustment" | "base_rounded_total" | "base_in_words" | "grand_total" | "rounding_adjustment" | "rounded_total" | "in_words" | "disable_rounded_total" | "is_internal_customer" | "per_billed" | "customer_group" | "territory" | "print_without_amount" | "group_same_items" | "per_installed" | "installation_status" | "per_returned" | "amount_eligible_for_commission" | "commission_rate" | "total_commission" | "packed_items" | "taxes" | "sales_team") | ("parent" | "parentfield" | "parenttype" | "cost_center" | "project" | "amended_from" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "dispatch_address_name" | "dispatch_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "tax_id" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "taxes_and_charges" | "other_charges_calculation" | "tc_name" | "terms" | "transporter" | "driver" | "lr_no" | "vehicle_no" | "transporter_name" | "driver_name" | "lr_date" | "campaign" | "source" | "represents_company" | "inter_company_reference" | "letter_head" | "select_print_heading" | "excise_page" | "instructions" | "auto_repeat" | "sales_partner" | "dispatch_run"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
|
|
393
393
|
fields?: TField[] | undefined;
|
|
394
|
-
filters?: string[][];
|
|
394
|
+
filters?: (string | string[])[][];
|
|
395
395
|
skip?: number;
|
|
396
396
|
limit?: number;
|
|
397
397
|
priority?: number;
|
|
@@ -400,13 +400,13 @@ export declare class ERPNextDeliveryNote {
|
|
|
400
400
|
}) => Promise<TAsDict extends false ? string[][] : Pick<{
|
|
401
401
|
status: string;
|
|
402
402
|
name: string;
|
|
403
|
+
doctype: string;
|
|
403
404
|
owner: string;
|
|
404
405
|
creation: string;
|
|
405
406
|
modified: string;
|
|
406
407
|
modified_by: string;
|
|
407
408
|
idx: number;
|
|
408
409
|
docstatus: number;
|
|
409
|
-
doctype: string;
|
|
410
410
|
tax_category: string;
|
|
411
411
|
company: string;
|
|
412
412
|
naming_series: string;
|
|
@@ -415,6 +415,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
415
415
|
items: {
|
|
416
416
|
description: string;
|
|
417
417
|
name: string;
|
|
418
|
+
doctype: string;
|
|
418
419
|
owner: string;
|
|
419
420
|
creation: string;
|
|
420
421
|
modified: string;
|
|
@@ -424,7 +425,6 @@ export declare class ERPNextDeliveryNote {
|
|
|
424
425
|
parenttype: string;
|
|
425
426
|
idx: number;
|
|
426
427
|
docstatus: number;
|
|
427
|
-
doctype: string;
|
|
428
428
|
image: string;
|
|
429
429
|
item_code: string;
|
|
430
430
|
qty: number;
|
|
@@ -593,13 +593,13 @@ export declare class ERPNextDeliveryNote {
|
|
|
593
593
|
}) => Promise<{
|
|
594
594
|
status: string;
|
|
595
595
|
name: string;
|
|
596
|
+
doctype: string;
|
|
596
597
|
owner: string;
|
|
597
598
|
creation: string;
|
|
598
599
|
modified: string;
|
|
599
600
|
modified_by: string;
|
|
600
601
|
idx: number;
|
|
601
602
|
docstatus: number;
|
|
602
|
-
doctype: string;
|
|
603
603
|
tax_category: string;
|
|
604
604
|
company: string;
|
|
605
605
|
naming_series: string;
|
|
@@ -608,6 +608,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
608
608
|
items: {
|
|
609
609
|
description: string;
|
|
610
610
|
name: string;
|
|
611
|
+
doctype: string;
|
|
611
612
|
owner: string;
|
|
612
613
|
creation: string;
|
|
613
614
|
modified: string;
|
|
@@ -617,7 +618,6 @@ export declare class ERPNextDeliveryNote {
|
|
|
617
618
|
parenttype: string;
|
|
618
619
|
idx: number;
|
|
619
620
|
docstatus: number;
|
|
620
|
-
doctype: string;
|
|
621
621
|
image: string;
|
|
622
622
|
item_code: string;
|
|
623
623
|
qty: number;
|
|
@@ -783,13 +783,13 @@ export declare class ERPNextDeliveryNote {
|
|
|
783
783
|
updateById: <TInput extends TInputModel extends undefined ? Partial<{
|
|
784
784
|
status: string;
|
|
785
785
|
name: string;
|
|
786
|
+
doctype: string;
|
|
786
787
|
owner: string;
|
|
787
788
|
creation: string;
|
|
788
789
|
modified: string;
|
|
789
790
|
modified_by: string;
|
|
790
791
|
idx: number;
|
|
791
792
|
docstatus: number;
|
|
792
|
-
doctype: string;
|
|
793
793
|
tax_category: string;
|
|
794
794
|
company: string;
|
|
795
795
|
naming_series: string;
|
|
@@ -798,6 +798,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
798
798
|
items: {
|
|
799
799
|
description: string;
|
|
800
800
|
name: string;
|
|
801
|
+
doctype: string;
|
|
801
802
|
owner: string;
|
|
802
803
|
creation: string;
|
|
803
804
|
modified: string;
|
|
@@ -807,7 +808,6 @@ export declare class ERPNextDeliveryNote {
|
|
|
807
808
|
parenttype: string;
|
|
808
809
|
idx: number;
|
|
809
810
|
docstatus: number;
|
|
810
|
-
doctype: string;
|
|
811
811
|
image: string;
|
|
812
812
|
item_code: string;
|
|
813
813
|
qty: number;
|
|
@@ -977,13 +977,13 @@ export declare class ERPNextDeliveryNote {
|
|
|
977
977
|
}) => Promise<{
|
|
978
978
|
status: string;
|
|
979
979
|
name: string;
|
|
980
|
+
doctype: string;
|
|
980
981
|
owner: string;
|
|
981
982
|
creation: string;
|
|
982
983
|
modified: string;
|
|
983
984
|
modified_by: string;
|
|
984
985
|
idx: number;
|
|
985
986
|
docstatus: number;
|
|
986
|
-
doctype: string;
|
|
987
987
|
tax_category: string;
|
|
988
988
|
company: string;
|
|
989
989
|
naming_series: string;
|
|
@@ -992,6 +992,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
992
992
|
items: {
|
|
993
993
|
description: string;
|
|
994
994
|
name: string;
|
|
995
|
+
doctype: string;
|
|
995
996
|
owner: string;
|
|
996
997
|
creation: string;
|
|
997
998
|
modified: string;
|
|
@@ -1001,7 +1002,6 @@ export declare class ERPNextDeliveryNote {
|
|
|
1001
1002
|
parenttype: string;
|
|
1002
1003
|
idx: number;
|
|
1003
1004
|
docstatus: number;
|
|
1004
|
-
doctype: string;
|
|
1005
1005
|
image: string;
|
|
1006
1006
|
item_code: string;
|
|
1007
1007
|
qty: number;
|
|
@@ -1173,13 +1173,13 @@ export declare class ERPNextDeliveryNote {
|
|
|
1173
1173
|
cancelDeliveryNote: (resourceId: string) => Promise<{
|
|
1174
1174
|
status: string;
|
|
1175
1175
|
name: string;
|
|
1176
|
+
doctype: string;
|
|
1176
1177
|
owner: string;
|
|
1177
1178
|
creation: string;
|
|
1178
1179
|
modified: string;
|
|
1179
1180
|
modified_by: string;
|
|
1180
1181
|
idx: number;
|
|
1181
1182
|
docstatus: number;
|
|
1182
|
-
doctype: string;
|
|
1183
1183
|
tax_category: string;
|
|
1184
1184
|
company: string;
|
|
1185
1185
|
naming_series: string;
|
|
@@ -1188,6 +1188,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
1188
1188
|
items: {
|
|
1189
1189
|
description: string;
|
|
1190
1190
|
name: string;
|
|
1191
|
+
doctype: string;
|
|
1191
1192
|
owner: string;
|
|
1192
1193
|
creation: string;
|
|
1193
1194
|
modified: string;
|
|
@@ -1197,7 +1198,6 @@ export declare class ERPNextDeliveryNote {
|
|
|
1197
1198
|
parenttype: string;
|
|
1198
1199
|
idx: number;
|
|
1199
1200
|
docstatus: number;
|
|
1200
|
-
doctype: string;
|
|
1201
1201
|
image: string;
|
|
1202
1202
|
item_code: string;
|
|
1203
1203
|
qty: number;
|
|
@@ -8,9 +8,9 @@ export declare class ERPNextItem {
|
|
|
8
8
|
protected temporalClient: TemporalClient;
|
|
9
9
|
protected baseRequest: ERPNextDoctypeResourceRequest<typeof Item>;
|
|
10
10
|
protected methodRequest: ERPNextMethodRequest;
|
|
11
|
-
getList: <TField extends ("description" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "
|
|
11
|
+
getList: <TField extends ("description" | "name" | "doctype" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "disabled" | "naming_series" | "item_code" | "item_name" | "item_group" | "stock_uom" | "grant_commission" | "weight_per_unit" | "weight_uom" | "taxes" | "override_base_name" | "sync_from_warehouse" | "allow_alternative_item" | "is_stock_item" | "include_item_in_manufacturing" | "opening_stock" | "valuation_rate" | "standard_rate" | "is_fixed_asset" | "auto_create_assets" | "over_delivery_receipt_allowance" | "over_billing_allowance" | "custom_is_shipping_enabled" | "shipping_dimensions_unit" | "packaging_weight_unit_cardboard" | "packaging_weight_unit_plastic" | "shelf_life_in_days" | "end_of_life" | "default_material_request_type" | "valuation_method" | "product_weight" | "product_weight_unit" | "has_batch_no" | "create_new_batch" | "has_expiry_date" | "retain_sample" | "sample_quantity" | "has_serial_no" | "has_variants" | "variant_based_on" | "is_purchase_item" | "min_order_qty" | "safety_stock" | "lead_time_days" | "last_purchase_rate" | "is_customer_provided_item" | "delivered_by_supplier" | "sales_uom" | "is_sales_item" | "max_discount" | "enable_deferred_revenue" | "no_of_months" | "enable_deferred_expense" | "no_of_months_exp" | "inspection_required_before_purchase" | "inspection_required_before_delivery" | "is_sub_contracted_item" | "customer_code" | "total_projected_qty" | "barcodes" | "reorder_levels" | "uoms" | "attributes" | "item_defaults" | "supplier_items" | "customer_items") | ("image" | "warehouse_category" | "ean" | "shipping_template" | "shipping_width" | "shipping_length" | "shipping_height" | "packaging_weight_cardboard" | "packaging_weight_plastic" | "custom_product_version" | "custom_supplier" | "custom_stock_reserve"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
|
|
12
12
|
fields?: TField[] | undefined;
|
|
13
|
-
filters?: string[][];
|
|
13
|
+
filters?: (string | string[])[][];
|
|
14
14
|
skip?: number;
|
|
15
15
|
limit?: number;
|
|
16
16
|
priority?: number;
|
|
@@ -19,13 +19,13 @@ export declare class ERPNextItem {
|
|
|
19
19
|
}) => Promise<TAsDict extends false ? string[][] : Pick<{
|
|
20
20
|
description: string;
|
|
21
21
|
name: string;
|
|
22
|
+
doctype: string;
|
|
22
23
|
owner: string;
|
|
23
24
|
creation: string;
|
|
24
25
|
modified: string;
|
|
25
26
|
modified_by: string;
|
|
26
27
|
idx: number;
|
|
27
28
|
docstatus: number;
|
|
28
|
-
doctype: string;
|
|
29
29
|
disabled: number;
|
|
30
30
|
naming_series: string;
|
|
31
31
|
item_code: string;
|
|
@@ -87,6 +87,7 @@ export declare class ERPNextItem {
|
|
|
87
87
|
total_projected_qty: number;
|
|
88
88
|
barcodes: {
|
|
89
89
|
name: string;
|
|
90
|
+
doctype: string;
|
|
90
91
|
owner: string;
|
|
91
92
|
creation: string;
|
|
92
93
|
modified: string;
|
|
@@ -96,13 +97,13 @@ export declare class ERPNextItem {
|
|
|
96
97
|
parenttype: string;
|
|
97
98
|
idx: number;
|
|
98
99
|
docstatus: number;
|
|
99
|
-
doctype: string;
|
|
100
100
|
barcode: string;
|
|
101
101
|
barcode_type: string;
|
|
102
102
|
}[];
|
|
103
103
|
reorder_levels: any[];
|
|
104
104
|
uoms: {
|
|
105
105
|
name: string;
|
|
106
|
+
doctype: string;
|
|
106
107
|
owner: string;
|
|
107
108
|
creation: string;
|
|
108
109
|
modified: string;
|
|
@@ -112,13 +113,13 @@ export declare class ERPNextItem {
|
|
|
112
113
|
parenttype: string;
|
|
113
114
|
idx: number;
|
|
114
115
|
docstatus: number;
|
|
115
|
-
doctype: string;
|
|
116
116
|
uom: string;
|
|
117
117
|
conversion_factor: number;
|
|
118
118
|
}[];
|
|
119
119
|
attributes: any[];
|
|
120
120
|
item_defaults: {
|
|
121
121
|
name: string;
|
|
122
|
+
doctype: string;
|
|
122
123
|
owner: string;
|
|
123
124
|
creation: string;
|
|
124
125
|
modified: string;
|
|
@@ -128,7 +129,6 @@ export declare class ERPNextItem {
|
|
|
128
129
|
parenttype: string;
|
|
129
130
|
idx: number;
|
|
130
131
|
docstatus: number;
|
|
131
|
-
doctype: string;
|
|
132
132
|
company: string;
|
|
133
133
|
default_warehouse: string;
|
|
134
134
|
}[];
|
|
@@ -153,13 +153,13 @@ export declare class ERPNextItem {
|
|
|
153
153
|
}) => Promise<{
|
|
154
154
|
description: string;
|
|
155
155
|
name: string;
|
|
156
|
+
doctype: string;
|
|
156
157
|
owner: string;
|
|
157
158
|
creation: string;
|
|
158
159
|
modified: string;
|
|
159
160
|
modified_by: string;
|
|
160
161
|
idx: number;
|
|
161
162
|
docstatus: number;
|
|
162
|
-
doctype: string;
|
|
163
163
|
disabled: number;
|
|
164
164
|
naming_series: string;
|
|
165
165
|
item_code: string;
|
|
@@ -221,6 +221,7 @@ export declare class ERPNextItem {
|
|
|
221
221
|
total_projected_qty: number;
|
|
222
222
|
barcodes: {
|
|
223
223
|
name: string;
|
|
224
|
+
doctype: string;
|
|
224
225
|
owner: string;
|
|
225
226
|
creation: string;
|
|
226
227
|
modified: string;
|
|
@@ -230,13 +231,13 @@ export declare class ERPNextItem {
|
|
|
230
231
|
parenttype: string;
|
|
231
232
|
idx: number;
|
|
232
233
|
docstatus: number;
|
|
233
|
-
doctype: string;
|
|
234
234
|
barcode: string;
|
|
235
235
|
barcode_type: string;
|
|
236
236
|
}[];
|
|
237
237
|
reorder_levels: any[];
|
|
238
238
|
uoms: {
|
|
239
239
|
name: string;
|
|
240
|
+
doctype: string;
|
|
240
241
|
owner: string;
|
|
241
242
|
creation: string;
|
|
242
243
|
modified: string;
|
|
@@ -246,13 +247,13 @@ export declare class ERPNextItem {
|
|
|
246
247
|
parenttype: string;
|
|
247
248
|
idx: number;
|
|
248
249
|
docstatus: number;
|
|
249
|
-
doctype: string;
|
|
250
250
|
uom: string;
|
|
251
251
|
conversion_factor: number;
|
|
252
252
|
}[];
|
|
253
253
|
attributes: any[];
|
|
254
254
|
item_defaults: {
|
|
255
255
|
name: string;
|
|
256
|
+
doctype: string;
|
|
256
257
|
owner: string;
|
|
257
258
|
creation: string;
|
|
258
259
|
modified: string;
|
|
@@ -262,7 +263,6 @@ export declare class ERPNextItem {
|
|
|
262
263
|
parenttype: string;
|
|
263
264
|
idx: number;
|
|
264
265
|
docstatus: number;
|
|
265
|
-
doctype: string;
|
|
266
266
|
company: string;
|
|
267
267
|
default_warehouse: string;
|
|
268
268
|
}[];
|
|
@@ -284,13 +284,13 @@ export declare class ERPNextItem {
|
|
|
284
284
|
updateById: <TInput extends TInputModel extends undefined ? Partial<{
|
|
285
285
|
description: string;
|
|
286
286
|
name: string;
|
|
287
|
+
doctype: string;
|
|
287
288
|
owner: string;
|
|
288
289
|
creation: string;
|
|
289
290
|
modified: string;
|
|
290
291
|
modified_by: string;
|
|
291
292
|
idx: number;
|
|
292
293
|
docstatus: number;
|
|
293
|
-
doctype: string;
|
|
294
294
|
disabled: number;
|
|
295
295
|
naming_series: string;
|
|
296
296
|
item_code: string;
|
|
@@ -352,6 +352,7 @@ export declare class ERPNextItem {
|
|
|
352
352
|
total_projected_qty: number;
|
|
353
353
|
barcodes: {
|
|
354
354
|
name: string;
|
|
355
|
+
doctype: string;
|
|
355
356
|
owner: string;
|
|
356
357
|
creation: string;
|
|
357
358
|
modified: string;
|
|
@@ -361,13 +362,13 @@ export declare class ERPNextItem {
|
|
|
361
362
|
parenttype: string;
|
|
362
363
|
idx: number;
|
|
363
364
|
docstatus: number;
|
|
364
|
-
doctype: string;
|
|
365
365
|
barcode: string;
|
|
366
366
|
barcode_type: string;
|
|
367
367
|
}[];
|
|
368
368
|
reorder_levels: any[];
|
|
369
369
|
uoms: {
|
|
370
370
|
name: string;
|
|
371
|
+
doctype: string;
|
|
371
372
|
owner: string;
|
|
372
373
|
creation: string;
|
|
373
374
|
modified: string;
|
|
@@ -377,13 +378,13 @@ export declare class ERPNextItem {
|
|
|
377
378
|
parenttype: string;
|
|
378
379
|
idx: number;
|
|
379
380
|
docstatus: number;
|
|
380
|
-
doctype: string;
|
|
381
381
|
uom: string;
|
|
382
382
|
conversion_factor: number;
|
|
383
383
|
}[];
|
|
384
384
|
attributes: any[];
|
|
385
385
|
item_defaults: {
|
|
386
386
|
name: string;
|
|
387
|
+
doctype: string;
|
|
387
388
|
owner: string;
|
|
388
389
|
creation: string;
|
|
389
390
|
modified: string;
|
|
@@ -393,7 +394,6 @@ export declare class ERPNextItem {
|
|
|
393
394
|
parenttype: string;
|
|
394
395
|
idx: number;
|
|
395
396
|
docstatus: number;
|
|
396
|
-
doctype: string;
|
|
397
397
|
company: string;
|
|
398
398
|
default_warehouse: string;
|
|
399
399
|
}[];
|
|
@@ -419,13 +419,13 @@ export declare class ERPNextItem {
|
|
|
419
419
|
}) => Promise<{
|
|
420
420
|
description: string;
|
|
421
421
|
name: string;
|
|
422
|
+
doctype: string;
|
|
422
423
|
owner: string;
|
|
423
424
|
creation: string;
|
|
424
425
|
modified: string;
|
|
425
426
|
modified_by: string;
|
|
426
427
|
idx: number;
|
|
427
428
|
docstatus: number;
|
|
428
|
-
doctype: string;
|
|
429
429
|
disabled: number;
|
|
430
430
|
naming_series: string;
|
|
431
431
|
item_code: string;
|
|
@@ -487,6 +487,7 @@ export declare class ERPNextItem {
|
|
|
487
487
|
total_projected_qty: number;
|
|
488
488
|
barcodes: {
|
|
489
489
|
name: string;
|
|
490
|
+
doctype: string;
|
|
490
491
|
owner: string;
|
|
491
492
|
creation: string;
|
|
492
493
|
modified: string;
|
|
@@ -496,13 +497,13 @@ export declare class ERPNextItem {
|
|
|
496
497
|
parenttype: string;
|
|
497
498
|
idx: number;
|
|
498
499
|
docstatus: number;
|
|
499
|
-
doctype: string;
|
|
500
500
|
barcode: string;
|
|
501
501
|
barcode_type: string;
|
|
502
502
|
}[];
|
|
503
503
|
reorder_levels: any[];
|
|
504
504
|
uoms: {
|
|
505
505
|
name: string;
|
|
506
|
+
doctype: string;
|
|
506
507
|
owner: string;
|
|
507
508
|
creation: string;
|
|
508
509
|
modified: string;
|
|
@@ -512,13 +513,13 @@ export declare class ERPNextItem {
|
|
|
512
513
|
parenttype: string;
|
|
513
514
|
idx: number;
|
|
514
515
|
docstatus: number;
|
|
515
|
-
doctype: string;
|
|
516
516
|
uom: string;
|
|
517
517
|
conversion_factor: number;
|
|
518
518
|
}[];
|
|
519
519
|
attributes: any[];
|
|
520
520
|
item_defaults: {
|
|
521
521
|
name: string;
|
|
522
|
+
doctype: string;
|
|
522
523
|
owner: string;
|
|
523
524
|
creation: string;
|
|
524
525
|
modified: string;
|
|
@@ -528,7 +529,6 @@ export declare class ERPNextItem {
|
|
|
528
529
|
parenttype: string;
|
|
529
530
|
idx: number;
|
|
530
531
|
docstatus: number;
|
|
531
|
-
doctype: string;
|
|
532
532
|
company: string;
|
|
533
533
|
default_warehouse: string;
|
|
534
534
|
}[];
|
|
@@ -554,13 +554,13 @@ export declare class ERPNextItem {
|
|
|
554
554
|
create: <TInput extends TInputModel extends undefined ? Partial<{
|
|
555
555
|
description: string;
|
|
556
556
|
name: string;
|
|
557
|
+
doctype: string;
|
|
557
558
|
owner: string;
|
|
558
559
|
creation: string;
|
|
559
560
|
modified: string;
|
|
560
561
|
modified_by: string;
|
|
561
562
|
idx: number;
|
|
562
563
|
docstatus: number;
|
|
563
|
-
doctype: string;
|
|
564
564
|
disabled: number;
|
|
565
565
|
naming_series: string;
|
|
566
566
|
item_code: string;
|
|
@@ -622,6 +622,7 @@ export declare class ERPNextItem {
|
|
|
622
622
|
total_projected_qty: number;
|
|
623
623
|
barcodes: {
|
|
624
624
|
name: string;
|
|
625
|
+
doctype: string;
|
|
625
626
|
owner: string;
|
|
626
627
|
creation: string;
|
|
627
628
|
modified: string;
|
|
@@ -631,13 +632,13 @@ export declare class ERPNextItem {
|
|
|
631
632
|
parenttype: string;
|
|
632
633
|
idx: number;
|
|
633
634
|
docstatus: number;
|
|
634
|
-
doctype: string;
|
|
635
635
|
barcode: string;
|
|
636
636
|
barcode_type: string;
|
|
637
637
|
}[];
|
|
638
638
|
reorder_levels: any[];
|
|
639
639
|
uoms: {
|
|
640
640
|
name: string;
|
|
641
|
+
doctype: string;
|
|
641
642
|
owner: string;
|
|
642
643
|
creation: string;
|
|
643
644
|
modified: string;
|
|
@@ -647,13 +648,13 @@ export declare class ERPNextItem {
|
|
|
647
648
|
parenttype: string;
|
|
648
649
|
idx: number;
|
|
649
650
|
docstatus: number;
|
|
650
|
-
doctype: string;
|
|
651
651
|
uom: string;
|
|
652
652
|
conversion_factor: number;
|
|
653
653
|
}[];
|
|
654
654
|
attributes: any[];
|
|
655
655
|
item_defaults: {
|
|
656
656
|
name: string;
|
|
657
|
+
doctype: string;
|
|
657
658
|
owner: string;
|
|
658
659
|
creation: string;
|
|
659
660
|
modified: string;
|
|
@@ -663,7 +664,6 @@ export declare class ERPNextItem {
|
|
|
663
664
|
parenttype: string;
|
|
664
665
|
idx: number;
|
|
665
666
|
docstatus: number;
|
|
666
|
-
doctype: string;
|
|
667
667
|
company: string;
|
|
668
668
|
default_warehouse: string;
|
|
669
669
|
}[];
|
|
@@ -688,13 +688,13 @@ export declare class ERPNextItem {
|
|
|
688
688
|
}) => Promise<{
|
|
689
689
|
description: string;
|
|
690
690
|
name: string;
|
|
691
|
+
doctype: string;
|
|
691
692
|
owner: string;
|
|
692
693
|
creation: string;
|
|
693
694
|
modified: string;
|
|
694
695
|
modified_by: string;
|
|
695
696
|
idx: number;
|
|
696
697
|
docstatus: number;
|
|
697
|
-
doctype: string;
|
|
698
698
|
disabled: number;
|
|
699
699
|
naming_series: string;
|
|
700
700
|
item_code: string;
|
|
@@ -756,6 +756,7 @@ export declare class ERPNextItem {
|
|
|
756
756
|
total_projected_qty: number;
|
|
757
757
|
barcodes: {
|
|
758
758
|
name: string;
|
|
759
|
+
doctype: string;
|
|
759
760
|
owner: string;
|
|
760
761
|
creation: string;
|
|
761
762
|
modified: string;
|
|
@@ -765,13 +766,13 @@ export declare class ERPNextItem {
|
|
|
765
766
|
parenttype: string;
|
|
766
767
|
idx: number;
|
|
767
768
|
docstatus: number;
|
|
768
|
-
doctype: string;
|
|
769
769
|
barcode: string;
|
|
770
770
|
barcode_type: string;
|
|
771
771
|
}[];
|
|
772
772
|
reorder_levels: any[];
|
|
773
773
|
uoms: {
|
|
774
774
|
name: string;
|
|
775
|
+
doctype: string;
|
|
775
776
|
owner: string;
|
|
776
777
|
creation: string;
|
|
777
778
|
modified: string;
|
|
@@ -781,13 +782,13 @@ export declare class ERPNextItem {
|
|
|
781
782
|
parenttype: string;
|
|
782
783
|
idx: number;
|
|
783
784
|
docstatus: number;
|
|
784
|
-
doctype: string;
|
|
785
785
|
uom: string;
|
|
786
786
|
conversion_factor: number;
|
|
787
787
|
}[];
|
|
788
788
|
attributes: any[];
|
|
789
789
|
item_defaults: {
|
|
790
790
|
name: string;
|
|
791
|
+
doctype: string;
|
|
791
792
|
owner: string;
|
|
792
793
|
creation: string;
|
|
793
794
|
modified: string;
|
|
@@ -797,7 +798,6 @@ export declare class ERPNextItem {
|
|
|
797
798
|
parenttype: string;
|
|
798
799
|
idx: number;
|
|
799
800
|
docstatus: number;
|
|
800
|
-
doctype: string;
|
|
801
801
|
company: string;
|
|
802
802
|
default_warehouse: string;
|
|
803
803
|
}[];
|