erpnext-queue-client 1.29.5 → 1.29.7
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/deliveryNote.d.ts +36 -36
- package/dist/erpnext/doctypes/purchaseInvoice.d.ts +22 -22
- package/dist/erpnext/doctypes/purchaseReceipt.d.ts +31 -31
- package/dist/erpnext/doctypes/servicecase.d.ts +8 -8
- package/dist/erpnext/model/DeliveryNote.d.ts +50 -28
- package/dist/erpnext/model/DeliveryNote.js +6 -0
- package/dist/erpnext/model/DispatchRun.d.ts +2 -2
- package/dist/erpnext/model/ProductBundle.d.ts +6 -6
- package/dist/erpnext/model/PurchaseInvoice.d.ts +18 -18
- package/dist/erpnext/model/PurchaseOrder.d.ts +12 -12
- package/dist/erpnext/model/Receipt.d.ts +10 -10
- package/dist/erpnext/model/ReceiptDraft.d.ts +10 -10
- package/dist/erpnext/model/Servicecase.d.ts +10 -10
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
6
6
|
protected temporalClient: TemporalClient;
|
|
7
7
|
protected baseRequest: ERPNextDoctypeSubmittableResourceRequest<typeof PurchaseReceipt>;
|
|
8
8
|
protected methodRequest: ERPNextMethodRequest;
|
|
9
|
-
getList: <TField extends ("status" | "name" | "doctype" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "company" | "naming_series" | "items" | "pricing_rules" | "posting_date" | "posting_time" | "set_posting_time" | "currency" | "conversion_rate" | "base_net_total" | "taxes" | "supplier" | "is_subcontracted" | "supplied_items") | ("parent" | "parentfield" | "parenttype" | "tax_category" | "__onload" | "supplier_name" | "is_internal_supplier" | "language" | "discount_amount" | "cost_center" | "project" | "title" | "amended_from" | "is_return" | "return_against" | "shipping_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "address_display" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "
|
|
9
|
+
getList: <TField extends ("status" | "name" | "doctype" | "owner" | "creation" | "modified" | "modified_by" | "idx" | "docstatus" | "company" | "naming_series" | "items" | "pricing_rules" | "posting_date" | "posting_time" | "set_posting_time" | "currency" | "conversion_rate" | "base_net_total" | "taxes" | "supplier" | "is_subcontracted" | "supplied_items") | ("parent" | "parentfield" | "parenttype" | "tax_category" | "__onload" | "supplier_name" | "is_internal_supplier" | "language" | "set_warehouse" | "discount_amount" | "cost_center" | "project" | "title" | "amended_from" | "is_return" | "return_against" | "shipping_address" | "contact_person" | "contact_display" | "contact_mobile" | "contact_email" | "address_display" | "price_list_currency" | "plc_conversion_rate" | "ignore_pricing_rule" | "scan_barcode" | "total_qty" | "base_total" | "total_net_weight" | "total" | "net_total" | "shipping_rule" | "taxes_and_charges" | "other_charges_calculation" | "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" | "tc_name" | "terms" | "lr_no" | "transporter_name" | "lr_date" | "represents_company" | "inter_company_reference" | "per_billed" | "letter_head" | "select_print_heading" | "group_same_items" | "per_returned" | "instructions" | "auto_repeat" | "shipping_address_display" | "billing_address" | "billing_address_display" | "buying_price_list" | "base_taxes_and_charges_added" | "base_taxes_and_charges_deducted" | "taxes_and_charges_added" | "taxes_and_charges_deducted" | "remarks" | "rejected_warehouse" | "purchase_receipt_number" | "supplier_delivery_note" | "notes" | "apply_putaway_rule" | "supplier_address" | "set_from_warehouse" | "supplier_warehouse" | "range"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
|
|
10
10
|
fields?: TField[] | undefined;
|
|
11
11
|
filters?: (string | string[])[][];
|
|
12
12
|
skip?: number;
|
|
@@ -51,6 +51,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
51
51
|
brand?: any;
|
|
52
52
|
image?: string | null | undefined;
|
|
53
53
|
qty?: number | null | undefined;
|
|
54
|
+
rate?: number | null | undefined;
|
|
55
|
+
amount?: number | null | undefined;
|
|
54
56
|
barcode?: any;
|
|
55
57
|
item_group?: string | null | undefined;
|
|
56
58
|
stock_qty?: number | null | undefined;
|
|
@@ -63,8 +65,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
63
65
|
discount_percentage?: number | null | undefined;
|
|
64
66
|
discount_amount?: number | null | undefined;
|
|
65
67
|
base_rate_with_margin?: number | null | undefined;
|
|
66
|
-
rate?: number | null | undefined;
|
|
67
|
-
amount?: number | null | undefined;
|
|
68
68
|
base_amount?: number | null | undefined;
|
|
69
69
|
pricing_rules?: any;
|
|
70
70
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -141,6 +141,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
141
141
|
supplier_name?: string | null | undefined;
|
|
142
142
|
is_internal_supplier?: number | null | undefined;
|
|
143
143
|
language?: string | null | undefined;
|
|
144
|
+
set_warehouse?: string | null | undefined;
|
|
144
145
|
discount_amount?: number | null | undefined;
|
|
145
146
|
cost_center?: any;
|
|
146
147
|
project?: any;
|
|
@@ -157,7 +158,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
157
158
|
price_list_currency?: string | null | undefined;
|
|
158
159
|
plc_conversion_rate?: number | null | undefined;
|
|
159
160
|
ignore_pricing_rule?: number | null | undefined;
|
|
160
|
-
set_warehouse?: string | null | undefined;
|
|
161
161
|
scan_barcode?: any;
|
|
162
162
|
total_qty?: number | null | undefined;
|
|
163
163
|
base_total?: number | null | undefined;
|
|
@@ -254,6 +254,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
254
254
|
brand?: any;
|
|
255
255
|
image?: string | null | undefined;
|
|
256
256
|
qty?: number | null | undefined;
|
|
257
|
+
rate?: number | null | undefined;
|
|
258
|
+
amount?: number | null | undefined;
|
|
257
259
|
barcode?: any;
|
|
258
260
|
item_group?: string | null | undefined;
|
|
259
261
|
stock_qty?: number | null | undefined;
|
|
@@ -266,8 +268,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
266
268
|
discount_percentage?: number | null | undefined;
|
|
267
269
|
discount_amount?: number | null | undefined;
|
|
268
270
|
base_rate_with_margin?: number | null | undefined;
|
|
269
|
-
rate?: number | null | undefined;
|
|
270
|
-
amount?: number | null | undefined;
|
|
271
271
|
base_amount?: number | null | undefined;
|
|
272
272
|
pricing_rules?: any;
|
|
273
273
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -344,6 +344,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
344
344
|
supplier_name?: string | null | undefined;
|
|
345
345
|
is_internal_supplier?: number | null | undefined;
|
|
346
346
|
language?: string | null | undefined;
|
|
347
|
+
set_warehouse?: string | null | undefined;
|
|
347
348
|
discount_amount?: number | null | undefined;
|
|
348
349
|
cost_center?: any;
|
|
349
350
|
project?: any;
|
|
@@ -360,7 +361,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
360
361
|
price_list_currency?: string | null | undefined;
|
|
361
362
|
plc_conversion_rate?: number | null | undefined;
|
|
362
363
|
ignore_pricing_rule?: number | null | undefined;
|
|
363
|
-
set_warehouse?: string | null | undefined;
|
|
364
364
|
scan_barcode?: any;
|
|
365
365
|
total_qty?: number | null | undefined;
|
|
366
366
|
base_total?: number | null | undefined;
|
|
@@ -454,6 +454,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
454
454
|
brand?: any;
|
|
455
455
|
image?: string | null | undefined;
|
|
456
456
|
qty?: number | null | undefined;
|
|
457
|
+
rate?: number | null | undefined;
|
|
458
|
+
amount?: number | null | undefined;
|
|
457
459
|
barcode?: any;
|
|
458
460
|
item_group?: string | null | undefined;
|
|
459
461
|
stock_qty?: number | null | undefined;
|
|
@@ -466,8 +468,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
466
468
|
discount_percentage?: number | null | undefined;
|
|
467
469
|
discount_amount?: number | null | undefined;
|
|
468
470
|
base_rate_with_margin?: number | null | undefined;
|
|
469
|
-
rate?: number | null | undefined;
|
|
470
|
-
amount?: number | null | undefined;
|
|
471
471
|
base_amount?: number | null | undefined;
|
|
472
472
|
pricing_rules?: any;
|
|
473
473
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -544,6 +544,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
544
544
|
supplier_name?: string | null | undefined;
|
|
545
545
|
is_internal_supplier?: number | null | undefined;
|
|
546
546
|
language?: string | null | undefined;
|
|
547
|
+
set_warehouse?: string | null | undefined;
|
|
547
548
|
discount_amount?: number | null | undefined;
|
|
548
549
|
cost_center?: any;
|
|
549
550
|
project?: any;
|
|
@@ -560,7 +561,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
560
561
|
price_list_currency?: string | null | undefined;
|
|
561
562
|
plc_conversion_rate?: number | null | undefined;
|
|
562
563
|
ignore_pricing_rule?: number | null | undefined;
|
|
563
|
-
set_warehouse?: string | null | undefined;
|
|
564
564
|
scan_barcode?: any;
|
|
565
565
|
total_qty?: number | null | undefined;
|
|
566
566
|
base_total?: number | null | undefined;
|
|
@@ -658,6 +658,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
658
658
|
brand?: any;
|
|
659
659
|
image?: string | null | undefined;
|
|
660
660
|
qty?: number | null | undefined;
|
|
661
|
+
rate?: number | null | undefined;
|
|
662
|
+
amount?: number | null | undefined;
|
|
661
663
|
barcode?: any;
|
|
662
664
|
item_group?: string | null | undefined;
|
|
663
665
|
stock_qty?: number | null | undefined;
|
|
@@ -670,8 +672,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
670
672
|
discount_percentage?: number | null | undefined;
|
|
671
673
|
discount_amount?: number | null | undefined;
|
|
672
674
|
base_rate_with_margin?: number | null | undefined;
|
|
673
|
-
rate?: number | null | undefined;
|
|
674
|
-
amount?: number | null | undefined;
|
|
675
675
|
base_amount?: number | null | undefined;
|
|
676
676
|
pricing_rules?: any;
|
|
677
677
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -748,6 +748,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
748
748
|
supplier_name?: string | null | undefined;
|
|
749
749
|
is_internal_supplier?: number | null | undefined;
|
|
750
750
|
language?: string | null | undefined;
|
|
751
|
+
set_warehouse?: string | null | undefined;
|
|
751
752
|
discount_amount?: number | null | undefined;
|
|
752
753
|
cost_center?: any;
|
|
753
754
|
project?: any;
|
|
@@ -764,7 +765,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
764
765
|
price_list_currency?: string | null | undefined;
|
|
765
766
|
plc_conversion_rate?: number | null | undefined;
|
|
766
767
|
ignore_pricing_rule?: number | null | undefined;
|
|
767
|
-
set_warehouse?: string | null | undefined;
|
|
768
768
|
scan_barcode?: any;
|
|
769
769
|
total_qty?: number | null | undefined;
|
|
770
770
|
base_total?: number | null | undefined;
|
|
@@ -864,6 +864,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
864
864
|
brand?: any;
|
|
865
865
|
image?: string | null | undefined;
|
|
866
866
|
qty?: number | null | undefined;
|
|
867
|
+
rate?: number | null | undefined;
|
|
868
|
+
amount?: number | null | undefined;
|
|
867
869
|
barcode?: any;
|
|
868
870
|
item_group?: string | null | undefined;
|
|
869
871
|
stock_qty?: number | null | undefined;
|
|
@@ -876,8 +878,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
876
878
|
discount_percentage?: number | null | undefined;
|
|
877
879
|
discount_amount?: number | null | undefined;
|
|
878
880
|
base_rate_with_margin?: number | null | undefined;
|
|
879
|
-
rate?: number | null | undefined;
|
|
880
|
-
amount?: number | null | undefined;
|
|
881
881
|
base_amount?: number | null | undefined;
|
|
882
882
|
pricing_rules?: any;
|
|
883
883
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -954,6 +954,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
954
954
|
supplier_name?: string | null | undefined;
|
|
955
955
|
is_internal_supplier?: number | null | undefined;
|
|
956
956
|
language?: string | null | undefined;
|
|
957
|
+
set_warehouse?: string | null | undefined;
|
|
957
958
|
discount_amount?: number | null | undefined;
|
|
958
959
|
cost_center?: any;
|
|
959
960
|
project?: any;
|
|
@@ -970,7 +971,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
970
971
|
price_list_currency?: string | null | undefined;
|
|
971
972
|
plc_conversion_rate?: number | null | undefined;
|
|
972
973
|
ignore_pricing_rule?: number | null | undefined;
|
|
973
|
-
set_warehouse?: string | null | undefined;
|
|
974
974
|
scan_barcode?: any;
|
|
975
975
|
total_qty?: number | null | undefined;
|
|
976
976
|
base_total?: number | null | undefined;
|
|
@@ -1066,6 +1066,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1066
1066
|
brand?: any;
|
|
1067
1067
|
image?: string | null | undefined;
|
|
1068
1068
|
qty?: number | null | undefined;
|
|
1069
|
+
rate?: number | null | undefined;
|
|
1070
|
+
amount?: number | null | undefined;
|
|
1069
1071
|
barcode?: any;
|
|
1070
1072
|
item_group?: string | null | undefined;
|
|
1071
1073
|
stock_qty?: number | null | undefined;
|
|
@@ -1078,8 +1080,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1078
1080
|
discount_percentage?: number | null | undefined;
|
|
1079
1081
|
discount_amount?: number | null | undefined;
|
|
1080
1082
|
base_rate_with_margin?: number | null | undefined;
|
|
1081
|
-
rate?: number | null | undefined;
|
|
1082
|
-
amount?: number | null | undefined;
|
|
1083
1083
|
base_amount?: number | null | undefined;
|
|
1084
1084
|
pricing_rules?: any;
|
|
1085
1085
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -1156,6 +1156,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1156
1156
|
supplier_name?: string | null | undefined;
|
|
1157
1157
|
is_internal_supplier?: number | null | undefined;
|
|
1158
1158
|
language?: string | null | undefined;
|
|
1159
|
+
set_warehouse?: string | null | undefined;
|
|
1159
1160
|
discount_amount?: number | null | undefined;
|
|
1160
1161
|
cost_center?: any;
|
|
1161
1162
|
project?: any;
|
|
@@ -1172,7 +1173,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1172
1173
|
price_list_currency?: string | null | undefined;
|
|
1173
1174
|
plc_conversion_rate?: number | null | undefined;
|
|
1174
1175
|
ignore_pricing_rule?: number | null | undefined;
|
|
1175
|
-
set_warehouse?: string | null | undefined;
|
|
1176
1176
|
scan_barcode?: any;
|
|
1177
1177
|
total_qty?: number | null | undefined;
|
|
1178
1178
|
base_total?: number | null | undefined;
|
|
@@ -1254,6 +1254,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1254
1254
|
received_qty: number;
|
|
1255
1255
|
image?: string | null | undefined;
|
|
1256
1256
|
qty?: number | null | undefined;
|
|
1257
|
+
rate?: number | null | undefined;
|
|
1258
|
+
amount?: number | null | undefined;
|
|
1257
1259
|
item_group?: string | null | undefined;
|
|
1258
1260
|
stock_qty?: number | null | undefined;
|
|
1259
1261
|
returned_qty?: number | null | undefined;
|
|
@@ -1265,8 +1267,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1265
1267
|
discount_percentage?: number | null | undefined;
|
|
1266
1268
|
discount_amount?: number | null | undefined;
|
|
1267
1269
|
base_rate_with_margin?: number | null | undefined;
|
|
1268
|
-
rate?: number | null | undefined;
|
|
1269
|
-
amount?: number | null | undefined;
|
|
1270
1270
|
base_amount?: number | null | undefined;
|
|
1271
1271
|
stock_uom_rate?: number | null | undefined;
|
|
1272
1272
|
is_free_item?: number | null | undefined;
|
|
@@ -1319,6 +1319,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1319
1319
|
supplier_name?: string | null | undefined;
|
|
1320
1320
|
is_internal_supplier?: number | null | undefined;
|
|
1321
1321
|
language?: string | null | undefined;
|
|
1322
|
+
set_warehouse?: string | null | undefined;
|
|
1322
1323
|
discount_amount?: number | null | undefined;
|
|
1323
1324
|
__unsaved?: number | null | undefined;
|
|
1324
1325
|
set_posting_time?: number | null | undefined;
|
|
@@ -1332,7 +1333,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1332
1333
|
price_list_currency?: string | null | undefined;
|
|
1333
1334
|
plc_conversion_rate?: number | null | undefined;
|
|
1334
1335
|
ignore_pricing_rule?: number | null | undefined;
|
|
1335
|
-
set_warehouse?: string | null | undefined;
|
|
1336
1336
|
total_qty?: number | null | undefined;
|
|
1337
1337
|
base_total?: number | null | undefined;
|
|
1338
1338
|
total_net_weight?: number | null | undefined;
|
|
@@ -1404,6 +1404,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1404
1404
|
brand?: any;
|
|
1405
1405
|
image?: string | null | undefined;
|
|
1406
1406
|
qty?: number | null | undefined;
|
|
1407
|
+
rate?: number | null | undefined;
|
|
1408
|
+
amount?: number | null | undefined;
|
|
1407
1409
|
barcode?: any;
|
|
1408
1410
|
item_group?: string | null | undefined;
|
|
1409
1411
|
stock_qty?: number | null | undefined;
|
|
@@ -1416,8 +1418,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1416
1418
|
discount_percentage?: number | null | undefined;
|
|
1417
1419
|
discount_amount?: number | null | undefined;
|
|
1418
1420
|
base_rate_with_margin?: number | null | undefined;
|
|
1419
|
-
rate?: number | null | undefined;
|
|
1420
|
-
amount?: number | null | undefined;
|
|
1421
1421
|
base_amount?: number | null | undefined;
|
|
1422
1422
|
pricing_rules?: any;
|
|
1423
1423
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -1494,6 +1494,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1494
1494
|
supplier_name?: string | null | undefined;
|
|
1495
1495
|
is_internal_supplier?: number | null | undefined;
|
|
1496
1496
|
language?: string | null | undefined;
|
|
1497
|
+
set_warehouse?: string | null | undefined;
|
|
1497
1498
|
discount_amount?: number | null | undefined;
|
|
1498
1499
|
cost_center?: any;
|
|
1499
1500
|
project?: any;
|
|
@@ -1510,7 +1511,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1510
1511
|
price_list_currency?: string | null | undefined;
|
|
1511
1512
|
plc_conversion_rate?: number | null | undefined;
|
|
1512
1513
|
ignore_pricing_rule?: number | null | undefined;
|
|
1513
|
-
set_warehouse?: string | null | undefined;
|
|
1514
1514
|
scan_barcode?: any;
|
|
1515
1515
|
total_qty?: number | null | undefined;
|
|
1516
1516
|
base_total?: number | null | undefined;
|
|
@@ -1591,6 +1591,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1591
1591
|
received_qty: number;
|
|
1592
1592
|
image?: string | null | undefined;
|
|
1593
1593
|
qty?: number | null | undefined;
|
|
1594
|
+
rate?: number | null | undefined;
|
|
1595
|
+
amount?: number | null | undefined;
|
|
1594
1596
|
item_group?: string | null | undefined;
|
|
1595
1597
|
stock_qty?: number | null | undefined;
|
|
1596
1598
|
returned_qty?: number | null | undefined;
|
|
@@ -1602,8 +1604,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1602
1604
|
discount_percentage?: number | null | undefined;
|
|
1603
1605
|
discount_amount?: number | null | undefined;
|
|
1604
1606
|
base_rate_with_margin?: number | null | undefined;
|
|
1605
|
-
rate?: number | null | undefined;
|
|
1606
|
-
amount?: number | null | undefined;
|
|
1607
1607
|
base_amount?: number | null | undefined;
|
|
1608
1608
|
stock_uom_rate?: number | null | undefined;
|
|
1609
1609
|
is_free_item?: number | null | undefined;
|
|
@@ -1656,6 +1656,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1656
1656
|
supplier_name?: string | null | undefined;
|
|
1657
1657
|
is_internal_supplier?: number | null | undefined;
|
|
1658
1658
|
language?: string | null | undefined;
|
|
1659
|
+
set_warehouse?: string | null | undefined;
|
|
1659
1660
|
discount_amount?: number | null | undefined;
|
|
1660
1661
|
__unsaved?: number | null | undefined;
|
|
1661
1662
|
set_posting_time?: number | null | undefined;
|
|
@@ -1669,7 +1670,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1669
1670
|
price_list_currency?: string | null | undefined;
|
|
1670
1671
|
plc_conversion_rate?: number | null | undefined;
|
|
1671
1672
|
ignore_pricing_rule?: number | null | undefined;
|
|
1672
|
-
set_warehouse?: string | null | undefined;
|
|
1673
1673
|
total_qty?: number | null | undefined;
|
|
1674
1674
|
base_total?: number | null | undefined;
|
|
1675
1675
|
total_net_weight?: number | null | undefined;
|
|
@@ -1741,6 +1741,8 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1741
1741
|
brand?: any;
|
|
1742
1742
|
image?: string | null | undefined;
|
|
1743
1743
|
qty?: number | null | undefined;
|
|
1744
|
+
rate?: number | null | undefined;
|
|
1745
|
+
amount?: number | null | undefined;
|
|
1744
1746
|
barcode?: any;
|
|
1745
1747
|
item_group?: string | null | undefined;
|
|
1746
1748
|
stock_qty?: number | null | undefined;
|
|
@@ -1753,8 +1755,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1753
1755
|
discount_percentage?: number | null | undefined;
|
|
1754
1756
|
discount_amount?: number | null | undefined;
|
|
1755
1757
|
base_rate_with_margin?: number | null | undefined;
|
|
1756
|
-
rate?: number | null | undefined;
|
|
1757
|
-
amount?: number | null | undefined;
|
|
1758
1758
|
base_amount?: number | null | undefined;
|
|
1759
1759
|
pricing_rules?: any;
|
|
1760
1760
|
stock_uom_rate?: number | null | undefined;
|
|
@@ -1831,6 +1831,7 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1831
1831
|
supplier_name?: string | null | undefined;
|
|
1832
1832
|
is_internal_supplier?: number | null | undefined;
|
|
1833
1833
|
language?: string | null | undefined;
|
|
1834
|
+
set_warehouse?: string | null | undefined;
|
|
1834
1835
|
discount_amount?: number | null | undefined;
|
|
1835
1836
|
cost_center?: any;
|
|
1836
1837
|
project?: any;
|
|
@@ -1847,7 +1848,6 @@ export declare class ERPNextPurchaseReceipt {
|
|
|
1847
1848
|
price_list_currency?: string | null | undefined;
|
|
1848
1849
|
plc_conversion_rate?: number | null | undefined;
|
|
1849
1850
|
ignore_pricing_rule?: number | null | undefined;
|
|
1850
|
-
set_warehouse?: string | null | undefined;
|
|
1851
1851
|
scan_barcode?: any;
|
|
1852
1852
|
total_qty?: number | null | undefined;
|
|
1853
1853
|
base_total?: number | null | undefined;
|
|
@@ -18,8 +18,8 @@ export declare class ERPNextServicecase {
|
|
|
18
18
|
creation: string;
|
|
19
19
|
modified: string;
|
|
20
20
|
modified_by: string;
|
|
21
|
-
title: string;
|
|
22
21
|
order_number: string;
|
|
22
|
+
title: string;
|
|
23
23
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
24
24
|
is_sent_to_client: boolean;
|
|
25
25
|
is_sent_to_cc: boolean;
|
|
@@ -52,7 +52,7 @@ export declare class ERPNextServicecase {
|
|
|
52
52
|
customer_message?: string | null | undefined;
|
|
53
53
|
agreed_terms?: string | null | undefined;
|
|
54
54
|
}>;
|
|
55
|
-
getList: <TField extends ("status" | "name" | "country" | "owner" | "creation" | "modified" | "modified_by" | "
|
|
55
|
+
getList: <TField extends ("status" | "name" | "country" | "owner" | "creation" | "modified" | "modified_by" | "order_number" | "title" | "shop" | "is_sent_to_client" | "is_sent_to_cc" | "created_with" | "return_items") | ("external_id" | "customer_email" | "complaint_date" | "customer_message" | "agreed_terms"), TAsDict extends boolean | undefined = undefined>({ fields, filters, skip, limit, priority, asDict, params, }?: {
|
|
56
56
|
fields?: TField[] | undefined;
|
|
57
57
|
filters?: (string | string[])[][];
|
|
58
58
|
skip?: number;
|
|
@@ -68,8 +68,8 @@ export declare class ERPNextServicecase {
|
|
|
68
68
|
creation: string;
|
|
69
69
|
modified: string;
|
|
70
70
|
modified_by: string;
|
|
71
|
-
title: string;
|
|
72
71
|
order_number: string;
|
|
72
|
+
title: string;
|
|
73
73
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
74
74
|
is_sent_to_client: boolean;
|
|
75
75
|
is_sent_to_cc: boolean;
|
|
@@ -113,8 +113,8 @@ export declare class ERPNextServicecase {
|
|
|
113
113
|
creation: string;
|
|
114
114
|
modified: string;
|
|
115
115
|
modified_by: string;
|
|
116
|
-
title: string;
|
|
117
116
|
order_number: string;
|
|
117
|
+
title: string;
|
|
118
118
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
119
119
|
is_sent_to_client: boolean;
|
|
120
120
|
is_sent_to_cc: boolean;
|
|
@@ -157,8 +157,8 @@ export declare class ERPNextServicecase {
|
|
|
157
157
|
creation: string;
|
|
158
158
|
modified: string;
|
|
159
159
|
modified_by: string;
|
|
160
|
-
title: string;
|
|
161
160
|
order_number: string;
|
|
161
|
+
title: string;
|
|
162
162
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
163
163
|
is_sent_to_client: boolean;
|
|
164
164
|
is_sent_to_cc: boolean;
|
|
@@ -206,8 +206,8 @@ export declare class ERPNextServicecase {
|
|
|
206
206
|
creation: string;
|
|
207
207
|
modified: string;
|
|
208
208
|
modified_by: string;
|
|
209
|
-
title: string;
|
|
210
209
|
order_number: string;
|
|
210
|
+
title: string;
|
|
211
211
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
212
212
|
is_sent_to_client: boolean;
|
|
213
213
|
is_sent_to_cc: boolean;
|
|
@@ -250,8 +250,8 @@ export declare class ERPNextServicecase {
|
|
|
250
250
|
creation: string;
|
|
251
251
|
modified: string;
|
|
252
252
|
modified_by: string;
|
|
253
|
-
title: string;
|
|
254
253
|
order_number: string;
|
|
254
|
+
title: string;
|
|
255
255
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
256
256
|
is_sent_to_client: boolean;
|
|
257
257
|
is_sent_to_cc: boolean;
|
|
@@ -296,8 +296,8 @@ export declare class ERPNextServicecase {
|
|
|
296
296
|
creation: string;
|
|
297
297
|
modified: string;
|
|
298
298
|
modified_by: string;
|
|
299
|
-
title: string;
|
|
300
299
|
order_number: string;
|
|
300
|
+
title: string;
|
|
301
301
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
302
302
|
is_sent_to_client: boolean;
|
|
303
303
|
is_sent_to_cc: boolean;
|