erpnext-queue-client 2.2.3 → 2.3.2
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/erpnext/doctypes/consolidatedCustomsInvoice.d.ts +497 -0
- package/dist/erpnext/doctypes/consolidatedCustomsInvoice.js +42 -0
- package/dist/erpnext/doctypes/deliveryNote.d.ts +468 -468
- package/dist/erpnext/doctypes/item.d.ts +31 -31
- package/dist/erpnext/doctypes/paymentEntry.d.ts +4 -4
- package/dist/erpnext/doctypes/productBundle.d.ts +3 -3
- package/dist/erpnext/doctypes/purchaseInvoice.d.ts +407 -407
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +184 -184
- package/dist/erpnext/doctypes/salesInvoice.d.ts +476 -476
- package/dist/erpnext/doctypes/shipment.d.ts +10 -10
- package/dist/erpnext/model/ConsolidatedCustomsInvoice.d.ts +70 -64
- package/dist/erpnext/model/ConsolidatedCustomsInvoice.js +8 -6
- package/dist/erpnext/model/DeliveryNote.d.ts +145 -145
- package/dist/erpnext/model/DispatchRun.d.ts +2 -2
- package/dist/erpnext/model/DocTypeHelpers.d.ts +19 -1
- package/dist/erpnext/model/DocTypeHelpers.js +8 -3
- package/dist/erpnext/model/Item.d.ts +16 -16
- 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 +214 -214
- package/dist/erpnext/model/PurchaseOrder.d.ts +84 -84
- package/dist/erpnext/model/Receipt.d.ts +64 -64
- package/dist/erpnext/model/ReceiptDraft.d.ts +62 -62
- package/dist/erpnext/model/SalesInvoice.d.ts +274 -274
- package/dist/erpnext/model/SalesOrder.d.ts +123 -123
- package/dist/erpnext/model/SalesTaxesAndCharges.d.ts +4 -4
- package/dist/erpnext/model/Shipment.d.ts +12 -12
- package/dist/erpnext/model/ShippingLabel.d.ts +5 -5
- package/dist/erpnext/model/Stock.d.ts +6 -6
- package/dist/erpnext/model/StockEntry.d.ts +2 -2
- package/dist/erpnext/model/StockReconciliation.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/package.json +1 -1
|
@@ -12,63 +12,36 @@ export declare class ERPNextDeliveryNote {
|
|
|
12
12
|
company: string;
|
|
13
13
|
naming_series: string;
|
|
14
14
|
language: string;
|
|
15
|
-
discount_amount: number;
|
|
16
|
-
pricing_rules: string[];
|
|
17
|
-
title: string;
|
|
18
|
-
order_number: string;
|
|
19
15
|
customer: string;
|
|
20
|
-
customer_name: string;
|
|
21
16
|
posting_date: string;
|
|
22
17
|
posting_time: string;
|
|
23
18
|
set_posting_time: number;
|
|
24
|
-
is_return: number;
|
|
25
|
-
issue_credit_note: number;
|
|
26
|
-
po_no: string;
|
|
27
19
|
currency: string;
|
|
28
20
|
conversion_rate: number;
|
|
29
|
-
selling_price_list: string;
|
|
30
|
-
price_list_currency: string;
|
|
31
|
-
plc_conversion_rate: number;
|
|
32
|
-
ignore_pricing_rule: number;
|
|
33
21
|
total_qty: number;
|
|
22
|
+
total_net_weight: number;
|
|
34
23
|
base_total: number;
|
|
35
24
|
base_net_total: number;
|
|
36
|
-
total_net_weight: number;
|
|
37
25
|
total: number;
|
|
38
26
|
net_total: number;
|
|
39
|
-
base_total_taxes_and_charges: number;
|
|
40
|
-
total_taxes_and_charges: number;
|
|
41
|
-
apply_discount_on: string;
|
|
42
|
-
base_discount_amount: number;
|
|
43
|
-
additional_discount_percentage: number;
|
|
44
|
-
base_grand_total: number;
|
|
45
|
-
base_rounding_adjustment: number;
|
|
46
|
-
base_rounded_total: number;
|
|
47
|
-
base_in_words: string;
|
|
48
|
-
grand_total: number;
|
|
49
|
-
rounding_adjustment: number;
|
|
50
|
-
rounded_total: number;
|
|
51
|
-
in_words: string;
|
|
52
|
-
disable_rounded_total: number;
|
|
53
|
-
is_internal_customer: number;
|
|
54
|
-
per_billed: number;
|
|
55
|
-
customer_group: string;
|
|
56
|
-
territory: string;
|
|
57
|
-
print_without_amount: number;
|
|
58
|
-
group_same_items: number;
|
|
59
|
-
per_installed: number;
|
|
60
|
-
installation_status: string;
|
|
61
|
-
per_returned: number;
|
|
62
|
-
amount_eligible_for_commission: number;
|
|
63
|
-
commission_rate: number;
|
|
64
|
-
total_commission: number;
|
|
65
27
|
items: {
|
|
66
28
|
description: string;
|
|
67
29
|
image: string;
|
|
68
30
|
item_code: string;
|
|
31
|
+
qty: number;
|
|
32
|
+
rate: number;
|
|
33
|
+
amount: number;
|
|
34
|
+
base_rate: number;
|
|
35
|
+
base_amount: number;
|
|
36
|
+
net_rate: number;
|
|
37
|
+
net_amount: number;
|
|
38
|
+
base_net_rate: number;
|
|
39
|
+
base_net_amount: number;
|
|
40
|
+
weight_per_unit: number;
|
|
41
|
+
total_weight: number;
|
|
42
|
+
weight_uom: string;
|
|
69
43
|
item_name: string;
|
|
70
44
|
item_group: string;
|
|
71
|
-
qty: number;
|
|
72
45
|
stock_uom: string;
|
|
73
46
|
uom: string;
|
|
74
47
|
conversion_factor: number;
|
|
@@ -82,22 +55,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
82
55
|
discount_percentage: number;
|
|
83
56
|
discount_amount: number;
|
|
84
57
|
base_rate_with_margin: number;
|
|
85
|
-
rate: number;
|
|
86
|
-
amount: number;
|
|
87
|
-
base_rate: number;
|
|
88
|
-
base_amount: number;
|
|
89
58
|
stock_uom_rate: number;
|
|
90
59
|
is_free_item: number;
|
|
91
60
|
grant_commission: number;
|
|
92
|
-
net_rate: number;
|
|
93
|
-
net_amount: number;
|
|
94
|
-
base_net_rate: number;
|
|
95
|
-
base_net_amount: number;
|
|
96
61
|
billed_amt: number;
|
|
97
62
|
incoming_rate: number;
|
|
98
|
-
weight_per_unit: number;
|
|
99
|
-
total_weight: number;
|
|
100
|
-
weight_uom: string;
|
|
101
63
|
warehouse: string;
|
|
102
64
|
actual_batch_qty: number;
|
|
103
65
|
actual_qty: number;
|
|
@@ -108,17 +70,17 @@ export declare class ERPNextDeliveryNote {
|
|
|
108
70
|
cost_center: string;
|
|
109
71
|
page_break: number;
|
|
110
72
|
brand?: string | null | undefined;
|
|
73
|
+
item_tax_template?: string | null | undefined;
|
|
74
|
+
so_detail?: string | null | undefined;
|
|
75
|
+
dn_detail?: string | null | undefined;
|
|
111
76
|
barcode?: string | null | undefined;
|
|
112
77
|
customer_item_code?: string | null | undefined;
|
|
113
78
|
pricing_rules?: string | null | undefined;
|
|
114
|
-
item_tax_template?: string | null | undefined;
|
|
115
79
|
target_warehouse?: string | null | undefined;
|
|
116
80
|
quality_inspection?: string | null | undefined;
|
|
117
81
|
against_sales_order?: string | null | undefined;
|
|
118
|
-
so_detail?: string | null | undefined;
|
|
119
82
|
against_sales_invoice?: string | null | undefined;
|
|
120
83
|
si_detail?: string | null | undefined;
|
|
121
|
-
dn_detail?: string | null | undefined;
|
|
122
84
|
pick_list_item?: string | null | undefined;
|
|
123
85
|
batch_no?: string | null | undefined;
|
|
124
86
|
serial_no?: string | null | undefined;
|
|
@@ -126,11 +88,52 @@ export declare class ERPNextDeliveryNote {
|
|
|
126
88
|
order_item_id?: string | null | undefined;
|
|
127
89
|
__unsaved?: number | null | undefined;
|
|
128
90
|
}[];
|
|
91
|
+
discount_amount: number;
|
|
92
|
+
pricing_rules: string[];
|
|
93
|
+
title: string;
|
|
94
|
+
order_number: string;
|
|
95
|
+
customer_name: string;
|
|
96
|
+
is_return: number;
|
|
97
|
+
issue_credit_note: number;
|
|
98
|
+
po_no: string;
|
|
99
|
+
selling_price_list: string;
|
|
100
|
+
price_list_currency: string;
|
|
101
|
+
plc_conversion_rate: number;
|
|
102
|
+
ignore_pricing_rule: number;
|
|
103
|
+
base_total_taxes_and_charges: number;
|
|
104
|
+
total_taxes_and_charges: number;
|
|
105
|
+
apply_discount_on: string;
|
|
106
|
+
base_discount_amount: number;
|
|
107
|
+
additional_discount_percentage: number;
|
|
108
|
+
base_grand_total: number;
|
|
109
|
+
base_rounding_adjustment: number;
|
|
110
|
+
base_rounded_total: number;
|
|
111
|
+
base_in_words: string;
|
|
112
|
+
grand_total: number;
|
|
113
|
+
rounding_adjustment: number;
|
|
114
|
+
rounded_total: number;
|
|
115
|
+
in_words: string;
|
|
116
|
+
disable_rounded_total: number;
|
|
117
|
+
is_internal_customer: number;
|
|
118
|
+
per_billed: number;
|
|
119
|
+
customer_group: string;
|
|
120
|
+
territory: string;
|
|
121
|
+
print_without_amount: number;
|
|
122
|
+
group_same_items: number;
|
|
123
|
+
per_installed: number;
|
|
124
|
+
installation_status: string;
|
|
125
|
+
per_returned: number;
|
|
126
|
+
amount_eligible_for_commission: number;
|
|
127
|
+
commission_rate: number;
|
|
128
|
+
total_commission: number;
|
|
129
129
|
packed_items: string[];
|
|
130
130
|
taxes: string[];
|
|
131
131
|
sales_team: string[];
|
|
132
132
|
amended_from?: string | null | undefined;
|
|
133
133
|
docstatus?: number | undefined;
|
|
134
|
+
dispatch_address_name?: string | null | undefined;
|
|
135
|
+
dispatch_address?: string | null | undefined;
|
|
136
|
+
tax_id?: string | null | undefined;
|
|
134
137
|
cost_center?: string | null | undefined;
|
|
135
138
|
project?: string | null | undefined;
|
|
136
139
|
custom_order_number?: string | null | undefined;
|
|
@@ -139,14 +142,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
139
142
|
pick_list?: string | null | undefined;
|
|
140
143
|
shipping_address_name?: string | null | undefined;
|
|
141
144
|
shipping_address?: string | null | undefined;
|
|
142
|
-
dispatch_address_name?: string | null | undefined;
|
|
143
|
-
dispatch_address?: string | null | undefined;
|
|
144
145
|
contact_person?: string | null | undefined;
|
|
145
146
|
contact_display?: string | null | undefined;
|
|
146
147
|
contact_mobile?: string | null | undefined;
|
|
147
148
|
contact_email?: string | null | undefined;
|
|
148
149
|
customer_address?: string | null | undefined;
|
|
149
|
-
tax_id?: string | null | undefined;
|
|
150
150
|
address_display?: string | null | undefined;
|
|
151
151
|
company_address?: string | null | undefined;
|
|
152
152
|
company_address_display?: string | null | undefined;
|
|
@@ -198,57 +198,18 @@ export declare class ERPNextDeliveryNote {
|
|
|
198
198
|
company: string;
|
|
199
199
|
naming_series: string;
|
|
200
200
|
language: string;
|
|
201
|
-
discount_amount: number;
|
|
202
|
-
pricing_rules: string[];
|
|
203
|
-
title: string;
|
|
204
|
-
order_number: string;
|
|
205
201
|
customer: string;
|
|
206
|
-
customer_name: string;
|
|
207
202
|
posting_date: string;
|
|
208
203
|
posting_time: string;
|
|
209
204
|
set_posting_time: number;
|
|
210
|
-
is_return: number;
|
|
211
|
-
issue_credit_note: number;
|
|
212
|
-
po_no: string;
|
|
213
205
|
currency: string;
|
|
214
206
|
conversion_rate: number;
|
|
215
|
-
selling_price_list: string;
|
|
216
|
-
price_list_currency: string;
|
|
217
|
-
plc_conversion_rate: number;
|
|
218
|
-
ignore_pricing_rule: number;
|
|
219
207
|
total_qty: number;
|
|
208
|
+
total_net_weight: number;
|
|
220
209
|
base_total: number;
|
|
221
210
|
base_net_total: number;
|
|
222
|
-
total_net_weight: number;
|
|
223
211
|
total: number;
|
|
224
212
|
net_total: number;
|
|
225
|
-
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
226
|
-
base_total_taxes_and_charges: number;
|
|
227
|
-
total_taxes_and_charges: number;
|
|
228
|
-
apply_discount_on: string;
|
|
229
|
-
base_discount_amount: number;
|
|
230
|
-
additional_discount_percentage: number;
|
|
231
|
-
base_grand_total: number;
|
|
232
|
-
base_rounding_adjustment: number;
|
|
233
|
-
base_rounded_total: number;
|
|
234
|
-
base_in_words: string;
|
|
235
|
-
grand_total: number;
|
|
236
|
-
rounding_adjustment: number;
|
|
237
|
-
rounded_total: number;
|
|
238
|
-
in_words: string;
|
|
239
|
-
disable_rounded_total: number;
|
|
240
|
-
is_internal_customer: number;
|
|
241
|
-
per_billed: number;
|
|
242
|
-
customer_group: string;
|
|
243
|
-
territory: string;
|
|
244
|
-
print_without_amount: number;
|
|
245
|
-
group_same_items: number;
|
|
246
|
-
per_installed: number;
|
|
247
|
-
installation_status: string;
|
|
248
|
-
per_returned: number;
|
|
249
|
-
amount_eligible_for_commission: number;
|
|
250
|
-
commission_rate: number;
|
|
251
|
-
total_commission: number;
|
|
252
213
|
items: {
|
|
253
214
|
description: string;
|
|
254
215
|
docstatus: number;
|
|
@@ -263,9 +224,20 @@ export declare class ERPNextDeliveryNote {
|
|
|
263
224
|
parentfield: string;
|
|
264
225
|
image: string;
|
|
265
226
|
item_code: string;
|
|
227
|
+
qty: number;
|
|
228
|
+
rate: number;
|
|
229
|
+
amount: number;
|
|
230
|
+
base_rate: number;
|
|
231
|
+
base_amount: number;
|
|
232
|
+
net_rate: number;
|
|
233
|
+
net_amount: number;
|
|
234
|
+
base_net_rate: number;
|
|
235
|
+
base_net_amount: number;
|
|
236
|
+
weight_per_unit: number;
|
|
237
|
+
total_weight: number;
|
|
238
|
+
weight_uom: string;
|
|
266
239
|
item_name: string;
|
|
267
240
|
item_group: string;
|
|
268
|
-
qty: number;
|
|
269
241
|
stock_uom: string;
|
|
270
242
|
uom: string;
|
|
271
243
|
conversion_factor: number;
|
|
@@ -279,22 +251,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
279
251
|
discount_percentage: number;
|
|
280
252
|
discount_amount: number;
|
|
281
253
|
base_rate_with_margin: number;
|
|
282
|
-
rate: number;
|
|
283
|
-
amount: number;
|
|
284
|
-
base_rate: number;
|
|
285
|
-
base_amount: number;
|
|
286
254
|
stock_uom_rate: number;
|
|
287
255
|
is_free_item: number;
|
|
288
256
|
grant_commission: number;
|
|
289
|
-
net_rate: number;
|
|
290
|
-
net_amount: number;
|
|
291
|
-
base_net_rate: number;
|
|
292
|
-
base_net_amount: number;
|
|
293
257
|
billed_amt: number;
|
|
294
258
|
incoming_rate: number;
|
|
295
|
-
weight_per_unit: number;
|
|
296
|
-
total_weight: number;
|
|
297
|
-
weight_uom: string;
|
|
298
259
|
warehouse: string;
|
|
299
260
|
actual_batch_qty: number;
|
|
300
261
|
actual_qty: number;
|
|
@@ -306,17 +267,17 @@ export declare class ERPNextDeliveryNote {
|
|
|
306
267
|
page_break: number;
|
|
307
268
|
brand?: string | null | undefined;
|
|
308
269
|
_user_tags?: string | null | undefined;
|
|
270
|
+
item_tax_template?: string | null | undefined;
|
|
271
|
+
so_detail?: string | null | undefined;
|
|
272
|
+
dn_detail?: string | null | undefined;
|
|
309
273
|
barcode?: string | null | undefined;
|
|
310
274
|
customer_item_code?: string | null | undefined;
|
|
311
275
|
pricing_rules?: string | null | undefined;
|
|
312
|
-
item_tax_template?: string | null | undefined;
|
|
313
276
|
target_warehouse?: string | null | undefined;
|
|
314
277
|
quality_inspection?: string | null | undefined;
|
|
315
278
|
against_sales_order?: string | null | undefined;
|
|
316
|
-
so_detail?: string | null | undefined;
|
|
317
279
|
against_sales_invoice?: string | null | undefined;
|
|
318
280
|
si_detail?: string | null | undefined;
|
|
319
|
-
dn_detail?: string | null | undefined;
|
|
320
281
|
pick_list_item?: string | null | undefined;
|
|
321
282
|
batch_no?: string | null | undefined;
|
|
322
283
|
serial_no?: string | null | undefined;
|
|
@@ -324,11 +285,53 @@ export declare class ERPNextDeliveryNote {
|
|
|
324
285
|
order_item_id?: string | null | undefined;
|
|
325
286
|
__unsaved?: number | null | undefined;
|
|
326
287
|
}[];
|
|
288
|
+
discount_amount: number;
|
|
289
|
+
pricing_rules: string[];
|
|
290
|
+
title: string;
|
|
291
|
+
order_number: string;
|
|
292
|
+
customer_name: string;
|
|
293
|
+
is_return: number;
|
|
294
|
+
issue_credit_note: number;
|
|
295
|
+
po_no: string;
|
|
296
|
+
selling_price_list: string;
|
|
297
|
+
price_list_currency: string;
|
|
298
|
+
plc_conversion_rate: number;
|
|
299
|
+
ignore_pricing_rule: number;
|
|
300
|
+
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
301
|
+
base_total_taxes_and_charges: number;
|
|
302
|
+
total_taxes_and_charges: number;
|
|
303
|
+
apply_discount_on: string;
|
|
304
|
+
base_discount_amount: number;
|
|
305
|
+
additional_discount_percentage: number;
|
|
306
|
+
base_grand_total: number;
|
|
307
|
+
base_rounding_adjustment: number;
|
|
308
|
+
base_rounded_total: number;
|
|
309
|
+
base_in_words: string;
|
|
310
|
+
grand_total: number;
|
|
311
|
+
rounding_adjustment: number;
|
|
312
|
+
rounded_total: number;
|
|
313
|
+
in_words: string;
|
|
314
|
+
disable_rounded_total: number;
|
|
315
|
+
is_internal_customer: number;
|
|
316
|
+
per_billed: number;
|
|
317
|
+
customer_group: string;
|
|
318
|
+
territory: string;
|
|
319
|
+
print_without_amount: number;
|
|
320
|
+
group_same_items: number;
|
|
321
|
+
per_installed: number;
|
|
322
|
+
installation_status: string;
|
|
323
|
+
per_returned: number;
|
|
324
|
+
amount_eligible_for_commission: number;
|
|
325
|
+
commission_rate: number;
|
|
326
|
+
total_commission: number;
|
|
327
327
|
packed_items: string[];
|
|
328
328
|
taxes: string[];
|
|
329
329
|
sales_team: string[];
|
|
330
330
|
amended_from?: string | null | undefined;
|
|
331
331
|
_user_tags?: string | null | undefined;
|
|
332
|
+
dispatch_address_name?: string | null | undefined;
|
|
333
|
+
dispatch_address?: string | null | undefined;
|
|
334
|
+
tax_id?: string | null | undefined;
|
|
332
335
|
cost_center?: string | null | undefined;
|
|
333
336
|
project?: string | null | undefined;
|
|
334
337
|
custom_order_number?: string | null | undefined;
|
|
@@ -337,14 +340,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
337
340
|
pick_list?: string | null | undefined;
|
|
338
341
|
shipping_address_name?: string | null | undefined;
|
|
339
342
|
shipping_address?: string | null | undefined;
|
|
340
|
-
dispatch_address_name?: string | null | undefined;
|
|
341
|
-
dispatch_address?: string | null | undefined;
|
|
342
343
|
contact_person?: string | null | undefined;
|
|
343
344
|
contact_display?: string | null | undefined;
|
|
344
345
|
contact_mobile?: string | null | undefined;
|
|
345
346
|
contact_email?: string | null | undefined;
|
|
346
347
|
customer_address?: string | null | undefined;
|
|
347
|
-
tax_id?: string | null | undefined;
|
|
348
348
|
address_display?: string | null | undefined;
|
|
349
349
|
company_address?: string | null | undefined;
|
|
350
350
|
company_address_display?: string | null | undefined;
|
|
@@ -377,7 +377,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
377
377
|
sales_partner?: string | null | undefined;
|
|
378
378
|
dispatch_run?: string | null | undefined;
|
|
379
379
|
}>;
|
|
380
|
-
getList: <TFieldOptions extends ("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "
|
|
380
|
+
getList: <TFieldOptions extends ("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "customer" | "posting_date" | "posting_time" | "set_posting_time" | "currency" | "conversion_rate" | "total_qty" | "total_net_weight" | "base_total" | "base_net_total" | "total" | "net_total" | "discount_amount" | "title" | "order_number" | "customer_name" | "is_return" | "issue_credit_note" | "po_no" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "custom_tax_included_in_shipping_cost" | "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") | ("amended_from" | "_user_tags" | "dispatch_address_name" | "dispatch_address" | "tax_id" | "cost_center" | "project" | "custom_order_number" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "incoterm" | "custom_shipping_cost" | "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"), TSelectedFields extends readonly ["*"] | TFieldOptions[] | undefined = undefined, TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
|
|
381
381
|
fields?: TSelectedFields;
|
|
382
382
|
filters?: (string | string[])[][];
|
|
383
383
|
skip?: number;
|
|
@@ -400,29 +400,29 @@ export declare class ERPNextDeliveryNote {
|
|
|
400
400
|
company: string;
|
|
401
401
|
naming_series: string;
|
|
402
402
|
language: string;
|
|
403
|
-
discount_amount: number;
|
|
404
|
-
title: string;
|
|
405
|
-
order_number: string;
|
|
406
403
|
customer: string;
|
|
407
|
-
customer_name: string;
|
|
408
404
|
posting_date: string;
|
|
409
405
|
posting_time: string;
|
|
410
406
|
set_posting_time: number;
|
|
411
|
-
is_return: number;
|
|
412
|
-
issue_credit_note: number;
|
|
413
|
-
po_no: string;
|
|
414
407
|
currency: string;
|
|
415
408
|
conversion_rate: number;
|
|
416
|
-
selling_price_list: string;
|
|
417
|
-
price_list_currency: string;
|
|
418
|
-
plc_conversion_rate: number;
|
|
419
|
-
ignore_pricing_rule: number;
|
|
420
409
|
total_qty: number;
|
|
410
|
+
total_net_weight: number;
|
|
421
411
|
base_total: number;
|
|
422
412
|
base_net_total: number;
|
|
423
|
-
total_net_weight: number;
|
|
424
413
|
total: number;
|
|
425
414
|
net_total: number;
|
|
415
|
+
discount_amount: number;
|
|
416
|
+
title: string;
|
|
417
|
+
order_number: string;
|
|
418
|
+
customer_name: string;
|
|
419
|
+
is_return: number;
|
|
420
|
+
issue_credit_note: number;
|
|
421
|
+
po_no: string;
|
|
422
|
+
selling_price_list: string;
|
|
423
|
+
price_list_currency: string;
|
|
424
|
+
plc_conversion_rate: number;
|
|
425
|
+
ignore_pricing_rule: number;
|
|
426
426
|
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
427
427
|
base_total_taxes_and_charges: number;
|
|
428
428
|
total_taxes_and_charges: number;
|
|
@@ -452,22 +452,22 @@ export declare class ERPNextDeliveryNote {
|
|
|
452
452
|
total_commission: number;
|
|
453
453
|
amended_from?: string | null | undefined;
|
|
454
454
|
_user_tags?: string | null | undefined;
|
|
455
|
-
|
|
456
|
-
|
|
455
|
+
dispatch_address_name?: string | null | undefined;
|
|
456
|
+
dispatch_address?: string | null | undefined;
|
|
457
|
+
tax_id?: string | null | undefined;
|
|
458
|
+
cost_center?: string | null | undefined;
|
|
459
|
+
project?: string | null | undefined;
|
|
457
460
|
custom_order_number?: string | null | undefined;
|
|
458
461
|
return_against?: string | null | undefined;
|
|
459
462
|
po_date?: string | null | undefined;
|
|
460
463
|
pick_list?: string | null | undefined;
|
|
461
464
|
shipping_address_name?: string | null | undefined;
|
|
462
465
|
shipping_address?: string | null | undefined;
|
|
463
|
-
dispatch_address_name?: string | null | undefined;
|
|
464
|
-
dispatch_address?: string | null | undefined;
|
|
465
466
|
contact_person?: string | null | undefined;
|
|
466
467
|
contact_display?: string | null | undefined;
|
|
467
468
|
contact_mobile?: string | null | undefined;
|
|
468
469
|
contact_email?: string | null | undefined;
|
|
469
470
|
customer_address?: string | null | undefined;
|
|
470
|
-
tax_id?: string | null | undefined;
|
|
471
471
|
address_display?: string | null | undefined;
|
|
472
472
|
company_address?: string | null | undefined;
|
|
473
473
|
company_address_display?: string | null | undefined;
|
|
@@ -499,7 +499,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
499
499
|
auto_repeat?: string | null | undefined;
|
|
500
500
|
sales_partner?: string | null | undefined;
|
|
501
501
|
dispatch_run?: string | null | undefined;
|
|
502
|
-
}[] : TSelectedFields extends TFieldOptions[] ? { [K_1 in TSelectedFields[number] as K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1]: (K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1) extends ("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "
|
|
502
|
+
}[] : TSelectedFields extends TFieldOptions[] ? { [K_1 in TSelectedFields[number] as K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1]: (K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1) extends ("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "customer" | "posting_date" | "posting_time" | "set_posting_time" | "currency" | "conversion_rate" | "total_qty" | "total_net_weight" | "base_total" | "base_net_total" | "total" | "net_total" | "discount_amount" | "title" | "order_number" | "customer_name" | "is_return" | "issue_credit_note" | "po_no" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "custom_tax_included_in_shipping_cost" | "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") | ("amended_from" | "_user_tags" | "dispatch_address_name" | "dispatch_address" | "tax_id" | "cost_center" | "project" | "custom_order_number" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "incoterm" | "custom_shipping_cost" | "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") ? {
|
|
503
503
|
status: string;
|
|
504
504
|
docstatus: number;
|
|
505
505
|
name: string;
|
|
@@ -512,29 +512,29 @@ export declare class ERPNextDeliveryNote {
|
|
|
512
512
|
company: string;
|
|
513
513
|
naming_series: string;
|
|
514
514
|
language: string;
|
|
515
|
-
discount_amount: number;
|
|
516
|
-
title: string;
|
|
517
|
-
order_number: string;
|
|
518
515
|
customer: string;
|
|
519
|
-
customer_name: string;
|
|
520
516
|
posting_date: string;
|
|
521
517
|
posting_time: string;
|
|
522
518
|
set_posting_time: number;
|
|
523
|
-
is_return: number;
|
|
524
|
-
issue_credit_note: number;
|
|
525
|
-
po_no: string;
|
|
526
519
|
currency: string;
|
|
527
520
|
conversion_rate: number;
|
|
528
|
-
selling_price_list: string;
|
|
529
|
-
price_list_currency: string;
|
|
530
|
-
plc_conversion_rate: number;
|
|
531
|
-
ignore_pricing_rule: number;
|
|
532
521
|
total_qty: number;
|
|
522
|
+
total_net_weight: number;
|
|
533
523
|
base_total: number;
|
|
534
524
|
base_net_total: number;
|
|
535
|
-
total_net_weight: number;
|
|
536
525
|
total: number;
|
|
537
526
|
net_total: number;
|
|
527
|
+
discount_amount: number;
|
|
528
|
+
title: string;
|
|
529
|
+
order_number: string;
|
|
530
|
+
customer_name: string;
|
|
531
|
+
is_return: number;
|
|
532
|
+
issue_credit_note: number;
|
|
533
|
+
po_no: string;
|
|
534
|
+
selling_price_list: string;
|
|
535
|
+
price_list_currency: string;
|
|
536
|
+
plc_conversion_rate: number;
|
|
537
|
+
ignore_pricing_rule: number;
|
|
538
538
|
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
539
539
|
base_total_taxes_and_charges: number;
|
|
540
540
|
total_taxes_and_charges: number;
|
|
@@ -564,6 +564,9 @@ export declare class ERPNextDeliveryNote {
|
|
|
564
564
|
total_commission: number;
|
|
565
565
|
amended_from?: string | null | undefined;
|
|
566
566
|
_user_tags?: string | null | undefined;
|
|
567
|
+
dispatch_address_name?: string | null | undefined;
|
|
568
|
+
dispatch_address?: string | null | undefined;
|
|
569
|
+
tax_id?: string | null | undefined;
|
|
567
570
|
cost_center?: string | null | undefined;
|
|
568
571
|
project?: string | null | undefined;
|
|
569
572
|
custom_order_number?: string | null | undefined;
|
|
@@ -572,14 +575,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
572
575
|
pick_list?: string | null | undefined;
|
|
573
576
|
shipping_address_name?: string | null | undefined;
|
|
574
577
|
shipping_address?: string | null | undefined;
|
|
575
|
-
dispatch_address_name?: string | null | undefined;
|
|
576
|
-
dispatch_address?: string | null | undefined;
|
|
577
578
|
contact_person?: string | null | undefined;
|
|
578
579
|
contact_display?: string | null | undefined;
|
|
579
580
|
contact_mobile?: string | null | undefined;
|
|
580
581
|
contact_email?: string | null | undefined;
|
|
581
582
|
customer_address?: string | null | undefined;
|
|
582
|
-
tax_id?: string | null | undefined;
|
|
583
583
|
address_display?: string | null | undefined;
|
|
584
584
|
company_address?: string | null | undefined;
|
|
585
585
|
company_address_display?: string | null | undefined;
|
|
@@ -611,7 +611,7 @@ export declare class ERPNextDeliveryNote {
|
|
|
611
611
|
auto_repeat?: string | null | undefined;
|
|
612
612
|
sales_partner?: string | null | undefined;
|
|
613
613
|
dispatch_run?: string | null | undefined;
|
|
614
|
-
}[(("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "
|
|
614
|
+
}[(("status" | "docstatus" | "name" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "tax_category" | "company" | "naming_series" | "language" | "customer" | "posting_date" | "posting_time" | "set_posting_time" | "currency" | "conversion_rate" | "total_qty" | "total_net_weight" | "base_total" | "base_net_total" | "total" | "net_total" | "discount_amount" | "title" | "order_number" | "customer_name" | "is_return" | "issue_credit_note" | "po_no" | "selling_price_list" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "custom_tax_included_in_shipping_cost" | "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") | ("amended_from" | "_user_tags" | "dispatch_address_name" | "dispatch_address" | "tax_id" | "cost_center" | "project" | "custom_order_number" | "return_against" | "po_date" | "pick_list" | "shipping_address_name" | "shipping_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "customer_address" | "address_display" | "company_address" | "company_address_display" | "set_warehouse" | "set_target_warehouse" | "scan_barcode" | "shipping_rule" | "incoterm" | "custom_shipping_cost" | "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")) & (K_1 extends `${infer _Before} as ${infer Alias}` ? Alias : K_1)] : never; }[] : any) extends infer T ? { [K in keyof T]: T[K]; } : never>;
|
|
615
615
|
getById: ({ resourceId, priority, }: {
|
|
616
616
|
resourceId: string;
|
|
617
617
|
priority?: number;
|
|
@@ -629,57 +629,18 @@ export declare class ERPNextDeliveryNote {
|
|
|
629
629
|
company: string;
|
|
630
630
|
naming_series: string;
|
|
631
631
|
language: string;
|
|
632
|
-
discount_amount: number;
|
|
633
|
-
pricing_rules: string[];
|
|
634
|
-
title: string;
|
|
635
|
-
order_number: string;
|
|
636
632
|
customer: string;
|
|
637
|
-
customer_name: string;
|
|
638
633
|
posting_date: string;
|
|
639
634
|
posting_time: string;
|
|
640
635
|
set_posting_time: number;
|
|
641
|
-
is_return: number;
|
|
642
|
-
issue_credit_note: number;
|
|
643
|
-
po_no: string;
|
|
644
636
|
currency: string;
|
|
645
637
|
conversion_rate: number;
|
|
646
|
-
selling_price_list: string;
|
|
647
|
-
price_list_currency: string;
|
|
648
|
-
plc_conversion_rate: number;
|
|
649
|
-
ignore_pricing_rule: number;
|
|
650
638
|
total_qty: number;
|
|
639
|
+
total_net_weight: number;
|
|
651
640
|
base_total: number;
|
|
652
641
|
base_net_total: number;
|
|
653
|
-
total_net_weight: number;
|
|
654
642
|
total: number;
|
|
655
643
|
net_total: number;
|
|
656
|
-
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
657
|
-
base_total_taxes_and_charges: number;
|
|
658
|
-
total_taxes_and_charges: number;
|
|
659
|
-
apply_discount_on: string;
|
|
660
|
-
base_discount_amount: number;
|
|
661
|
-
additional_discount_percentage: number;
|
|
662
|
-
base_grand_total: number;
|
|
663
|
-
base_rounding_adjustment: number;
|
|
664
|
-
base_rounded_total: number;
|
|
665
|
-
base_in_words: string;
|
|
666
|
-
grand_total: number;
|
|
667
|
-
rounding_adjustment: number;
|
|
668
|
-
rounded_total: number;
|
|
669
|
-
in_words: string;
|
|
670
|
-
disable_rounded_total: number;
|
|
671
|
-
is_internal_customer: number;
|
|
672
|
-
per_billed: number;
|
|
673
|
-
customer_group: string;
|
|
674
|
-
territory: string;
|
|
675
|
-
print_without_amount: number;
|
|
676
|
-
group_same_items: number;
|
|
677
|
-
per_installed: number;
|
|
678
|
-
installation_status: string;
|
|
679
|
-
per_returned: number;
|
|
680
|
-
amount_eligible_for_commission: number;
|
|
681
|
-
commission_rate: number;
|
|
682
|
-
total_commission: number;
|
|
683
644
|
items: {
|
|
684
645
|
description: string;
|
|
685
646
|
docstatus: number;
|
|
@@ -694,9 +655,20 @@ export declare class ERPNextDeliveryNote {
|
|
|
694
655
|
parentfield: string;
|
|
695
656
|
image: string;
|
|
696
657
|
item_code: string;
|
|
658
|
+
qty: number;
|
|
659
|
+
rate: number;
|
|
660
|
+
amount: number;
|
|
661
|
+
base_rate: number;
|
|
662
|
+
base_amount: number;
|
|
663
|
+
net_rate: number;
|
|
664
|
+
net_amount: number;
|
|
665
|
+
base_net_rate: number;
|
|
666
|
+
base_net_amount: number;
|
|
667
|
+
weight_per_unit: number;
|
|
668
|
+
total_weight: number;
|
|
669
|
+
weight_uom: string;
|
|
697
670
|
item_name: string;
|
|
698
671
|
item_group: string;
|
|
699
|
-
qty: number;
|
|
700
672
|
stock_uom: string;
|
|
701
673
|
uom: string;
|
|
702
674
|
conversion_factor: number;
|
|
@@ -710,22 +682,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
710
682
|
discount_percentage: number;
|
|
711
683
|
discount_amount: number;
|
|
712
684
|
base_rate_with_margin: number;
|
|
713
|
-
rate: number;
|
|
714
|
-
amount: number;
|
|
715
|
-
base_rate: number;
|
|
716
|
-
base_amount: number;
|
|
717
685
|
stock_uom_rate: number;
|
|
718
686
|
is_free_item: number;
|
|
719
687
|
grant_commission: number;
|
|
720
|
-
net_rate: number;
|
|
721
|
-
net_amount: number;
|
|
722
|
-
base_net_rate: number;
|
|
723
|
-
base_net_amount: number;
|
|
724
688
|
billed_amt: number;
|
|
725
689
|
incoming_rate: number;
|
|
726
|
-
weight_per_unit: number;
|
|
727
|
-
total_weight: number;
|
|
728
|
-
weight_uom: string;
|
|
729
690
|
warehouse: string;
|
|
730
691
|
actual_batch_qty: number;
|
|
731
692
|
actual_qty: number;
|
|
@@ -737,17 +698,17 @@ export declare class ERPNextDeliveryNote {
|
|
|
737
698
|
page_break: number;
|
|
738
699
|
brand?: string | null | undefined;
|
|
739
700
|
_user_tags?: string | null | undefined;
|
|
701
|
+
item_tax_template?: string | null | undefined;
|
|
702
|
+
so_detail?: string | null | undefined;
|
|
703
|
+
dn_detail?: string | null | undefined;
|
|
740
704
|
barcode?: string | null | undefined;
|
|
741
705
|
customer_item_code?: string | null | undefined;
|
|
742
706
|
pricing_rules?: string | null | undefined;
|
|
743
|
-
item_tax_template?: string | null | undefined;
|
|
744
707
|
target_warehouse?: string | null | undefined;
|
|
745
708
|
quality_inspection?: string | null | undefined;
|
|
746
709
|
against_sales_order?: string | null | undefined;
|
|
747
|
-
so_detail?: string | null | undefined;
|
|
748
710
|
against_sales_invoice?: string | null | undefined;
|
|
749
711
|
si_detail?: string | null | undefined;
|
|
750
|
-
dn_detail?: string | null | undefined;
|
|
751
712
|
pick_list_item?: string | null | undefined;
|
|
752
713
|
batch_no?: string | null | undefined;
|
|
753
714
|
serial_no?: string | null | undefined;
|
|
@@ -755,11 +716,53 @@ export declare class ERPNextDeliveryNote {
|
|
|
755
716
|
order_item_id?: string | null | undefined;
|
|
756
717
|
__unsaved?: number | null | undefined;
|
|
757
718
|
}[];
|
|
719
|
+
discount_amount: number;
|
|
720
|
+
pricing_rules: string[];
|
|
721
|
+
title: string;
|
|
722
|
+
order_number: string;
|
|
723
|
+
customer_name: string;
|
|
724
|
+
is_return: number;
|
|
725
|
+
issue_credit_note: number;
|
|
726
|
+
po_no: string;
|
|
727
|
+
selling_price_list: string;
|
|
728
|
+
price_list_currency: string;
|
|
729
|
+
plc_conversion_rate: number;
|
|
730
|
+
ignore_pricing_rule: number;
|
|
731
|
+
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
732
|
+
base_total_taxes_and_charges: number;
|
|
733
|
+
total_taxes_and_charges: number;
|
|
734
|
+
apply_discount_on: string;
|
|
735
|
+
base_discount_amount: number;
|
|
736
|
+
additional_discount_percentage: number;
|
|
737
|
+
base_grand_total: number;
|
|
738
|
+
base_rounding_adjustment: number;
|
|
739
|
+
base_rounded_total: number;
|
|
740
|
+
base_in_words: string;
|
|
741
|
+
grand_total: number;
|
|
742
|
+
rounding_adjustment: number;
|
|
743
|
+
rounded_total: number;
|
|
744
|
+
in_words: string;
|
|
745
|
+
disable_rounded_total: number;
|
|
746
|
+
is_internal_customer: number;
|
|
747
|
+
per_billed: number;
|
|
748
|
+
customer_group: string;
|
|
749
|
+
territory: string;
|
|
750
|
+
print_without_amount: number;
|
|
751
|
+
group_same_items: number;
|
|
752
|
+
per_installed: number;
|
|
753
|
+
installation_status: string;
|
|
754
|
+
per_returned: number;
|
|
755
|
+
amount_eligible_for_commission: number;
|
|
756
|
+
commission_rate: number;
|
|
757
|
+
total_commission: number;
|
|
758
758
|
packed_items: string[];
|
|
759
759
|
taxes: string[];
|
|
760
760
|
sales_team: string[];
|
|
761
761
|
amended_from?: string | null | undefined;
|
|
762
762
|
_user_tags?: string | null | undefined;
|
|
763
|
+
dispatch_address_name?: string | null | undefined;
|
|
764
|
+
dispatch_address?: string | null | undefined;
|
|
765
|
+
tax_id?: string | null | undefined;
|
|
763
766
|
cost_center?: string | null | undefined;
|
|
764
767
|
project?: string | null | undefined;
|
|
765
768
|
custom_order_number?: string | null | undefined;
|
|
@@ -768,14 +771,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
768
771
|
pick_list?: string | null | undefined;
|
|
769
772
|
shipping_address_name?: string | null | undefined;
|
|
770
773
|
shipping_address?: string | null | undefined;
|
|
771
|
-
dispatch_address_name?: string | null | undefined;
|
|
772
|
-
dispatch_address?: string | null | undefined;
|
|
773
774
|
contact_person?: string | null | undefined;
|
|
774
775
|
contact_display?: string | null | undefined;
|
|
775
776
|
contact_mobile?: string | null | undefined;
|
|
776
777
|
contact_email?: string | null | undefined;
|
|
777
778
|
customer_address?: string | null | undefined;
|
|
778
|
-
tax_id?: string | null | undefined;
|
|
779
779
|
address_display?: string | null | undefined;
|
|
780
780
|
company_address?: string | null | undefined;
|
|
781
781
|
company_address_display?: string | null | undefined;
|
|
@@ -814,63 +814,36 @@ export declare class ERPNextDeliveryNote {
|
|
|
814
814
|
company: string;
|
|
815
815
|
naming_series: string;
|
|
816
816
|
language: string;
|
|
817
|
-
discount_amount: number;
|
|
818
|
-
pricing_rules: string[];
|
|
819
|
-
title: string;
|
|
820
|
-
order_number: string;
|
|
821
817
|
customer: string;
|
|
822
|
-
customer_name: string;
|
|
823
818
|
posting_date: string;
|
|
824
819
|
posting_time: string;
|
|
825
820
|
set_posting_time: number;
|
|
826
|
-
is_return: number;
|
|
827
|
-
issue_credit_note: number;
|
|
828
|
-
po_no: string;
|
|
829
821
|
currency: string;
|
|
830
822
|
conversion_rate: number;
|
|
831
|
-
selling_price_list: string;
|
|
832
|
-
price_list_currency: string;
|
|
833
|
-
plc_conversion_rate: number;
|
|
834
|
-
ignore_pricing_rule: number;
|
|
835
823
|
total_qty: number;
|
|
824
|
+
total_net_weight: number;
|
|
836
825
|
base_total: number;
|
|
837
826
|
base_net_total: number;
|
|
838
|
-
total_net_weight: number;
|
|
839
827
|
total: number;
|
|
840
828
|
net_total: number;
|
|
841
|
-
base_total_taxes_and_charges: number;
|
|
842
|
-
total_taxes_and_charges: number;
|
|
843
|
-
apply_discount_on: string;
|
|
844
|
-
base_discount_amount: number;
|
|
845
|
-
additional_discount_percentage: number;
|
|
846
|
-
base_grand_total: number;
|
|
847
|
-
base_rounding_adjustment: number;
|
|
848
|
-
base_rounded_total: number;
|
|
849
|
-
base_in_words: string;
|
|
850
|
-
grand_total: number;
|
|
851
|
-
rounding_adjustment: number;
|
|
852
|
-
rounded_total: number;
|
|
853
|
-
in_words: string;
|
|
854
|
-
disable_rounded_total: number;
|
|
855
|
-
is_internal_customer: number;
|
|
856
|
-
per_billed: number;
|
|
857
|
-
customer_group: string;
|
|
858
|
-
territory: string;
|
|
859
|
-
print_without_amount: number;
|
|
860
|
-
group_same_items: number;
|
|
861
|
-
per_installed: number;
|
|
862
|
-
installation_status: string;
|
|
863
|
-
per_returned: number;
|
|
864
|
-
amount_eligible_for_commission: number;
|
|
865
|
-
commission_rate: number;
|
|
866
|
-
total_commission: number;
|
|
867
829
|
items: {
|
|
868
830
|
description: string;
|
|
869
831
|
image: string;
|
|
870
832
|
item_code: string;
|
|
833
|
+
qty: number;
|
|
834
|
+
rate: number;
|
|
835
|
+
amount: number;
|
|
836
|
+
base_rate: number;
|
|
837
|
+
base_amount: number;
|
|
838
|
+
net_rate: number;
|
|
839
|
+
net_amount: number;
|
|
840
|
+
base_net_rate: number;
|
|
841
|
+
base_net_amount: number;
|
|
842
|
+
weight_per_unit: number;
|
|
843
|
+
total_weight: number;
|
|
844
|
+
weight_uom: string;
|
|
871
845
|
item_name: string;
|
|
872
846
|
item_group: string;
|
|
873
|
-
qty: number;
|
|
874
847
|
stock_uom: string;
|
|
875
848
|
uom: string;
|
|
876
849
|
conversion_factor: number;
|
|
@@ -884,22 +857,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
884
857
|
discount_percentage: number;
|
|
885
858
|
discount_amount: number;
|
|
886
859
|
base_rate_with_margin: number;
|
|
887
|
-
rate: number;
|
|
888
|
-
amount: number;
|
|
889
|
-
base_rate: number;
|
|
890
|
-
base_amount: number;
|
|
891
860
|
stock_uom_rate: number;
|
|
892
861
|
is_free_item: number;
|
|
893
862
|
grant_commission: number;
|
|
894
|
-
net_rate: number;
|
|
895
|
-
net_amount: number;
|
|
896
|
-
base_net_rate: number;
|
|
897
|
-
base_net_amount: number;
|
|
898
863
|
billed_amt: number;
|
|
899
864
|
incoming_rate: number;
|
|
900
|
-
weight_per_unit: number;
|
|
901
|
-
total_weight: number;
|
|
902
|
-
weight_uom: string;
|
|
903
865
|
warehouse: string;
|
|
904
866
|
actual_batch_qty: number;
|
|
905
867
|
actual_qty: number;
|
|
@@ -910,17 +872,17 @@ export declare class ERPNextDeliveryNote {
|
|
|
910
872
|
cost_center: string;
|
|
911
873
|
page_break: number;
|
|
912
874
|
brand?: string | null | undefined;
|
|
875
|
+
item_tax_template?: string | null | undefined;
|
|
876
|
+
so_detail?: string | null | undefined;
|
|
877
|
+
dn_detail?: string | null | undefined;
|
|
913
878
|
barcode?: string | null | undefined;
|
|
914
879
|
customer_item_code?: string | null | undefined;
|
|
915
880
|
pricing_rules?: string | null | undefined;
|
|
916
|
-
item_tax_template?: string | null | undefined;
|
|
917
881
|
target_warehouse?: string | null | undefined;
|
|
918
882
|
quality_inspection?: string | null | undefined;
|
|
919
883
|
against_sales_order?: string | null | undefined;
|
|
920
|
-
so_detail?: string | null | undefined;
|
|
921
884
|
against_sales_invoice?: string | null | undefined;
|
|
922
885
|
si_detail?: string | null | undefined;
|
|
923
|
-
dn_detail?: string | null | undefined;
|
|
924
886
|
pick_list_item?: string | null | undefined;
|
|
925
887
|
batch_no?: string | null | undefined;
|
|
926
888
|
serial_no?: string | null | undefined;
|
|
@@ -928,38 +890,76 @@ export declare class ERPNextDeliveryNote {
|
|
|
928
890
|
order_item_id?: string | null | undefined;
|
|
929
891
|
__unsaved?: number | null | undefined;
|
|
930
892
|
}[];
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
893
|
+
discount_amount: number;
|
|
894
|
+
pricing_rules: string[];
|
|
895
|
+
title: string;
|
|
896
|
+
order_number: string;
|
|
897
|
+
customer_name: string;
|
|
898
|
+
is_return: number;
|
|
899
|
+
issue_credit_note: number;
|
|
900
|
+
po_no: string;
|
|
901
|
+
selling_price_list: string;
|
|
902
|
+
price_list_currency: string;
|
|
903
|
+
plc_conversion_rate: number;
|
|
904
|
+
ignore_pricing_rule: number;
|
|
905
|
+
base_total_taxes_and_charges: number;
|
|
906
|
+
total_taxes_and_charges: number;
|
|
907
|
+
apply_discount_on: string;
|
|
908
|
+
base_discount_amount: number;
|
|
909
|
+
additional_discount_percentage: number;
|
|
910
|
+
base_grand_total: number;
|
|
911
|
+
base_rounding_adjustment: number;
|
|
912
|
+
base_rounded_total: number;
|
|
913
|
+
base_in_words: string;
|
|
914
|
+
grand_total: number;
|
|
915
|
+
rounding_adjustment: number;
|
|
916
|
+
rounded_total: number;
|
|
917
|
+
in_words: string;
|
|
918
|
+
disable_rounded_total: number;
|
|
919
|
+
is_internal_customer: number;
|
|
920
|
+
per_billed: number;
|
|
921
|
+
customer_group: string;
|
|
922
|
+
territory: string;
|
|
923
|
+
print_without_amount: number;
|
|
924
|
+
group_same_items: number;
|
|
925
|
+
per_installed: number;
|
|
926
|
+
installation_status: string;
|
|
927
|
+
per_returned: number;
|
|
928
|
+
amount_eligible_for_commission: number;
|
|
929
|
+
commission_rate: number;
|
|
930
|
+
total_commission: number;
|
|
931
|
+
packed_items: string[];
|
|
932
|
+
taxes: string[];
|
|
933
|
+
sales_team: string[];
|
|
934
|
+
amended_from?: string | null | undefined;
|
|
935
|
+
docstatus?: number | undefined;
|
|
936
|
+
dispatch_address_name?: string | null | undefined;
|
|
937
|
+
dispatch_address?: string | null | undefined;
|
|
938
|
+
tax_id?: string | null | undefined;
|
|
939
|
+
cost_center?: string | null | undefined;
|
|
940
|
+
project?: string | null | undefined;
|
|
941
|
+
custom_order_number?: string | null | undefined;
|
|
942
|
+
return_against?: string | null | undefined;
|
|
943
|
+
po_date?: string | null | undefined;
|
|
944
|
+
pick_list?: string | null | undefined;
|
|
945
|
+
shipping_address_name?: string | null | undefined;
|
|
946
|
+
shipping_address?: string | null | undefined;
|
|
947
|
+
contact_person?: string | null | undefined;
|
|
948
|
+
contact_display?: string | null | undefined;
|
|
949
|
+
contact_mobile?: string | null | undefined;
|
|
950
|
+
contact_email?: string | null | undefined;
|
|
951
|
+
customer_address?: string | null | undefined;
|
|
952
|
+
address_display?: string | null | undefined;
|
|
953
|
+
company_address?: string | null | undefined;
|
|
954
|
+
company_address_display?: string | null | undefined;
|
|
955
|
+
set_warehouse?: string | null | undefined;
|
|
956
|
+
set_target_warehouse?: string | null | undefined;
|
|
957
|
+
scan_barcode?: string | null | undefined;
|
|
958
|
+
shipping_rule?: string | null | undefined;
|
|
959
|
+
incoterm?: string | null | undefined;
|
|
960
|
+
custom_shipping_cost?: number | undefined;
|
|
961
|
+
custom_tax_included_in_shipping_cost?: 0 | 1 | undefined;
|
|
962
|
+
taxes_and_charges?: string | null | undefined;
|
|
963
963
|
other_charges_calculation?: string | null | undefined;
|
|
964
964
|
tc_name?: string | null | undefined;
|
|
965
965
|
terms?: string | null | undefined;
|
|
@@ -1000,57 +1000,18 @@ export declare class ERPNextDeliveryNote {
|
|
|
1000
1000
|
company: string;
|
|
1001
1001
|
naming_series: string;
|
|
1002
1002
|
language: string;
|
|
1003
|
-
discount_amount: number;
|
|
1004
|
-
pricing_rules: string[];
|
|
1005
|
-
title: string;
|
|
1006
|
-
order_number: string;
|
|
1007
1003
|
customer: string;
|
|
1008
|
-
customer_name: string;
|
|
1009
1004
|
posting_date: string;
|
|
1010
1005
|
posting_time: string;
|
|
1011
1006
|
set_posting_time: number;
|
|
1012
|
-
is_return: number;
|
|
1013
|
-
issue_credit_note: number;
|
|
1014
|
-
po_no: string;
|
|
1015
1007
|
currency: string;
|
|
1016
1008
|
conversion_rate: number;
|
|
1017
|
-
selling_price_list: string;
|
|
1018
|
-
price_list_currency: string;
|
|
1019
|
-
plc_conversion_rate: number;
|
|
1020
|
-
ignore_pricing_rule: number;
|
|
1021
1009
|
total_qty: number;
|
|
1010
|
+
total_net_weight: number;
|
|
1022
1011
|
base_total: number;
|
|
1023
1012
|
base_net_total: number;
|
|
1024
|
-
total_net_weight: number;
|
|
1025
1013
|
total: number;
|
|
1026
1014
|
net_total: number;
|
|
1027
|
-
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
1028
|
-
base_total_taxes_and_charges: number;
|
|
1029
|
-
total_taxes_and_charges: number;
|
|
1030
|
-
apply_discount_on: string;
|
|
1031
|
-
base_discount_amount: number;
|
|
1032
|
-
additional_discount_percentage: number;
|
|
1033
|
-
base_grand_total: number;
|
|
1034
|
-
base_rounding_adjustment: number;
|
|
1035
|
-
base_rounded_total: number;
|
|
1036
|
-
base_in_words: string;
|
|
1037
|
-
grand_total: number;
|
|
1038
|
-
rounding_adjustment: number;
|
|
1039
|
-
rounded_total: number;
|
|
1040
|
-
in_words: string;
|
|
1041
|
-
disable_rounded_total: number;
|
|
1042
|
-
is_internal_customer: number;
|
|
1043
|
-
per_billed: number;
|
|
1044
|
-
customer_group: string;
|
|
1045
|
-
territory: string;
|
|
1046
|
-
print_without_amount: number;
|
|
1047
|
-
group_same_items: number;
|
|
1048
|
-
per_installed: number;
|
|
1049
|
-
installation_status: string;
|
|
1050
|
-
per_returned: number;
|
|
1051
|
-
amount_eligible_for_commission: number;
|
|
1052
|
-
commission_rate: number;
|
|
1053
|
-
total_commission: number;
|
|
1054
1015
|
items: {
|
|
1055
1016
|
description: string;
|
|
1056
1017
|
docstatus: number;
|
|
@@ -1065,9 +1026,20 @@ export declare class ERPNextDeliveryNote {
|
|
|
1065
1026
|
parentfield: string;
|
|
1066
1027
|
image: string;
|
|
1067
1028
|
item_code: string;
|
|
1029
|
+
qty: number;
|
|
1030
|
+
rate: number;
|
|
1031
|
+
amount: number;
|
|
1032
|
+
base_rate: number;
|
|
1033
|
+
base_amount: number;
|
|
1034
|
+
net_rate: number;
|
|
1035
|
+
net_amount: number;
|
|
1036
|
+
base_net_rate: number;
|
|
1037
|
+
base_net_amount: number;
|
|
1038
|
+
weight_per_unit: number;
|
|
1039
|
+
total_weight: number;
|
|
1040
|
+
weight_uom: string;
|
|
1068
1041
|
item_name: string;
|
|
1069
1042
|
item_group: string;
|
|
1070
|
-
qty: number;
|
|
1071
1043
|
stock_uom: string;
|
|
1072
1044
|
uom: string;
|
|
1073
1045
|
conversion_factor: number;
|
|
@@ -1081,22 +1053,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
1081
1053
|
discount_percentage: number;
|
|
1082
1054
|
discount_amount: number;
|
|
1083
1055
|
base_rate_with_margin: number;
|
|
1084
|
-
rate: number;
|
|
1085
|
-
amount: number;
|
|
1086
|
-
base_rate: number;
|
|
1087
|
-
base_amount: number;
|
|
1088
1056
|
stock_uom_rate: number;
|
|
1089
1057
|
is_free_item: number;
|
|
1090
1058
|
grant_commission: number;
|
|
1091
|
-
net_rate: number;
|
|
1092
|
-
net_amount: number;
|
|
1093
|
-
base_net_rate: number;
|
|
1094
|
-
base_net_amount: number;
|
|
1095
1059
|
billed_amt: number;
|
|
1096
1060
|
incoming_rate: number;
|
|
1097
|
-
weight_per_unit: number;
|
|
1098
|
-
total_weight: number;
|
|
1099
|
-
weight_uom: string;
|
|
1100
1061
|
warehouse: string;
|
|
1101
1062
|
actual_batch_qty: number;
|
|
1102
1063
|
actual_qty: number;
|
|
@@ -1108,17 +1069,17 @@ export declare class ERPNextDeliveryNote {
|
|
|
1108
1069
|
page_break: number;
|
|
1109
1070
|
brand?: string | null | undefined;
|
|
1110
1071
|
_user_tags?: string | null | undefined;
|
|
1072
|
+
item_tax_template?: string | null | undefined;
|
|
1073
|
+
so_detail?: string | null | undefined;
|
|
1074
|
+
dn_detail?: string | null | undefined;
|
|
1111
1075
|
barcode?: string | null | undefined;
|
|
1112
1076
|
customer_item_code?: string | null | undefined;
|
|
1113
1077
|
pricing_rules?: string | null | undefined;
|
|
1114
|
-
item_tax_template?: string | null | undefined;
|
|
1115
1078
|
target_warehouse?: string | null | undefined;
|
|
1116
1079
|
quality_inspection?: string | null | undefined;
|
|
1117
1080
|
against_sales_order?: string | null | undefined;
|
|
1118
|
-
so_detail?: string | null | undefined;
|
|
1119
1081
|
against_sales_invoice?: string | null | undefined;
|
|
1120
1082
|
si_detail?: string | null | undefined;
|
|
1121
|
-
dn_detail?: string | null | undefined;
|
|
1122
1083
|
pick_list_item?: string | null | undefined;
|
|
1123
1084
|
batch_no?: string | null | undefined;
|
|
1124
1085
|
serial_no?: string | null | undefined;
|
|
@@ -1126,11 +1087,53 @@ export declare class ERPNextDeliveryNote {
|
|
|
1126
1087
|
order_item_id?: string | null | undefined;
|
|
1127
1088
|
__unsaved?: number | null | undefined;
|
|
1128
1089
|
}[];
|
|
1090
|
+
discount_amount: number;
|
|
1091
|
+
pricing_rules: string[];
|
|
1092
|
+
title: string;
|
|
1093
|
+
order_number: string;
|
|
1094
|
+
customer_name: string;
|
|
1095
|
+
is_return: number;
|
|
1096
|
+
issue_credit_note: number;
|
|
1097
|
+
po_no: string;
|
|
1098
|
+
selling_price_list: string;
|
|
1099
|
+
price_list_currency: string;
|
|
1100
|
+
plc_conversion_rate: number;
|
|
1101
|
+
ignore_pricing_rule: number;
|
|
1102
|
+
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
1103
|
+
base_total_taxes_and_charges: number;
|
|
1104
|
+
total_taxes_and_charges: number;
|
|
1105
|
+
apply_discount_on: string;
|
|
1106
|
+
base_discount_amount: number;
|
|
1107
|
+
additional_discount_percentage: number;
|
|
1108
|
+
base_grand_total: number;
|
|
1109
|
+
base_rounding_adjustment: number;
|
|
1110
|
+
base_rounded_total: number;
|
|
1111
|
+
base_in_words: string;
|
|
1112
|
+
grand_total: number;
|
|
1113
|
+
rounding_adjustment: number;
|
|
1114
|
+
rounded_total: number;
|
|
1115
|
+
in_words: string;
|
|
1116
|
+
disable_rounded_total: number;
|
|
1117
|
+
is_internal_customer: number;
|
|
1118
|
+
per_billed: number;
|
|
1119
|
+
customer_group: string;
|
|
1120
|
+
territory: string;
|
|
1121
|
+
print_without_amount: number;
|
|
1122
|
+
group_same_items: number;
|
|
1123
|
+
per_installed: number;
|
|
1124
|
+
installation_status: string;
|
|
1125
|
+
per_returned: number;
|
|
1126
|
+
amount_eligible_for_commission: number;
|
|
1127
|
+
commission_rate: number;
|
|
1128
|
+
total_commission: number;
|
|
1129
1129
|
packed_items: string[];
|
|
1130
1130
|
taxes: string[];
|
|
1131
1131
|
sales_team: string[];
|
|
1132
1132
|
amended_from?: string | null | undefined;
|
|
1133
1133
|
_user_tags?: string | null | undefined;
|
|
1134
|
+
dispatch_address_name?: string | null | undefined;
|
|
1135
|
+
dispatch_address?: string | null | undefined;
|
|
1136
|
+
tax_id?: string | null | undefined;
|
|
1134
1137
|
cost_center?: string | null | undefined;
|
|
1135
1138
|
project?: string | null | undefined;
|
|
1136
1139
|
custom_order_number?: string | null | undefined;
|
|
@@ -1139,14 +1142,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
1139
1142
|
pick_list?: string | null | undefined;
|
|
1140
1143
|
shipping_address_name?: string | null | undefined;
|
|
1141
1144
|
shipping_address?: string | null | undefined;
|
|
1142
|
-
dispatch_address_name?: string | null | undefined;
|
|
1143
|
-
dispatch_address?: string | null | undefined;
|
|
1144
1145
|
contact_person?: string | null | undefined;
|
|
1145
1146
|
contact_display?: string | null | undefined;
|
|
1146
1147
|
contact_mobile?: string | null | undefined;
|
|
1147
1148
|
contact_email?: string | null | undefined;
|
|
1148
1149
|
customer_address?: string | null | undefined;
|
|
1149
|
-
tax_id?: string | null | undefined;
|
|
1150
1150
|
address_display?: string | null | undefined;
|
|
1151
1151
|
company_address?: string | null | undefined;
|
|
1152
1152
|
company_address_display?: string | null | undefined;
|
|
@@ -1199,57 +1199,18 @@ export declare class ERPNextDeliveryNote {
|
|
|
1199
1199
|
company: string;
|
|
1200
1200
|
naming_series: string;
|
|
1201
1201
|
language: string;
|
|
1202
|
-
discount_amount: number;
|
|
1203
|
-
pricing_rules: string[];
|
|
1204
|
-
title: string;
|
|
1205
|
-
order_number: string;
|
|
1206
1202
|
customer: string;
|
|
1207
|
-
customer_name: string;
|
|
1208
1203
|
posting_date: string;
|
|
1209
1204
|
posting_time: string;
|
|
1210
1205
|
set_posting_time: number;
|
|
1211
|
-
is_return: number;
|
|
1212
|
-
issue_credit_note: number;
|
|
1213
|
-
po_no: string;
|
|
1214
1206
|
currency: string;
|
|
1215
1207
|
conversion_rate: number;
|
|
1216
|
-
selling_price_list: string;
|
|
1217
|
-
price_list_currency: string;
|
|
1218
|
-
plc_conversion_rate: number;
|
|
1219
|
-
ignore_pricing_rule: number;
|
|
1220
1208
|
total_qty: number;
|
|
1209
|
+
total_net_weight: number;
|
|
1221
1210
|
base_total: number;
|
|
1222
1211
|
base_net_total: number;
|
|
1223
|
-
total_net_weight: number;
|
|
1224
1212
|
total: number;
|
|
1225
1213
|
net_total: number;
|
|
1226
|
-
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
1227
|
-
base_total_taxes_and_charges: number;
|
|
1228
|
-
total_taxes_and_charges: number;
|
|
1229
|
-
apply_discount_on: string;
|
|
1230
|
-
base_discount_amount: number;
|
|
1231
|
-
additional_discount_percentage: number;
|
|
1232
|
-
base_grand_total: number;
|
|
1233
|
-
base_rounding_adjustment: number;
|
|
1234
|
-
base_rounded_total: number;
|
|
1235
|
-
base_in_words: string;
|
|
1236
|
-
grand_total: number;
|
|
1237
|
-
rounding_adjustment: number;
|
|
1238
|
-
rounded_total: number;
|
|
1239
|
-
in_words: string;
|
|
1240
|
-
disable_rounded_total: number;
|
|
1241
|
-
is_internal_customer: number;
|
|
1242
|
-
per_billed: number;
|
|
1243
|
-
customer_group: string;
|
|
1244
|
-
territory: string;
|
|
1245
|
-
print_without_amount: number;
|
|
1246
|
-
group_same_items: number;
|
|
1247
|
-
per_installed: number;
|
|
1248
|
-
installation_status: string;
|
|
1249
|
-
per_returned: number;
|
|
1250
|
-
amount_eligible_for_commission: number;
|
|
1251
|
-
commission_rate: number;
|
|
1252
|
-
total_commission: number;
|
|
1253
1214
|
items: {
|
|
1254
1215
|
description: string;
|
|
1255
1216
|
docstatus: number;
|
|
@@ -1264,9 +1225,20 @@ export declare class ERPNextDeliveryNote {
|
|
|
1264
1225
|
parentfield: string;
|
|
1265
1226
|
image: string;
|
|
1266
1227
|
item_code: string;
|
|
1228
|
+
qty: number;
|
|
1229
|
+
rate: number;
|
|
1230
|
+
amount: number;
|
|
1231
|
+
base_rate: number;
|
|
1232
|
+
base_amount: number;
|
|
1233
|
+
net_rate: number;
|
|
1234
|
+
net_amount: number;
|
|
1235
|
+
base_net_rate: number;
|
|
1236
|
+
base_net_amount: number;
|
|
1237
|
+
weight_per_unit: number;
|
|
1238
|
+
total_weight: number;
|
|
1239
|
+
weight_uom: string;
|
|
1267
1240
|
item_name: string;
|
|
1268
1241
|
item_group: string;
|
|
1269
|
-
qty: number;
|
|
1270
1242
|
stock_uom: string;
|
|
1271
1243
|
uom: string;
|
|
1272
1244
|
conversion_factor: number;
|
|
@@ -1280,22 +1252,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
1280
1252
|
discount_percentage: number;
|
|
1281
1253
|
discount_amount: number;
|
|
1282
1254
|
base_rate_with_margin: number;
|
|
1283
|
-
rate: number;
|
|
1284
|
-
amount: number;
|
|
1285
|
-
base_rate: number;
|
|
1286
|
-
base_amount: number;
|
|
1287
1255
|
stock_uom_rate: number;
|
|
1288
1256
|
is_free_item: number;
|
|
1289
1257
|
grant_commission: number;
|
|
1290
|
-
net_rate: number;
|
|
1291
|
-
net_amount: number;
|
|
1292
|
-
base_net_rate: number;
|
|
1293
|
-
base_net_amount: number;
|
|
1294
1258
|
billed_amt: number;
|
|
1295
1259
|
incoming_rate: number;
|
|
1296
|
-
weight_per_unit: number;
|
|
1297
|
-
total_weight: number;
|
|
1298
|
-
weight_uom: string;
|
|
1299
1260
|
warehouse: string;
|
|
1300
1261
|
actual_batch_qty: number;
|
|
1301
1262
|
actual_qty: number;
|
|
@@ -1307,17 +1268,17 @@ export declare class ERPNextDeliveryNote {
|
|
|
1307
1268
|
page_break: number;
|
|
1308
1269
|
brand?: string | null | undefined;
|
|
1309
1270
|
_user_tags?: string | null | undefined;
|
|
1271
|
+
item_tax_template?: string | null | undefined;
|
|
1272
|
+
so_detail?: string | null | undefined;
|
|
1273
|
+
dn_detail?: string | null | undefined;
|
|
1310
1274
|
barcode?: string | null | undefined;
|
|
1311
1275
|
customer_item_code?: string | null | undefined;
|
|
1312
1276
|
pricing_rules?: string | null | undefined;
|
|
1313
|
-
item_tax_template?: string | null | undefined;
|
|
1314
1277
|
target_warehouse?: string | null | undefined;
|
|
1315
1278
|
quality_inspection?: string | null | undefined;
|
|
1316
1279
|
against_sales_order?: string | null | undefined;
|
|
1317
|
-
so_detail?: string | null | undefined;
|
|
1318
1280
|
against_sales_invoice?: string | null | undefined;
|
|
1319
1281
|
si_detail?: string | null | undefined;
|
|
1320
|
-
dn_detail?: string | null | undefined;
|
|
1321
1282
|
pick_list_item?: string | null | undefined;
|
|
1322
1283
|
batch_no?: string | null | undefined;
|
|
1323
1284
|
serial_no?: string | null | undefined;
|
|
@@ -1325,11 +1286,53 @@ export declare class ERPNextDeliveryNote {
|
|
|
1325
1286
|
order_item_id?: string | null | undefined;
|
|
1326
1287
|
__unsaved?: number | null | undefined;
|
|
1327
1288
|
}[];
|
|
1289
|
+
discount_amount: number;
|
|
1290
|
+
pricing_rules: string[];
|
|
1291
|
+
title: string;
|
|
1292
|
+
order_number: string;
|
|
1293
|
+
customer_name: string;
|
|
1294
|
+
is_return: number;
|
|
1295
|
+
issue_credit_note: number;
|
|
1296
|
+
po_no: string;
|
|
1297
|
+
selling_price_list: string;
|
|
1298
|
+
price_list_currency: string;
|
|
1299
|
+
plc_conversion_rate: number;
|
|
1300
|
+
ignore_pricing_rule: number;
|
|
1301
|
+
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
1302
|
+
base_total_taxes_and_charges: number;
|
|
1303
|
+
total_taxes_and_charges: number;
|
|
1304
|
+
apply_discount_on: string;
|
|
1305
|
+
base_discount_amount: number;
|
|
1306
|
+
additional_discount_percentage: number;
|
|
1307
|
+
base_grand_total: number;
|
|
1308
|
+
base_rounding_adjustment: number;
|
|
1309
|
+
base_rounded_total: number;
|
|
1310
|
+
base_in_words: string;
|
|
1311
|
+
grand_total: number;
|
|
1312
|
+
rounding_adjustment: number;
|
|
1313
|
+
rounded_total: number;
|
|
1314
|
+
in_words: string;
|
|
1315
|
+
disable_rounded_total: number;
|
|
1316
|
+
is_internal_customer: number;
|
|
1317
|
+
per_billed: number;
|
|
1318
|
+
customer_group: string;
|
|
1319
|
+
territory: string;
|
|
1320
|
+
print_without_amount: number;
|
|
1321
|
+
group_same_items: number;
|
|
1322
|
+
per_installed: number;
|
|
1323
|
+
installation_status: string;
|
|
1324
|
+
per_returned: number;
|
|
1325
|
+
amount_eligible_for_commission: number;
|
|
1326
|
+
commission_rate: number;
|
|
1327
|
+
total_commission: number;
|
|
1328
1328
|
packed_items: string[];
|
|
1329
1329
|
taxes: string[];
|
|
1330
1330
|
sales_team: string[];
|
|
1331
1331
|
amended_from?: string | null | undefined;
|
|
1332
1332
|
_user_tags?: string | null | undefined;
|
|
1333
|
+
dispatch_address_name?: string | null | undefined;
|
|
1334
|
+
dispatch_address?: string | null | undefined;
|
|
1335
|
+
tax_id?: string | null | undefined;
|
|
1333
1336
|
cost_center?: string | null | undefined;
|
|
1334
1337
|
project?: string | null | undefined;
|
|
1335
1338
|
custom_order_number?: string | null | undefined;
|
|
@@ -1338,14 +1341,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
1338
1341
|
pick_list?: string | null | undefined;
|
|
1339
1342
|
shipping_address_name?: string | null | undefined;
|
|
1340
1343
|
shipping_address?: string | null | undefined;
|
|
1341
|
-
dispatch_address_name?: string | null | undefined;
|
|
1342
|
-
dispatch_address?: string | null | undefined;
|
|
1343
1344
|
contact_person?: string | null | undefined;
|
|
1344
1345
|
contact_display?: string | null | undefined;
|
|
1345
1346
|
contact_mobile?: string | null | undefined;
|
|
1346
1347
|
contact_email?: string | null | undefined;
|
|
1347
1348
|
customer_address?: string | null | undefined;
|
|
1348
|
-
tax_id?: string | null | undefined;
|
|
1349
1349
|
address_display?: string | null | undefined;
|
|
1350
1350
|
company_address?: string | null | undefined;
|
|
1351
1351
|
company_address_display?: string | null | undefined;
|
|
@@ -1394,57 +1394,18 @@ export declare class ERPNextDeliveryNote {
|
|
|
1394
1394
|
company: string;
|
|
1395
1395
|
naming_series: string;
|
|
1396
1396
|
language: string;
|
|
1397
|
-
discount_amount: number;
|
|
1398
|
-
pricing_rules: string[];
|
|
1399
|
-
title: string;
|
|
1400
|
-
order_number: string;
|
|
1401
1397
|
customer: string;
|
|
1402
|
-
customer_name: string;
|
|
1403
1398
|
posting_date: string;
|
|
1404
1399
|
posting_time: string;
|
|
1405
1400
|
set_posting_time: number;
|
|
1406
|
-
is_return: number;
|
|
1407
|
-
issue_credit_note: number;
|
|
1408
|
-
po_no: string;
|
|
1409
1401
|
currency: string;
|
|
1410
1402
|
conversion_rate: number;
|
|
1411
|
-
selling_price_list: string;
|
|
1412
|
-
price_list_currency: string;
|
|
1413
|
-
plc_conversion_rate: number;
|
|
1414
|
-
ignore_pricing_rule: number;
|
|
1415
1403
|
total_qty: number;
|
|
1404
|
+
total_net_weight: number;
|
|
1416
1405
|
base_total: number;
|
|
1417
1406
|
base_net_total: number;
|
|
1418
|
-
total_net_weight: number;
|
|
1419
1407
|
total: number;
|
|
1420
1408
|
net_total: number;
|
|
1421
|
-
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
1422
|
-
base_total_taxes_and_charges: number;
|
|
1423
|
-
total_taxes_and_charges: number;
|
|
1424
|
-
apply_discount_on: string;
|
|
1425
|
-
base_discount_amount: number;
|
|
1426
|
-
additional_discount_percentage: number;
|
|
1427
|
-
base_grand_total: number;
|
|
1428
|
-
base_rounding_adjustment: number;
|
|
1429
|
-
base_rounded_total: number;
|
|
1430
|
-
base_in_words: string;
|
|
1431
|
-
grand_total: number;
|
|
1432
|
-
rounding_adjustment: number;
|
|
1433
|
-
rounded_total: number;
|
|
1434
|
-
in_words: string;
|
|
1435
|
-
disable_rounded_total: number;
|
|
1436
|
-
is_internal_customer: number;
|
|
1437
|
-
per_billed: number;
|
|
1438
|
-
customer_group: string;
|
|
1439
|
-
territory: string;
|
|
1440
|
-
print_without_amount: number;
|
|
1441
|
-
group_same_items: number;
|
|
1442
|
-
per_installed: number;
|
|
1443
|
-
installation_status: string;
|
|
1444
|
-
per_returned: number;
|
|
1445
|
-
amount_eligible_for_commission: number;
|
|
1446
|
-
commission_rate: number;
|
|
1447
|
-
total_commission: number;
|
|
1448
1409
|
items: {
|
|
1449
1410
|
description: string;
|
|
1450
1411
|
docstatus: number;
|
|
@@ -1459,9 +1420,20 @@ export declare class ERPNextDeliveryNote {
|
|
|
1459
1420
|
parentfield: string;
|
|
1460
1421
|
image: string;
|
|
1461
1422
|
item_code: string;
|
|
1423
|
+
qty: number;
|
|
1424
|
+
rate: number;
|
|
1425
|
+
amount: number;
|
|
1426
|
+
base_rate: number;
|
|
1427
|
+
base_amount: number;
|
|
1428
|
+
net_rate: number;
|
|
1429
|
+
net_amount: number;
|
|
1430
|
+
base_net_rate: number;
|
|
1431
|
+
base_net_amount: number;
|
|
1432
|
+
weight_per_unit: number;
|
|
1433
|
+
total_weight: number;
|
|
1434
|
+
weight_uom: string;
|
|
1462
1435
|
item_name: string;
|
|
1463
1436
|
item_group: string;
|
|
1464
|
-
qty: number;
|
|
1465
1437
|
stock_uom: string;
|
|
1466
1438
|
uom: string;
|
|
1467
1439
|
conversion_factor: number;
|
|
@@ -1475,22 +1447,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
1475
1447
|
discount_percentage: number;
|
|
1476
1448
|
discount_amount: number;
|
|
1477
1449
|
base_rate_with_margin: number;
|
|
1478
|
-
rate: number;
|
|
1479
|
-
amount: number;
|
|
1480
|
-
base_rate: number;
|
|
1481
|
-
base_amount: number;
|
|
1482
1450
|
stock_uom_rate: number;
|
|
1483
1451
|
is_free_item: number;
|
|
1484
1452
|
grant_commission: number;
|
|
1485
|
-
net_rate: number;
|
|
1486
|
-
net_amount: number;
|
|
1487
|
-
base_net_rate: number;
|
|
1488
|
-
base_net_amount: number;
|
|
1489
1453
|
billed_amt: number;
|
|
1490
1454
|
incoming_rate: number;
|
|
1491
|
-
weight_per_unit: number;
|
|
1492
|
-
total_weight: number;
|
|
1493
|
-
weight_uom: string;
|
|
1494
1455
|
warehouse: string;
|
|
1495
1456
|
actual_batch_qty: number;
|
|
1496
1457
|
actual_qty: number;
|
|
@@ -1502,17 +1463,17 @@ export declare class ERPNextDeliveryNote {
|
|
|
1502
1463
|
page_break: number;
|
|
1503
1464
|
brand?: string | null | undefined;
|
|
1504
1465
|
_user_tags?: string | null | undefined;
|
|
1466
|
+
item_tax_template?: string | null | undefined;
|
|
1467
|
+
so_detail?: string | null | undefined;
|
|
1468
|
+
dn_detail?: string | null | undefined;
|
|
1505
1469
|
barcode?: string | null | undefined;
|
|
1506
1470
|
customer_item_code?: string | null | undefined;
|
|
1507
1471
|
pricing_rules?: string | null | undefined;
|
|
1508
|
-
item_tax_template?: string | null | undefined;
|
|
1509
1472
|
target_warehouse?: string | null | undefined;
|
|
1510
1473
|
quality_inspection?: string | null | undefined;
|
|
1511
1474
|
against_sales_order?: string | null | undefined;
|
|
1512
|
-
so_detail?: string | null | undefined;
|
|
1513
1475
|
against_sales_invoice?: string | null | undefined;
|
|
1514
1476
|
si_detail?: string | null | undefined;
|
|
1515
|
-
dn_detail?: string | null | undefined;
|
|
1516
1477
|
pick_list_item?: string | null | undefined;
|
|
1517
1478
|
batch_no?: string | null | undefined;
|
|
1518
1479
|
serial_no?: string | null | undefined;
|
|
@@ -1520,11 +1481,53 @@ export declare class ERPNextDeliveryNote {
|
|
|
1520
1481
|
order_item_id?: string | null | undefined;
|
|
1521
1482
|
__unsaved?: number | null | undefined;
|
|
1522
1483
|
}[];
|
|
1484
|
+
discount_amount: number;
|
|
1485
|
+
pricing_rules: string[];
|
|
1486
|
+
title: string;
|
|
1487
|
+
order_number: string;
|
|
1488
|
+
customer_name: string;
|
|
1489
|
+
is_return: number;
|
|
1490
|
+
issue_credit_note: number;
|
|
1491
|
+
po_no: string;
|
|
1492
|
+
selling_price_list: string;
|
|
1493
|
+
price_list_currency: string;
|
|
1494
|
+
plc_conversion_rate: number;
|
|
1495
|
+
ignore_pricing_rule: number;
|
|
1496
|
+
custom_tax_included_in_shipping_cost: 0 | 1;
|
|
1497
|
+
base_total_taxes_and_charges: number;
|
|
1498
|
+
total_taxes_and_charges: number;
|
|
1499
|
+
apply_discount_on: string;
|
|
1500
|
+
base_discount_amount: number;
|
|
1501
|
+
additional_discount_percentage: number;
|
|
1502
|
+
base_grand_total: number;
|
|
1503
|
+
base_rounding_adjustment: number;
|
|
1504
|
+
base_rounded_total: number;
|
|
1505
|
+
base_in_words: string;
|
|
1506
|
+
grand_total: number;
|
|
1507
|
+
rounding_adjustment: number;
|
|
1508
|
+
rounded_total: number;
|
|
1509
|
+
in_words: string;
|
|
1510
|
+
disable_rounded_total: number;
|
|
1511
|
+
is_internal_customer: number;
|
|
1512
|
+
per_billed: number;
|
|
1513
|
+
customer_group: string;
|
|
1514
|
+
territory: string;
|
|
1515
|
+
print_without_amount: number;
|
|
1516
|
+
group_same_items: number;
|
|
1517
|
+
per_installed: number;
|
|
1518
|
+
installation_status: string;
|
|
1519
|
+
per_returned: number;
|
|
1520
|
+
amount_eligible_for_commission: number;
|
|
1521
|
+
commission_rate: number;
|
|
1522
|
+
total_commission: number;
|
|
1523
1523
|
packed_items: string[];
|
|
1524
1524
|
taxes: string[];
|
|
1525
1525
|
sales_team: string[];
|
|
1526
1526
|
amended_from?: string | null | undefined;
|
|
1527
1527
|
_user_tags?: string | null | undefined;
|
|
1528
|
+
dispatch_address_name?: string | null | undefined;
|
|
1529
|
+
dispatch_address?: string | null | undefined;
|
|
1530
|
+
tax_id?: string | null | undefined;
|
|
1528
1531
|
cost_center?: string | null | undefined;
|
|
1529
1532
|
project?: string | null | undefined;
|
|
1530
1533
|
custom_order_number?: string | null | undefined;
|
|
@@ -1533,14 +1536,11 @@ export declare class ERPNextDeliveryNote {
|
|
|
1533
1536
|
pick_list?: string | null | undefined;
|
|
1534
1537
|
shipping_address_name?: string | null | undefined;
|
|
1535
1538
|
shipping_address?: string | null | undefined;
|
|
1536
|
-
dispatch_address_name?: string | null | undefined;
|
|
1537
|
-
dispatch_address?: string | null | undefined;
|
|
1538
1539
|
contact_person?: string | null | undefined;
|
|
1539
1540
|
contact_display?: string | null | undefined;
|
|
1540
1541
|
contact_mobile?: string | null | undefined;
|
|
1541
1542
|
contact_email?: string | null | undefined;
|
|
1542
1543
|
customer_address?: string | null | undefined;
|
|
1543
|
-
tax_id?: string | null | undefined;
|
|
1544
1544
|
address_display?: string | null | undefined;
|
|
1545
1545
|
company_address?: string | null | undefined;
|
|
1546
1546
|
company_address_display?: string | null | undefined;
|