erpnext-queue-client 1.5.3 → 1.6.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 +3 -2
- package/dist/erpnext/doctypes/address.d.ts +13 -13
- package/dist/erpnext/doctypes/contact.d.ts +25 -25
- package/dist/erpnext/doctypes/deliveryNote.d.ts +15 -15
- package/dist/erpnext/doctypes/item.d.ts +25 -31
- package/dist/erpnext/doctypes/purchaseInvoice.d.ts +33 -33
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +19 -19
- package/dist/erpnext/doctypes/shipment.d.ts +30 -30
- 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 -52
- package/dist/erpnext/model/Item.js +0 -1
- 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.js +9 -5
- 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,7 +389,7 @@ 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
394
|
filters?: string[][];
|
|
395
395
|
skip?: 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,7 +8,7 @@ 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
13
|
filters?: string[][];
|
|
14
14
|
skip?: 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;
|
|
@@ -84,10 +84,10 @@ export declare class ERPNextItem {
|
|
|
84
84
|
inspection_required_before_delivery: number;
|
|
85
85
|
is_sub_contracted_item: number;
|
|
86
86
|
customer_code: string;
|
|
87
|
-
published_in_website: number;
|
|
88
87
|
total_projected_qty: number;
|
|
89
88
|
barcodes: {
|
|
90
89
|
name: string;
|
|
90
|
+
doctype: string;
|
|
91
91
|
owner: string;
|
|
92
92
|
creation: string;
|
|
93
93
|
modified: string;
|
|
@@ -97,13 +97,13 @@ export declare class ERPNextItem {
|
|
|
97
97
|
parenttype: string;
|
|
98
98
|
idx: number;
|
|
99
99
|
docstatus: number;
|
|
100
|
-
doctype: string;
|
|
101
100
|
barcode: string;
|
|
102
101
|
barcode_type: string;
|
|
103
102
|
}[];
|
|
104
103
|
reorder_levels: any[];
|
|
105
104
|
uoms: {
|
|
106
105
|
name: string;
|
|
106
|
+
doctype: string;
|
|
107
107
|
owner: string;
|
|
108
108
|
creation: string;
|
|
109
109
|
modified: string;
|
|
@@ -113,13 +113,13 @@ export declare class ERPNextItem {
|
|
|
113
113
|
parenttype: string;
|
|
114
114
|
idx: number;
|
|
115
115
|
docstatus: number;
|
|
116
|
-
doctype: string;
|
|
117
116
|
uom: string;
|
|
118
117
|
conversion_factor: number;
|
|
119
118
|
}[];
|
|
120
119
|
attributes: any[];
|
|
121
120
|
item_defaults: {
|
|
122
121
|
name: string;
|
|
122
|
+
doctype: string;
|
|
123
123
|
owner: string;
|
|
124
124
|
creation: string;
|
|
125
125
|
modified: string;
|
|
@@ -129,7 +129,6 @@ export declare class ERPNextItem {
|
|
|
129
129
|
parenttype: string;
|
|
130
130
|
idx: number;
|
|
131
131
|
docstatus: number;
|
|
132
|
-
doctype: string;
|
|
133
132
|
company: string;
|
|
134
133
|
default_warehouse: string;
|
|
135
134
|
}[];
|
|
@@ -154,13 +153,13 @@ export declare class ERPNextItem {
|
|
|
154
153
|
}) => Promise<{
|
|
155
154
|
description: string;
|
|
156
155
|
name: string;
|
|
156
|
+
doctype: string;
|
|
157
157
|
owner: string;
|
|
158
158
|
creation: string;
|
|
159
159
|
modified: string;
|
|
160
160
|
modified_by: string;
|
|
161
161
|
idx: number;
|
|
162
162
|
docstatus: number;
|
|
163
|
-
doctype: string;
|
|
164
163
|
disabled: number;
|
|
165
164
|
naming_series: string;
|
|
166
165
|
item_code: string;
|
|
@@ -219,10 +218,10 @@ export declare class ERPNextItem {
|
|
|
219
218
|
inspection_required_before_delivery: number;
|
|
220
219
|
is_sub_contracted_item: number;
|
|
221
220
|
customer_code: string;
|
|
222
|
-
published_in_website: number;
|
|
223
221
|
total_projected_qty: number;
|
|
224
222
|
barcodes: {
|
|
225
223
|
name: string;
|
|
224
|
+
doctype: string;
|
|
226
225
|
owner: string;
|
|
227
226
|
creation: string;
|
|
228
227
|
modified: string;
|
|
@@ -232,13 +231,13 @@ export declare class ERPNextItem {
|
|
|
232
231
|
parenttype: string;
|
|
233
232
|
idx: number;
|
|
234
233
|
docstatus: number;
|
|
235
|
-
doctype: string;
|
|
236
234
|
barcode: string;
|
|
237
235
|
barcode_type: string;
|
|
238
236
|
}[];
|
|
239
237
|
reorder_levels: any[];
|
|
240
238
|
uoms: {
|
|
241
239
|
name: string;
|
|
240
|
+
doctype: string;
|
|
242
241
|
owner: string;
|
|
243
242
|
creation: string;
|
|
244
243
|
modified: string;
|
|
@@ -248,13 +247,13 @@ export declare class ERPNextItem {
|
|
|
248
247
|
parenttype: string;
|
|
249
248
|
idx: number;
|
|
250
249
|
docstatus: number;
|
|
251
|
-
doctype: string;
|
|
252
250
|
uom: string;
|
|
253
251
|
conversion_factor: number;
|
|
254
252
|
}[];
|
|
255
253
|
attributes: any[];
|
|
256
254
|
item_defaults: {
|
|
257
255
|
name: string;
|
|
256
|
+
doctype: string;
|
|
258
257
|
owner: string;
|
|
259
258
|
creation: string;
|
|
260
259
|
modified: string;
|
|
@@ -264,7 +263,6 @@ export declare class ERPNextItem {
|
|
|
264
263
|
parenttype: string;
|
|
265
264
|
idx: number;
|
|
266
265
|
docstatus: number;
|
|
267
|
-
doctype: string;
|
|
268
266
|
company: string;
|
|
269
267
|
default_warehouse: string;
|
|
270
268
|
}[];
|
|
@@ -286,13 +284,13 @@ export declare class ERPNextItem {
|
|
|
286
284
|
updateById: <TInput extends TInputModel extends undefined ? Partial<{
|
|
287
285
|
description: string;
|
|
288
286
|
name: string;
|
|
287
|
+
doctype: string;
|
|
289
288
|
owner: string;
|
|
290
289
|
creation: string;
|
|
291
290
|
modified: string;
|
|
292
291
|
modified_by: string;
|
|
293
292
|
idx: number;
|
|
294
293
|
docstatus: number;
|
|
295
|
-
doctype: string;
|
|
296
294
|
disabled: number;
|
|
297
295
|
naming_series: string;
|
|
298
296
|
item_code: string;
|
|
@@ -351,10 +349,10 @@ export declare class ERPNextItem {
|
|
|
351
349
|
inspection_required_before_delivery: number;
|
|
352
350
|
is_sub_contracted_item: number;
|
|
353
351
|
customer_code: string;
|
|
354
|
-
published_in_website: number;
|
|
355
352
|
total_projected_qty: number;
|
|
356
353
|
barcodes: {
|
|
357
354
|
name: string;
|
|
355
|
+
doctype: string;
|
|
358
356
|
owner: string;
|
|
359
357
|
creation: string;
|
|
360
358
|
modified: string;
|
|
@@ -364,13 +362,13 @@ export declare class ERPNextItem {
|
|
|
364
362
|
parenttype: string;
|
|
365
363
|
idx: number;
|
|
366
364
|
docstatus: number;
|
|
367
|
-
doctype: string;
|
|
368
365
|
barcode: string;
|
|
369
366
|
barcode_type: string;
|
|
370
367
|
}[];
|
|
371
368
|
reorder_levels: any[];
|
|
372
369
|
uoms: {
|
|
373
370
|
name: string;
|
|
371
|
+
doctype: string;
|
|
374
372
|
owner: string;
|
|
375
373
|
creation: string;
|
|
376
374
|
modified: string;
|
|
@@ -380,13 +378,13 @@ export declare class ERPNextItem {
|
|
|
380
378
|
parenttype: string;
|
|
381
379
|
idx: number;
|
|
382
380
|
docstatus: number;
|
|
383
|
-
doctype: string;
|
|
384
381
|
uom: string;
|
|
385
382
|
conversion_factor: number;
|
|
386
383
|
}[];
|
|
387
384
|
attributes: any[];
|
|
388
385
|
item_defaults: {
|
|
389
386
|
name: string;
|
|
387
|
+
doctype: string;
|
|
390
388
|
owner: string;
|
|
391
389
|
creation: string;
|
|
392
390
|
modified: string;
|
|
@@ -396,7 +394,6 @@ export declare class ERPNextItem {
|
|
|
396
394
|
parenttype: string;
|
|
397
395
|
idx: number;
|
|
398
396
|
docstatus: number;
|
|
399
|
-
doctype: string;
|
|
400
397
|
company: string;
|
|
401
398
|
default_warehouse: string;
|
|
402
399
|
}[];
|
|
@@ -422,13 +419,13 @@ export declare class ERPNextItem {
|
|
|
422
419
|
}) => Promise<{
|
|
423
420
|
description: string;
|
|
424
421
|
name: string;
|
|
422
|
+
doctype: string;
|
|
425
423
|
owner: string;
|
|
426
424
|
creation: string;
|
|
427
425
|
modified: string;
|
|
428
426
|
modified_by: string;
|
|
429
427
|
idx: number;
|
|
430
428
|
docstatus: number;
|
|
431
|
-
doctype: string;
|
|
432
429
|
disabled: number;
|
|
433
430
|
naming_series: string;
|
|
434
431
|
item_code: string;
|
|
@@ -487,10 +484,10 @@ export declare class ERPNextItem {
|
|
|
487
484
|
inspection_required_before_delivery: number;
|
|
488
485
|
is_sub_contracted_item: number;
|
|
489
486
|
customer_code: string;
|
|
490
|
-
published_in_website: number;
|
|
491
487
|
total_projected_qty: number;
|
|
492
488
|
barcodes: {
|
|
493
489
|
name: string;
|
|
490
|
+
doctype: string;
|
|
494
491
|
owner: string;
|
|
495
492
|
creation: string;
|
|
496
493
|
modified: string;
|
|
@@ -500,13 +497,13 @@ export declare class ERPNextItem {
|
|
|
500
497
|
parenttype: string;
|
|
501
498
|
idx: number;
|
|
502
499
|
docstatus: number;
|
|
503
|
-
doctype: string;
|
|
504
500
|
barcode: string;
|
|
505
501
|
barcode_type: string;
|
|
506
502
|
}[];
|
|
507
503
|
reorder_levels: any[];
|
|
508
504
|
uoms: {
|
|
509
505
|
name: string;
|
|
506
|
+
doctype: string;
|
|
510
507
|
owner: string;
|
|
511
508
|
creation: string;
|
|
512
509
|
modified: string;
|
|
@@ -516,13 +513,13 @@ export declare class ERPNextItem {
|
|
|
516
513
|
parenttype: string;
|
|
517
514
|
idx: number;
|
|
518
515
|
docstatus: number;
|
|
519
|
-
doctype: string;
|
|
520
516
|
uom: string;
|
|
521
517
|
conversion_factor: number;
|
|
522
518
|
}[];
|
|
523
519
|
attributes: any[];
|
|
524
520
|
item_defaults: {
|
|
525
521
|
name: string;
|
|
522
|
+
doctype: string;
|
|
526
523
|
owner: string;
|
|
527
524
|
creation: string;
|
|
528
525
|
modified: string;
|
|
@@ -532,7 +529,6 @@ export declare class ERPNextItem {
|
|
|
532
529
|
parenttype: string;
|
|
533
530
|
idx: number;
|
|
534
531
|
docstatus: number;
|
|
535
|
-
doctype: string;
|
|
536
532
|
company: string;
|
|
537
533
|
default_warehouse: string;
|
|
538
534
|
}[];
|
|
@@ -558,13 +554,13 @@ export declare class ERPNextItem {
|
|
|
558
554
|
create: <TInput extends TInputModel extends undefined ? Partial<{
|
|
559
555
|
description: string;
|
|
560
556
|
name: string;
|
|
557
|
+
doctype: string;
|
|
561
558
|
owner: string;
|
|
562
559
|
creation: string;
|
|
563
560
|
modified: string;
|
|
564
561
|
modified_by: string;
|
|
565
562
|
idx: number;
|
|
566
563
|
docstatus: number;
|
|
567
|
-
doctype: string;
|
|
568
564
|
disabled: number;
|
|
569
565
|
naming_series: string;
|
|
570
566
|
item_code: string;
|
|
@@ -623,10 +619,10 @@ export declare class ERPNextItem {
|
|
|
623
619
|
inspection_required_before_delivery: number;
|
|
624
620
|
is_sub_contracted_item: number;
|
|
625
621
|
customer_code: string;
|
|
626
|
-
published_in_website: number;
|
|
627
622
|
total_projected_qty: number;
|
|
628
623
|
barcodes: {
|
|
629
624
|
name: string;
|
|
625
|
+
doctype: string;
|
|
630
626
|
owner: string;
|
|
631
627
|
creation: string;
|
|
632
628
|
modified: string;
|
|
@@ -636,13 +632,13 @@ export declare class ERPNextItem {
|
|
|
636
632
|
parenttype: string;
|
|
637
633
|
idx: number;
|
|
638
634
|
docstatus: number;
|
|
639
|
-
doctype: string;
|
|
640
635
|
barcode: string;
|
|
641
636
|
barcode_type: string;
|
|
642
637
|
}[];
|
|
643
638
|
reorder_levels: any[];
|
|
644
639
|
uoms: {
|
|
645
640
|
name: string;
|
|
641
|
+
doctype: string;
|
|
646
642
|
owner: string;
|
|
647
643
|
creation: string;
|
|
648
644
|
modified: string;
|
|
@@ -652,13 +648,13 @@ export declare class ERPNextItem {
|
|
|
652
648
|
parenttype: string;
|
|
653
649
|
idx: number;
|
|
654
650
|
docstatus: number;
|
|
655
|
-
doctype: string;
|
|
656
651
|
uom: string;
|
|
657
652
|
conversion_factor: number;
|
|
658
653
|
}[];
|
|
659
654
|
attributes: any[];
|
|
660
655
|
item_defaults: {
|
|
661
656
|
name: string;
|
|
657
|
+
doctype: string;
|
|
662
658
|
owner: string;
|
|
663
659
|
creation: string;
|
|
664
660
|
modified: string;
|
|
@@ -668,7 +664,6 @@ export declare class ERPNextItem {
|
|
|
668
664
|
parenttype: string;
|
|
669
665
|
idx: number;
|
|
670
666
|
docstatus: number;
|
|
671
|
-
doctype: string;
|
|
672
667
|
company: string;
|
|
673
668
|
default_warehouse: string;
|
|
674
669
|
}[];
|
|
@@ -693,13 +688,13 @@ export declare class ERPNextItem {
|
|
|
693
688
|
}) => Promise<{
|
|
694
689
|
description: string;
|
|
695
690
|
name: string;
|
|
691
|
+
doctype: string;
|
|
696
692
|
owner: string;
|
|
697
693
|
creation: string;
|
|
698
694
|
modified: string;
|
|
699
695
|
modified_by: string;
|
|
700
696
|
idx: number;
|
|
701
697
|
docstatus: number;
|
|
702
|
-
doctype: string;
|
|
703
698
|
disabled: number;
|
|
704
699
|
naming_series: string;
|
|
705
700
|
item_code: string;
|
|
@@ -758,10 +753,10 @@ export declare class ERPNextItem {
|
|
|
758
753
|
inspection_required_before_delivery: number;
|
|
759
754
|
is_sub_contracted_item: number;
|
|
760
755
|
customer_code: string;
|
|
761
|
-
published_in_website: number;
|
|
762
756
|
total_projected_qty: number;
|
|
763
757
|
barcodes: {
|
|
764
758
|
name: string;
|
|
759
|
+
doctype: string;
|
|
765
760
|
owner: string;
|
|
766
761
|
creation: string;
|
|
767
762
|
modified: string;
|
|
@@ -771,13 +766,13 @@ export declare class ERPNextItem {
|
|
|
771
766
|
parenttype: string;
|
|
772
767
|
idx: number;
|
|
773
768
|
docstatus: number;
|
|
774
|
-
doctype: string;
|
|
775
769
|
barcode: string;
|
|
776
770
|
barcode_type: string;
|
|
777
771
|
}[];
|
|
778
772
|
reorder_levels: any[];
|
|
779
773
|
uoms: {
|
|
780
774
|
name: string;
|
|
775
|
+
doctype: string;
|
|
781
776
|
owner: string;
|
|
782
777
|
creation: string;
|
|
783
778
|
modified: string;
|
|
@@ -787,13 +782,13 @@ export declare class ERPNextItem {
|
|
|
787
782
|
parenttype: string;
|
|
788
783
|
idx: number;
|
|
789
784
|
docstatus: number;
|
|
790
|
-
doctype: string;
|
|
791
785
|
uom: string;
|
|
792
786
|
conversion_factor: number;
|
|
793
787
|
}[];
|
|
794
788
|
attributes: any[];
|
|
795
789
|
item_defaults: {
|
|
796
790
|
name: string;
|
|
791
|
+
doctype: string;
|
|
797
792
|
owner: string;
|
|
798
793
|
creation: string;
|
|
799
794
|
modified: string;
|
|
@@ -803,7 +798,6 @@ export declare class ERPNextItem {
|
|
|
803
798
|
parenttype: string;
|
|
804
799
|
idx: number;
|
|
805
800
|
docstatus: number;
|
|
806
|
-
doctype: string;
|
|
807
801
|
company: string;
|
|
808
802
|
default_warehouse: string;
|
|
809
803
|
}[];
|