-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsublist.js
710 lines (653 loc) · 20.3 KB
/
sublist.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
/**
* SuiteScript Sublist APIs
*
* Sublists contain a list of references to other records. Note that the list of record references are referred
* to as line items. Within NetSuite there are four types of sublists: editor, inline editor, list, and static list.
*/
/**
* Cancel any changes made on the currently selected line
* @restriction Only supported for sublists of type inlineeditor and editor
*
* @param {string} type sublist name
* @return {void}
* @since 2005.0
*/
function nlapiCancelLineItem(type) {
}
/**
* Save changes made on the currently selected line to the sublist
*
* @param {string} type sublist name
* @return {void}
* @since 2005.0
*/
function nlapiCommitLineItem(type) {
}
/**
* Sets the given line item field of a sublist to disabled or enabled
*
* @param {string} type The sublist internal ID (for example, use addressbook as the ID for the Address sublist)
* @param {string} fieldName The name of the line item field to enable/disable
* @param {boolean} value If set to true the field is disabled. If set to false it is enabled
*
* @return {void}
*/
function nlapiDisableLineItemField(type, fieldName, value) {
}
/**
* Return the 1st line number that a matrix field value appears in
*
* @param {string} type sublist name
* @param {string} fieldName matrix field name
* @param {int} column matrix column index (1-based)
* @param {string} val the value being queried for in a matrix field
* @return {int}
* @since 2009.2
*/
function nlapiFindLineItemMatrixValue(type, fieldName, column, val) {
}
/**
* Return the 1st line number that a sublist field value appears in
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {string} val the value being queried for in a sublist field
* @return {int}
* @since 2009.2
*/
function nlapiFindLineItemValue(type, fieldName, val) {
}
/**
* Return the value of a field on the currently selected line
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {string} [timezone] value
*
* @return {string}
* @since 2013.2
*/
function nlapiGetCurrentLineItemDateTimeValue(type, fieldName, timezone) {
}
/**
* Return the line number for the currently selected line
*
* @param {string} type sublist name
*
* @return {int}
* @since 2005.0
*/
function nlapiGetCurrentLineItemIndex(type) {
}
/**
* Get the current value of a sublist field on the current record on a page
* @restriction supported in client and user event scripts only
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} column matrix column index (1-based)
* @return {string} value
* @since 2009.2
*/
function nlapiGetCurrentLineItemMatrixValue(type, fieldName, column) {
}
/**
* Return the label of a select field's current selection on the currently selected line
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
*
* @return {string}
* @since 2005.0
*/
function nlapiGetCurrentLineItemText(type, fieldName) {
}
/**
* Return the value of a field on the currently selected line
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @return {string}
* @since 2005.0
*/
function nlapiGetCurrentLineItemValue(type, fieldName) {
}
/**
* Returns the values of a multiselect sublist field on the currently selected line.
* One example of a multiselect sublist field is the Serial Numbers field on the Items sublist.
*
* This function is not supported in client SuiteScript. It is meant to be used in user event scripts.
*
* @param {string} type The sublist internal ID (for example, use addressbook as the ID for the Address sublist)
* @param {string} fieldName The name of the multiselect field
*
* @return {string[]}
* @since 2012.1
*/
function nlapiGetCurrentLineItemValues(type, fieldName) {
}
/**
* Return the number of sublists in a sublist on the current record on a page
*
* @restriction supported in client and user event scripts only
*
* @param {string} type sublist name
* @return {int}
* @since 2005.0
*/
function nlapiGetLineItemCount(type) {
}
/**
* Return the value of a sublist field on the current record on a page
* @restriction supported in client and user event scripts only
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} linenum line number (1-based)
* @param {string} [timezone] value
* @return {string}
* @since 2013.2
*/
function nlapiGetLineItemDateTimeValue(type, fieldName, linenum, timezone) {
}
/**
* Return field definition for a sublist field
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} [linenum] line number for sublist field (1-based) and only valid for sublists of type staticlist and list
*
* @return {nlobjField}
* @since 2009.1
*/
function nlapiGetLineItemField(type, fieldName, linenum) {
}
/**
* Return an nlobjField containing sublist field metadata
*
* @param {string} type matrix sublist name
* @param {string} fieldName matrix field name
* @param {int} linenum line number (1-based)
* @param {int} column matrix column index (1-based)
*
* @return {nlobjField}
* @since 2009.2
*/
function nlapiGetLineItemMatrixField(type, fieldName, linenum, column) {
}
/**
* Return the value of a sublist matrix field on the current record on a page
* @restriction supported in client and user event scripts only
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} linenum line number (1-based)
* @param {int} column column index (1-based)
*
* @return {string} value
* @since 2009.2
*/
function nlapiGetLineItemMatrixValue(type, fieldName, linenum, column) {
}
/**
* Return the label of a select field's current selection for a particular line
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} linenum line number (1-based)
* @return {string}
* @since 2005.0
*/
function nlapiGetLineItemText(type, fieldName, linenum) {
}
/**
* Return the value of a sublist field on the current record on a page
* @restriction supported in client and user event scripts only
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} linenum line number (1-based)
* @return {string}
* @since 2005.0
*/
function nlapiGetLineItemValue(type, fieldName, linenum) {
}
/**
* Returns the values of a multiselect sublist field on a selected line. One example of a multiselect
* Sublist field is the Serial Numbers field on the Items sublist
* @restriction supported in client scripts only
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} linenum line number (1-based)
* @return {string[]} An array of string values for the multiselect sublist field
* @since 2012.1
*/
function nlapiGetLineItemValues(type, fieldName, linenum) {
}
/**
* Return sublist field mandatoriness
*
* @restriction Only supported on sublists of type inlineeditor or editor (current field only)
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
*
* @return {boolean}
* @since 2009.1
*/
function nlapiGetLineItemMandatory(type, fieldName) {
}
/**
* Return the number of columns for a matrix field
*
* @param {string} type sublist name
* @param {string} fieldName matrix field name
* @return {int}
* @since 2009.2
*/
function nlapiGetMatrixCount(type, fieldName) {
}
/**
* Return field definition for a matrix field
*
* @param {string} type matrix sublist name
* @param {string} fieldName matrix field name
* @param {int} column matrix field column index (1-based)
*
* @return {nlobjField}
* @since 2009.2
*/
function nlapiGetMatrixField(type, fieldName, column) {
}
/**
* Get the value of a matrix header field
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} column matrix column index (1-based)
*
* @return {string}
* @since 2009.2
*/
function nlapiGetMatrixValue(type, fieldName, column) {
}
/**
* Insert and select a new line into the sublist on a page or userevent
* Available to client and user event scripts only
*
* @param {string} type sublist name
* @param {int} [line] line number at which to insert a new line
* @return{void}
* @since 2005.0
*/
function nlapiInsertLineItem(type, line) {
}
/**
* Adds a select option to a scripted select or multiselect sublist field
*
* @restriction Client SuiteScript only
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {string} value internal ID for select option
* @param {string} text display text for select option
* @param {boolean} [selected] if true then option will be selected by default
*
* @return {void}
* @since 2008.2
*/
function nlapiInsertLineItemOption(type, fieldName, value, text, selected) {
}
/**
* Returns true if any changes have been made to a sublist
*
* @restriction Client SuiteScript only
*
* @param {string} type sublist name
*
* @return {boolean}
* @since 2005.0
*/
function nlapiIsLineItemChanged(type) {
}
/**
* Refresh the sublist table
*
* @restriction Only supported for sublists of type inlineeditor, editor, and staticlist
* @restriction Client SuiteScript only
*
* @param {string} type sublist name
* @return{void}
* @since 2005.0
*/
function nlapiRefreshLineItems(type) {
}
/**
* Remove the currently selected line from the sublist on a page or userevent
*
* @param {string} type sublist name
* @param {int} [line] line number to remove
* @return {void}
* @since 2005.0
*/
function nlapiRemoveLineItem(type, line) {
}
/**
* Removes a select option (or all if value is null) from a scripted select or multiselect sublist field
*
* @restriction Client SuiteScript only
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {string} value internal ID for select option to remove
*
* @return {void}
* @since 2008.2
*/
function nlapiRemoveLineItemOption(type, fieldName, value) {
}
/**
* Select an existing line in a sublist
*
* @param {string} type sublist name
* @param {int} linenum line number to select
* @return {void}
* @since 2005.0
*/
function nlapiSelectLineItem(type, linenum) {
}
/**
* Select a new line in a sublist
*
* @restriction Only supported for sublists of type inlineeditor and editor
*
* @param {string} type sublist name
* @return {void}
* @since 2005.0
*/
function nlapiSelectNewLineItem(type) {
}
/**
* Set the value of a field on the currently selected line
* @restriction synchronous arg is only supported in client SuiteScript
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {string} value field value
* @param {string} [timezone] value
* @return {void}
* @since 2013.2
*/
function nlapiSetCurrentLineItemDateTimeValue(type, fieldName, value, timezone) {
}
/**
* Set the current value of a sublist field on the current record on a page
*
* @restriction supported in client and user event scripts only
* @restriction synchronous arg is only supported in Client SuiteScript
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} column matrix column index (1-based)
* @param {string} value matrix field value
* @param {boolean} [fireFieldChanged=true] if false then the field change event is suppressed
* @param {boolean} [synchronous=false] if true then sourcing and field change execution happens synchronously
*
* @return {void}
* @since 2009.2
*/
function nlapiSetCurrentLineItemMatrixValue(type, fieldName, column, value, fireFieldChanged, synchronous) {
}
/**
* Set the value of a field on the currently selected line using it's label
* @restriction synchronous arg is only supported in client SuiteScript
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {string} txt string containing display value or search text
* @param {boolean} [fireFieldChanged=true] if false then the field change event is suppressed
* @param {boolean} [synchronous=false] if true then sourcing and field change execution happens synchronously
* @return {void}
* @since 2005.0
*/
function nlapiSetCurrentLineItemText(type, fieldName, txt, fireFieldChanged, synchronous) {
}
/**
* Set the value of a field on the currently selected line
* @restriction synchronous arg is only supported in client SuiteScript
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {string} value field value
* @param {boolean} [fireFieldChanged=true] If false then the field change event is suppressed
* @param {boolean} [synchronous=false] if true then sourcing and field change execution happens synchronously
*
* @return {void}
* @since 2005.0
*/
function nlapiSetCurrentLineItemValue(type, fieldName, value, fireFieldChanged, synchronous) {
}
/**
* Sets the values for a multi-select sublist field.
*
* Note that like any other “set field” APIs, the values you use will be internal ID values.
* For example, rather than specifying 'Abe Simpson' as a customer value, you will use 232 or 88 or whatever
* the internal ID is for customer Abe Simpson.
*
* However, if you are using this API to set the serialnumber field on the Item sublist,
* you will set the text string of the actual serial number, for example 'serialnum1', 'serialnum2', and so on.
*
* This API is supported in client scripts only.
*
* @param {string} type The sublist internal ID (for example, use addressbook as the ID for the Address sublist)
* @param {string} fieldName The name of the multi-select sublist field being set
* @param {string[]} values The values for the field
* @param {boolean} [fireFieldChanged=true] If false then the field change event is suppressed
* @param {boolean} [synchronous=false] if true then sourcing and field change execution happens synchronously
*
* @return {void}
* @since 2012.1
*/
function nlapiSetCurrentLineItemValues(type, fieldName, values, fireFieldChanged, synchronous) {
}
/**
* Set the value of a sublist field on the current record on a page
* @restriction supported in client and user event scripts only
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} linenum line number (1-based)
* @param {string} value datetime value
* @param {string} [timezone] value
* @return {void}
* @since 2013.2
*/
function nlapiSetLineItemDateTimeValue(type, fieldName, linenum, value, timezone) {
}
/**
* Disable a sublist field
*
* @restriction Only supported on sublists of type inlineeditor, editor and list (current field only)
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {boolean} disable if true then field is disabled
* @param {int} linenum line number for sublist field (1-based) and only valid for sublists of type list
*
* @return {void}
* @since 2009.1
*/
function nlapiSetLineItemDisabled(type, fieldName, disable, linenum) {
}
/**
* Make a sublist field mandatory
*
* @restriction Only supported on sublists of type inlineeditor or editor (current field only)
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {boolean} mandatory if true then field is made mandatory
* @return {void}
* @since 2009.2
*/
function nlapiSetLineItemMandatory(type, fieldName, mandatory) {
}
/**
* Set the value of a sublist field on the current record on a page
* @restriction supported in client and user event scripts only
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} linenum line number (1-based)
* @param {string} value
* @return {void}
* @since 2005.0
*/
function nlapiSetLineItemValue(type, fieldName, linenum, value) {
}
/**
* Set the value of a matrix header field
*
* @restriction synchronous arg is only supported in client SuiteScript
*
* @param {string} type sublist name
* @param {string} fieldName sublist field name
* @param {int} column matrix column index (1-based)
* @param {string} value field value for matrix field
* @param {boolean} [fireFieldChanged=true] if false then the field change event is suppressed
* @param {boolean} [synchronous=false] if true then sourcing and field change execution happens synchronously
*
* @return {void}
* @since 2009.2
*/
function nlapiSetMatrixValue(type, fieldName, column, value, fireFieldChanged, synchronous) {
}
/**
* Primary object used to encapsulate a NetSuite sublist.
*
* This object is read-only except for instances created via the UI Object API using Suitelets
* or beforeLoad user event scripts.
* To add a sublist, you must first create a custom form using nlapiCreateForm(title, hideNavbar),
* which returns an nlobjForm object.
* Once the form object is instantiated, you can add a new sublist to the form using the
* nlobjForm.addSubList(name, type, label, tab) method, which returns a reference to nlobSublist.
*
* @constructor
*/
function nlobjSubList() {
}
/**
* Set the label for this sublist
* This method is only supported on sublists via the UI Object API
*
* @param {string} label
* @since 2008.2
*/
nlobjSubList.prototype.setLabel = function(label) {
};
/**
* Set helper text for this sublist
* This method is only supported on sublists via the UI Object API
*
* @param {string} help
* @since 2008.2
*/
nlobjSubList.prototype.setHelpText = function(help) {
};
/**
*
* @param field
*/
nlobjSubList.prototype.setAmountField = function(field) {
};
/**
* Set the display type for this sublist: hidden|normal
* This method is only supported on scripted or staticlist sublists via the UI Object API
*
* @param {string} type
* @since 2008.2
*/
nlobjSubList.prototype.setDisplayType = function(type) {
};
/**
* Set the value of a cell in this sublist
*
* @param {string} field sublist field name
* @param {int} line line number (1-based)
* @param {string} value sublist value
* @since 2008.2
*/
nlobjSubList.prototype.setLineItemValue = function(field, line, value) {
};
/**
* Set the value of a matrix cell in this sublist
* @param {string} field matrix field name
* @param {int} line line number (1-based)
* @param {int} column matrix column index (1-based)
* @param {string} value matrix field value
* @return {void}
* @since 2009.2
*/
nlobjSubList.prototype.setLineItemMatrixValue = function(field, line, column, value) {
};
/**
* Set values for multiple lines (Array of nlobjSearchResults or name-value pair Arrays) in this sublist
* Note that this method is only supported on scripted sublists via the UI Object API
*
* @param {string[][], nlobjSearchResult[]} values
* @since 2008.2
*/
nlobjSubList.prototype.setLineItemValues = function(values) {
};
/**
* Return the number of lines in a sublist
*
* @param {string} group sublist name
*
* @since 2010.1
*/
nlobjSubList.prototype.getLineItemCount = function(group) {
};
/**
* @since 2010.1
*/
nlobjSubList.prototype.getLineItemValue = function() {
};
/**
* Add a field (column) to this sublist
*
* @param {string} name field name
* @param {string} type field type
* @param {string} label field label
* @param {string, int} [source] script ID or internal ID for source list used for this select field
* @return {nlobjField}
* @since 2008.2
*/
nlobjSubList.prototype.addField = function(name, type, label, source) {
};
/**
* designate a field on sublist that must be unique across all lines (only supported on sublists of type inlineeditor, editor)
* @param {string} fieldName the name of a field on this sublist whose value must be unique across all lines
* @return {nlobjField}
* @since 2009.2
*/
nlobjSubList.prototype.setUniqueField = function(fieldName) {
};
/**
* Add a button to this sublist
*
* @param {string} name button name
* @param {string} label button label
* @param {string} script button script (function name)
* @return {nlobjButton}
* @since 2008.2
*/
nlobjSubList.prototype.addButton = function(name, label, script) {
};
/**
* Add "Refresh" button to sublists of type "staticlist" to support manual refreshing of the sublist (without entire page reloads) if it's contents are very volatile
* @return {nlobjButton}
* @since 2009.2
*/
nlobjSubList.prototype.addRefreshButton = function() {
};
/**
* Add "Mark All" and "Un-mark All" buttons to this sublist of type "list"
* @since 2008.2
*/
nlobjSubList.prototype.addMarkAllButtons = function() {
};