pui9-datatables 1.16.4

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.
Files changed (86) hide show
  1. package/README.md +24 -0
  2. package/dist/demo.html +10 -0
  3. package/dist/pui9-datatables.common.js +89206 -0
  4. package/dist/pui9-datatables.common.js.map +1 -0
  5. package/dist/pui9-datatables.css +5 -0
  6. package/dist/pui9-datatables.umd.js +89216 -0
  7. package/dist/pui9-datatables.umd.js.map +1 -0
  8. package/dist/pui9-datatables.umd.min.js +55 -0
  9. package/dist/pui9-datatables.umd.min.js.map +1 -0
  10. package/package-lock.json +15982 -0
  11. package/package.json +89 -0
  12. package/src/App.vue +37 -0
  13. package/src/components/desktop/PuiDatatable.vue +709 -0
  14. package/src/components/desktop/PuiQuickEditionDatatable.vue +548 -0
  15. package/src/components/desktop/PuiSimpleDatatable.vue +1498 -0
  16. package/src/components/desktop/datatables.net-plugins/pagination/input.js +213 -0
  17. package/src/components/desktop/footer/PuiDatatableFooter.vue +65 -0
  18. package/src/components/desktop/footer/PuiGridActionFooter.vue +132 -0
  19. package/src/components/desktop/quickedition/PuiQuickEditionExportBtn.vue +138 -0
  20. package/src/components/desktop/quickedition/PuiQuickEditionForm.vue +60 -0
  21. package/src/components/desktop/quickedition/PuiQuickEditionToolbar.vue +144 -0
  22. package/src/components/desktop/row/PuiGridRowActions.vue +112 -0
  23. package/src/components/desktop/subdialogs/PuiDatatableColumnMenu.vue +186 -0
  24. package/src/components/desktop/toolbar/PuiGridToolbar.vue +310 -0
  25. package/src/components/desktop/toolbar/actions/PuiGridActionListItem.vue +34 -0
  26. package/src/components/desktop/toolbar/actions/PuiGridActionsBtn.vue +56 -0
  27. package/src/components/desktop/toolbar/actions/PuiGridActionsDialog.vue +66 -0
  28. package/src/components/desktop/toolbar/actions/audit/PuiAuditDialog.vue +92 -0
  29. package/src/components/desktop/toolbar/actions/docgen/PuiDocgenTemplateMatchingsDialog.vue +139 -0
  30. package/src/components/desktop/toolbar/actions/docgen/PuiDocgenTemplateParametersDialog.vue +317 -0
  31. package/src/components/desktop/toolbar/actions/importexport/PuiGridExportDialog.vue +187 -0
  32. package/src/components/desktop/toolbar/actions/importexport/PuiGridImportDialog.vue +421 -0
  33. package/src/components/desktop/toolbar/export/PuiGridExportBtn.vue +175 -0
  34. package/src/components/desktop/toolbar/filtercombo/PuiGridFilterCombo.vue +237 -0
  35. package/src/components/desktop/toolbar/filtering/PuiGridFilterBtns.vue +163 -0
  36. package/src/components/desktop/toolbar/filtering/PuiGridFilterDialog.vue +434 -0
  37. package/src/components/desktop/toolbar/filtering/PuiGridFilterGroup.vue +313 -0
  38. package/src/components/desktop/toolbar/filtering/PuiGridFilterListBtn.vue +85 -0
  39. package/src/components/desktop/toolbar/filtering/PuiGridFilterListDialog.vue +254 -0
  40. package/src/components/desktop/toolbar/filtering/PuiGridFilterListItem.vue +192 -0
  41. package/src/components/desktop/toolbar/filtering/PuiGridFilterRule.vue +517 -0
  42. package/src/components/desktop/toolbar/grid-configuration/PuiGridConfBtns.vue +99 -0
  43. package/src/components/desktop/toolbar/grid-configuration/PuiGridConfDialog.vue +640 -0
  44. package/src/components/desktop/toolbar/grid-configuration/PuiSaveConfigDialog.vue +154 -0
  45. package/src/components/desktop/toolbar/row/PuiGridCreateBtn.vue +39 -0
  46. package/src/components/desktop/toolbar/row/PuiGridDeleteBtn.vue +86 -0
  47. package/src/components/desktop/toolbar/row/PuiGridRefreshBtn.vue +39 -0
  48. package/src/components/desktop/toolbar/row/PuiGridUpdateBtn.vue +56 -0
  49. package/src/components/desktop/toolbar/searching/PuiGridSearcher.vue +67 -0
  50. package/src/components/desktop/toolbar/searching/PuiGridSearcherColumnsList.vue +43 -0
  51. package/src/components/desktop/toolbar/sorting/PuiGridSortBtn.vue +44 -0
  52. package/src/components/desktop/toolbar/sorting/PuiGridSortDialog.vue +113 -0
  53. package/src/components/mobile/PuiDatalist.vue +477 -0
  54. package/src/components/mobile/PuiSimpleDatalist.vue +313 -0
  55. package/src/components/mobile/actions/PuiListActionListItem.vue +34 -0
  56. package/src/components/mobile/actions/PuiListActionsBtn.vue +38 -0
  57. package/src/components/mobile/actions/PuiListActionsDialog.vue +66 -0
  58. package/src/components/mobile/footer/PuiListActionFooter.vue +56 -0
  59. package/src/components/mobile/toolbar/PuiListToolbar.vue +60 -0
  60. package/src/components/mobile/toolbar/searching/PuiListSearcher.vue +53 -0
  61. package/src/components/mobile/toolbar/searching/PuiListSearcherColumnsList.vue +43 -0
  62. package/src/components/mobile/toolbar/sorting/PuiListSortBtn.vue +46 -0
  63. package/src/components/mobile/toolbar/sorting/PuiListSortDialog.vue +140 -0
  64. package/src/components/puiaudit/PuiAuditForm.vue +107 -0
  65. package/src/generalActions.js +135 -0
  66. package/src/index.js +31 -0
  67. package/src/main.js +67 -0
  68. package/src/mixins/PuiActionsBtnMixin.js +287 -0
  69. package/src/mixins/PuiActionsDialogMixin.js +161 -0
  70. package/src/mixins/PuiActionsListItemMixin.js +62 -0
  71. package/src/mixins/PuiDatatablesKeepPage.js +15 -0
  72. package/src/mixins/PuiGridFormMethodsMixin.js +133 -0
  73. package/src/mixins/PuiModelConfigurationMixin.js +15 -0
  74. package/src/mixins/PuiSearcherColumnsListMixin.js +108 -0
  75. package/src/mixins/PuiSearcherMixin.js +192 -0
  76. package/src/mixins/PuiSortBtnMixin.js +54 -0
  77. package/src/mixins/PuiSortDialogMixin.js +256 -0
  78. package/src/mixins/PuiToolbarBtnMixin.js +66 -0
  79. package/src/mixins/PuiToolbarDialogMixin.js +12 -0
  80. package/src/router.js +18 -0
  81. package/src/tests/PuiContainer.vue +139 -0
  82. package/src/tests/PuiProfileTestSimpleDatatable.vue +66 -0
  83. package/src/tests/PuiUserTestCompleteDatatable.vue +126 -0
  84. package/src/tests/PuiVariableTestQuickEditionDatatable.vue +39 -0
  85. package/src/tests/PuiVariableTestQuickEditionForm.vue +18 -0
  86. package/src/tests/modelConfigurations.json +3516 -0
@@ -0,0 +1,3516 @@
1
+ {
2
+ "country": {
3
+ "name": "country",
4
+ "entity": "v_country",
5
+ "defaultConfiguration": {
6
+ "isdefault": false,
7
+ "name": null,
8
+ "description": null,
9
+ "order": [
10
+ {
11
+ "column": "name",
12
+ "direction": "asc"
13
+ }
14
+ ],
15
+ "filterCombo": null,
16
+ "columns": null,
17
+ "pinColumn": false,
18
+ "grouped": false,
19
+ "documentsShowRole": false,
20
+ "documentsRoles": null,
21
+ "documentsShowLanguage": false,
22
+ "actionImportExport": false,
23
+ "actionCopy": false,
24
+ "refreshSeconds": null,
25
+ "extra": null
26
+ },
27
+ "url": {
28
+ "template": "/country/template",
29
+ "patch": "/country/patch",
30
+ "get": "/country/get",
31
+ "update": "/country/update",
32
+ "insert": "/country/insert",
33
+ "list": "/country/list",
34
+ "export": "/country/export",
35
+ "delete": "/country/delete"
36
+ },
37
+ "functionalities": {
38
+ "insert": "WRITE_COUNTRY",
39
+ "update": "WRITE_COUNTRY",
40
+ "list": "READ_COUNTRY",
41
+ "delete": "WRITE_COUNTRY",
42
+ "get": "READ_COUNTRY"
43
+ },
44
+ "columns": [
45
+ {
46
+ "name": "id",
47
+ "title": "vcountry.id",
48
+ "type": "numeric",
49
+ "isPk": true,
50
+ "visibility": "visible"
51
+ },
52
+ {
53
+ "name": "isocode",
54
+ "title": "vcountry.isocode",
55
+ "type": "text",
56
+ "isPk": false,
57
+ "visibility": "visible"
58
+ },
59
+ {
60
+ "name": "name",
61
+ "title": "vcountry.name",
62
+ "type": "text",
63
+ "isPk": false,
64
+ "visibility": "visible"
65
+ }
66
+ ],
67
+ "userFilters": [],
68
+ "modelFilters": [],
69
+ "configurations": {}
70
+ },
71
+ "puiusermodelfilter": {
72
+ "name": "puiusermodelfilter",
73
+ "entity": null,
74
+ "defaultConfiguration": {
75
+ "isdefault": false,
76
+ "name": null,
77
+ "description": null,
78
+ "order": null,
79
+ "filterCombo": null,
80
+ "columns": null,
81
+ "pinColumn": false,
82
+ "grouped": false,
83
+ "documentsShowRole": false,
84
+ "documentsRoles": null,
85
+ "documentsShowLanguage": false,
86
+ "actionImportExport": false,
87
+ "actionCopy": false,
88
+ "refreshSeconds": null,
89
+ "extra": null
90
+ },
91
+ "url": {
92
+ "template": "/puiusermodelfilter/template",
93
+ "patch": "/puiusermodelfilter/patch",
94
+ "update": "/puiusermodelfilter/update",
95
+ "insert": "/puiusermodelfilter/insert",
96
+ "delete": "/puiusermodelfilter/delete"
97
+ },
98
+ "functionalities": {
99
+ "insert": "",
100
+ "update": "",
101
+ "delete": ""
102
+ },
103
+ "columns": [],
104
+ "userFilters": [],
105
+ "modelFilters": [],
106
+ "configurations": {}
107
+ },
108
+ "vlupcategorytra": {
109
+ "name": "vlupcategorytra",
110
+ "entity": "v_lup_category_tra",
111
+ "defaultConfiguration": {
112
+ "isdefault": false,
113
+ "name": null,
114
+ "description": null,
115
+ "order": [
116
+ {
117
+ "column": "name",
118
+ "direction": "asc"
119
+ }
120
+ ],
121
+ "filterCombo": null,
122
+ "columns": null,
123
+ "pinColumn": false,
124
+ "grouped": false,
125
+ "documentsShowRole": false,
126
+ "documentsRoles": null,
127
+ "documentsShowLanguage": false,
128
+ "actionImportExport": false,
129
+ "actionCopy": false,
130
+ "refreshSeconds": null,
131
+ "extra": null
132
+ },
133
+ "url": {},
134
+ "functionalities": {},
135
+ "columns": [
136
+ {
137
+ "name": "id",
138
+ "title": "vlupcategorytra.id",
139
+ "type": "numeric",
140
+ "isPk": false,
141
+ "visibility": "visible"
142
+ },
143
+ {
144
+ "name": "lang",
145
+ "title": "vlupcategorytra.lang",
146
+ "type": "text",
147
+ "isPk": false,
148
+ "visibility": "completelyhidden"
149
+ },
150
+ {
151
+ "name": "name",
152
+ "title": "vlupcategorytra.name",
153
+ "type": "text",
154
+ "isPk": false,
155
+ "visibility": "visible"
156
+ }
157
+ ],
158
+ "userFilters": [],
159
+ "modelFilters": [],
160
+ "configurations": {}
161
+ },
162
+ "orderstatus": {
163
+ "name": "orderstatus",
164
+ "entity": "v_orderstatus",
165
+ "defaultConfiguration": {
166
+ "isdefault": false,
167
+ "name": null,
168
+ "description": null,
169
+ "order": [
170
+ {
171
+ "column": "timestamp",
172
+ "direction": "desc"
173
+ }
174
+ ],
175
+ "filterCombo": null,
176
+ "columns": null,
177
+ "pinColumn": false,
178
+ "grouped": false,
179
+ "documentsShowRole": false,
180
+ "documentsRoles": null,
181
+ "documentsShowLanguage": false,
182
+ "actionImportExport": false,
183
+ "actionCopy": false,
184
+ "refreshSeconds": null,
185
+ "extra": null
186
+ },
187
+ "url": {
188
+ "template": "/orderstatus/template",
189
+ "patch": "/orderstatus/patch",
190
+ "get": "/orderstatus/get",
191
+ "update": "/orderstatus/update",
192
+ "insert": "/orderstatus/insert",
193
+ "list": "/orderstatus/list",
194
+ "export": "/orderstatus/export",
195
+ "delete": "/orderstatus/delete"
196
+ },
197
+ "functionalities": {
198
+ "insert": "WRITE_ORDERSTATUS",
199
+ "update": "WRITE_ORDERSTATUS",
200
+ "list": "READ_ORDERSTATUS",
201
+ "delete": "WRITE_ORDERSTATUS",
202
+ "get": "READ_ORDERSTATUS"
203
+ },
204
+ "columns": [
205
+ {
206
+ "name": "id",
207
+ "title": "vorderstatus.id",
208
+ "type": "numeric",
209
+ "isPk": true,
210
+ "visibility": "visible"
211
+ },
212
+ {
213
+ "name": "orders",
214
+ "title": "vorderstatus.orders",
215
+ "type": "numeric",
216
+ "isPk": false,
217
+ "visibility": "visible"
218
+ },
219
+ {
220
+ "name": "status",
221
+ "title": "vorderstatus.status",
222
+ "type": "numeric",
223
+ "isPk": false,
224
+ "visibility": "visible"
225
+ },
226
+ {
227
+ "name": "statusdescription",
228
+ "title": "vorderstatus.statusdescription",
229
+ "type": "text",
230
+ "isPk": false,
231
+ "visibility": "visible"
232
+ },
233
+ {
234
+ "name": "timestamp",
235
+ "title": "vorderstatus.timestamp",
236
+ "type": "datetime",
237
+ "isPk": false,
238
+ "visibility": "visible"
239
+ }
240
+ ],
241
+ "userFilters": [],
242
+ "modelFilters": [],
243
+ "configurations": {}
244
+ },
245
+ "city": {
246
+ "name": "city",
247
+ "entity": "v_city",
248
+ "defaultConfiguration": {
249
+ "isdefault": false,
250
+ "name": null,
251
+ "description": null,
252
+ "order": [
253
+ {
254
+ "column": "name",
255
+ "direction": "asc"
256
+ }
257
+ ],
258
+ "filterCombo": null,
259
+ "columns": [
260
+ {
261
+ "name": "id",
262
+ "visibility": "visible"
263
+ },
264
+ {
265
+ "name": "name",
266
+ "visibility": "visible"
267
+ },
268
+ {
269
+ "name": "state",
270
+ "visibility": "hidden"
271
+ },
272
+ {
273
+ "name": "statecode",
274
+ "visibility": "visible"
275
+ },
276
+ {
277
+ "name": "statename",
278
+ "visibility": "visible"
279
+ },
280
+ {
281
+ "name": "country",
282
+ "visibility": "hidden"
283
+ },
284
+ {
285
+ "name": "countryisocode",
286
+ "visibility": "visible"
287
+ },
288
+ {
289
+ "name": "countryname",
290
+ "visibility": "visible"
291
+ }
292
+ ],
293
+ "pinColumn": true,
294
+ "grouped": false,
295
+ "documentsShowRole": false,
296
+ "documentsRoles": null,
297
+ "documentsShowLanguage": false,
298
+ "actionImportExport": false,
299
+ "actionCopy": false,
300
+ "refreshSeconds": null,
301
+ "extra": null
302
+ },
303
+ "url": {
304
+ "template": "/city/template",
305
+ "patch": "/city/patch",
306
+ "get": "/city/get",
307
+ "update": "/city/update",
308
+ "insert": "/city/insert",
309
+ "list": "/city/list",
310
+ "export": "/city/export",
311
+ "delete": "/city/delete"
312
+ },
313
+ "functionalities": {
314
+ "insert": "WRITE_CITY",
315
+ "update": "WRITE_CITY",
316
+ "list": "READ_CITY",
317
+ "delete": "WRITE_CITY",
318
+ "get": "READ_CITY"
319
+ },
320
+ "columns": [
321
+ {
322
+ "name": "id",
323
+ "title": "vcity.id",
324
+ "type": "numeric",
325
+ "isPk": true,
326
+ "visibility": "visible"
327
+ },
328
+ {
329
+ "name": "name",
330
+ "title": "vcity.name",
331
+ "type": "text",
332
+ "isPk": false,
333
+ "visibility": "visible"
334
+ },
335
+ {
336
+ "name": "state",
337
+ "title": "vcity.state",
338
+ "type": "numeric",
339
+ "isPk": false,
340
+ "visibility": "visible"
341
+ },
342
+ {
343
+ "name": "statecode",
344
+ "title": "vcity.statecode",
345
+ "type": "text",
346
+ "isPk": false,
347
+ "visibility": "visible"
348
+ },
349
+ {
350
+ "name": "statename",
351
+ "title": "vcity.statename",
352
+ "type": "text",
353
+ "isPk": false,
354
+ "visibility": "visible"
355
+ },
356
+ {
357
+ "name": "country",
358
+ "title": "vcity.country",
359
+ "type": "numeric",
360
+ "isPk": false,
361
+ "visibility": "visible"
362
+ },
363
+ {
364
+ "name": "countryisocode",
365
+ "title": "vcity.countryisocode",
366
+ "type": "text",
367
+ "isPk": false,
368
+ "visibility": "visible"
369
+ },
370
+ {
371
+ "name": "countryname",
372
+ "title": "vcity.countryname",
373
+ "type": "text",
374
+ "isPk": false,
375
+ "visibility": "visible"
376
+ }
377
+ ],
378
+ "userFilters": [],
379
+ "modelFilters": [],
380
+ "configurations": {
381
+ "datatables": [
382
+ {
383
+ "usr": "admin",
384
+ "model": "city",
385
+ "configuration": "{\"order\":[{\"column\":\"statename\",\"direction\":\"desc\"}],\"columns\":[{\"order\":0,\"title\":\"Nombre\",\"name\":\"name\",\"data\":\"name\",\"visible\":true,\"type\":\"text\"},{\"order\":1,\"title\":\"Nombre Estado\",\"name\":\"statename\",\"data\":\"statename\",\"visible\":true,\"type\":\"text\"},{\"order\":2,\"title\":\"Nombre País\",\"name\":\"countryname\",\"data\":\"countryname\",\"visible\":true,\"type\":\"text\"},{\"order\":11,\"title\":\"Id\",\"name\":\"id\",\"data\":\"id\",\"visible\":false,\"type\":\"numeric\"},{\"order\":12,\"title\":\"Estado\",\"name\":\"state\",\"data\":\"state\",\"visible\":false,\"type\":\"numeric\"},{\"order\":13,\"title\":\"Cód. Estado\",\"name\":\"statecode\",\"data\":\"statecode\",\"visible\":false,\"type\":\"text\"},{\"order\":14,\"title\":\"País\",\"name\":\"country\",\"data\":\"country\",\"visible\":false,\"type\":\"numeric\"},{\"order\":15,\"title\":\"Cód. ISO País\",\"name\":\"countryisocode\",\"data\":\"countryisocode\",\"visible\":false,\"type\":\"text\"}],\"name\":\"menos columnas\",\"grouped\":false,\"description\":\"fijada y ordenada\",\"isdefault\":false,\"pinColumn\":true,\"id\":23}",
386
+ "type": "datatables",
387
+ "id": 23
388
+ },
389
+ {
390
+ "usr": "admin",
391
+ "model": "city",
392
+ "configuration": "{\"order\":[{\"column\":\"countryname\",\"direction\":\"asc\"}],\"columns\":[{\"order\":0,\"title\":\"Nombre País\",\"name\":\"countryname\",\"data\":\"countryname\",\"visible\":true,\"type\":\"text\"},{\"order\":1,\"title\":\"Nombre\",\"name\":\"name\",\"data\":\"name\",\"visible\":true,\"type\":\"text\"},{\"order\":2,\"title\":\"Nombre Estado\",\"name\":\"statename\",\"data\":\"statename\",\"visible\":true,\"type\":\"text\"},{\"order\":8,\"title\":\"Id\",\"name\":\"id\",\"data\":\"id\",\"visible\":false,\"type\":\"numeric\"},{\"order\":10,\"title\":\"Estado\",\"name\":\"state\",\"data\":\"state\",\"visible\":false,\"type\":\"numeric\"},{\"order\":11,\"title\":\"Cód. Estado\",\"name\":\"statecode\",\"data\":\"statecode\",\"visible\":false,\"type\":\"text\"},{\"order\":13,\"title\":\"País\",\"name\":\"country\",\"data\":\"country\",\"visible\":false,\"type\":\"numeric\"},{\"order\":14,\"title\":\"Cód. ISO País\",\"name\":\"countryisocode\",\"data\":\"countryisocode\",\"visible\":false,\"type\":\"text\"}],\"name\":\"menos columnas\",\"grouped\":true,\"description\":\"agrupada\",\"isdefault\":false,\"id\":23}",
393
+ "type": "datatables",
394
+ "id": 22
395
+ }
396
+ ]
397
+ }
398
+ },
399
+ "productcategory": {
400
+ "name": "productcategory",
401
+ "entity": "v_product_category",
402
+ "defaultConfiguration": {
403
+ "isdefault": false,
404
+ "name": null,
405
+ "description": null,
406
+ "order": [
407
+ {
408
+ "column": "productname",
409
+ "direction": "asc"
410
+ }
411
+ ],
412
+ "filterCombo": null,
413
+ "columns": null,
414
+ "pinColumn": false,
415
+ "grouped": false,
416
+ "documentsShowRole": false,
417
+ "documentsRoles": null,
418
+ "documentsShowLanguage": false,
419
+ "actionImportExport": false,
420
+ "actionCopy": false,
421
+ "refreshSeconds": null,
422
+ "extra": null
423
+ },
424
+ "url": {},
425
+ "functionalities": {},
426
+ "columns": [
427
+ {
428
+ "name": "product",
429
+ "title": "vproductcategory.product",
430
+ "type": "numeric",
431
+ "isPk": false,
432
+ "visibility": "visible"
433
+ },
434
+ {
435
+ "name": "productname",
436
+ "title": "vproductcategory.productname",
437
+ "type": "text",
438
+ "isPk": false,
439
+ "visibility": "visible"
440
+ },
441
+ {
442
+ "name": "category",
443
+ "title": "vproductcategory.category",
444
+ "type": "numeric",
445
+ "isPk": false,
446
+ "visibility": "visible"
447
+ },
448
+ {
449
+ "name": "categoryname",
450
+ "title": "vproductcategory.categoryname",
451
+ "type": "text",
452
+ "isPk": false,
453
+ "visibility": "visible"
454
+ },
455
+ {
456
+ "name": "dateinsert",
457
+ "title": "vproductcategory.dateinsert",
458
+ "type": "datetime",
459
+ "isPk": false,
460
+ "visibility": "visible"
461
+ }
462
+ ],
463
+ "userFilters": [],
464
+ "modelFilters": [],
465
+ "configurations": {}
466
+ },
467
+ "vlupstate": {
468
+ "name": "vlupstate",
469
+ "entity": "v_lup_state",
470
+ "defaultConfiguration": {
471
+ "isdefault": false,
472
+ "name": null,
473
+ "description": null,
474
+ "order": [
475
+ {
476
+ "column": "name",
477
+ "direction": "asc"
478
+ }
479
+ ],
480
+ "filterCombo": null,
481
+ "columns": null,
482
+ "pinColumn": false,
483
+ "grouped": false,
484
+ "documentsShowRole": false,
485
+ "documentsRoles": null,
486
+ "documentsShowLanguage": false,
487
+ "actionImportExport": false,
488
+ "actionCopy": false,
489
+ "refreshSeconds": null,
490
+ "extra": null
491
+ },
492
+ "url": {},
493
+ "functionalities": {},
494
+ "columns": [
495
+ {
496
+ "name": "id",
497
+ "title": "vlupstate.id",
498
+ "type": "numeric",
499
+ "isPk": false,
500
+ "visibility": "visible"
501
+ },
502
+ {
503
+ "name": "country",
504
+ "title": "vlupstate.country",
505
+ "type": "numeric",
506
+ "isPk": false,
507
+ "visibility": "visible"
508
+ },
509
+ {
510
+ "name": "code",
511
+ "title": "vlupstate.code",
512
+ "type": "text",
513
+ "isPk": false,
514
+ "visibility": "visible"
515
+ },
516
+ {
517
+ "name": "name",
518
+ "title": "vlupstate.name",
519
+ "type": "text",
520
+ "isPk": false,
521
+ "visibility": "visible"
522
+ }
523
+ ],
524
+ "userFilters": [],
525
+ "modelFilters": [],
526
+ "configurations": {}
527
+ },
528
+ "login": {
529
+ "name": "login",
530
+ "entity": "v_pui_login",
531
+ "defaultConfiguration": {
532
+ "isdefault": false,
533
+ "name": null,
534
+ "description": null,
535
+ "order": [
536
+ {
537
+ "column": "id",
538
+ "direction": "desc"
539
+ }
540
+ ],
541
+ "filterCombo": null,
542
+ "columns": null,
543
+ "pinColumn": false,
544
+ "grouped": false,
545
+ "documentsShowRole": false,
546
+ "documentsRoles": null,
547
+ "documentsShowLanguage": false,
548
+ "actionImportExport": false,
549
+ "actionCopy": false,
550
+ "refreshSeconds": null,
551
+ "extra": null
552
+ },
553
+ "url": {
554
+ "keepSessionActive": "/login/keepSessionActive",
555
+ "listSessions": "/login/listSessions",
556
+ "signin": "/login/signin",
557
+ "signout": "/login/signout",
558
+ "killSessions": "/login/killSessions",
559
+ "list": "/login/list",
560
+ "export": "/login/export"
561
+ },
562
+ "functionalities": {
563
+ "list": "LIST_LOGIN",
564
+ "LIST_PUI_SESSIONS": "LIST_PUI_SESSIONS",
565
+ "KILL_PUI_SESSIONS": "KILL_PUI_SESSIONS"
566
+ },
567
+ "columns": [
568
+ {
569
+ "name": "id",
570
+ "title": "vpuilogin.id",
571
+ "type": "numeric",
572
+ "isPk": false,
573
+ "visibility": "visible"
574
+ },
575
+ {
576
+ "name": "usr",
577
+ "title": "vpuilogin.usr",
578
+ "type": "text",
579
+ "isPk": false,
580
+ "visibility": "visible"
581
+ },
582
+ {
583
+ "name": "datetime",
584
+ "title": "vpuilogin.datetime",
585
+ "type": "datetime",
586
+ "isPk": false,
587
+ "visibility": "visible"
588
+ },
589
+ {
590
+ "name": "ip",
591
+ "title": "vpuilogin.ip",
592
+ "type": "text",
593
+ "isPk": false,
594
+ "visibility": "visible"
595
+ },
596
+ {
597
+ "name": "client",
598
+ "title": "vpuilogin.client",
599
+ "type": "text",
600
+ "isPk": false,
601
+ "visibility": "visible"
602
+ }
603
+ ],
604
+ "userFilters": [],
605
+ "modelFilters": [],
606
+ "configurations": {}
607
+ },
608
+ "puidocgenmodel": {
609
+ "name": "puidocgenmodel",
610
+ "entity": "v_pui_docgen_model",
611
+ "defaultConfiguration": {
612
+ "isdefault": false,
613
+ "name": null,
614
+ "description": null,
615
+ "order": [
616
+ {
617
+ "column": "label",
618
+ "direction": "asc"
619
+ }
620
+ ],
621
+ "filterCombo": null,
622
+ "columns": null,
623
+ "pinColumn": false,
624
+ "grouped": false,
625
+ "documentsShowRole": false,
626
+ "documentsRoles": null,
627
+ "documentsShowLanguage": false,
628
+ "actionImportExport": false,
629
+ "actionCopy": false,
630
+ "refreshSeconds": null,
631
+ "extra": null
632
+ },
633
+ "url": {},
634
+ "functionalities": {},
635
+ "columns": [
636
+ {
637
+ "name": "model",
638
+ "title": "vpuidocgenmodel.model",
639
+ "type": "text",
640
+ "isPk": false,
641
+ "visibility": "visible"
642
+ },
643
+ {
644
+ "name": "entity",
645
+ "title": "vpuidocgenmodel.entity",
646
+ "type": "text",
647
+ "isPk": false,
648
+ "visibility": "visible"
649
+ },
650
+ {
651
+ "name": "label",
652
+ "title": "vpuidocgenmodel.label",
653
+ "type": "text",
654
+ "isPk": false,
655
+ "visibility": "visible"
656
+ }
657
+ ],
658
+ "userFilters": [],
659
+ "modelFilters": [],
660
+ "configurations": {}
661
+ },
662
+ "puiuser": {
663
+ "name": "puiuser",
664
+ "entity": "v_pui_user",
665
+ "defaultConfiguration": {
666
+ "isdefault": false,
667
+ "name": null,
668
+ "description": null,
669
+ "order": [
670
+ {
671
+ "column": "usr",
672
+ "direction": "asc"
673
+ }
674
+ ],
675
+ "filterCombo": null,
676
+ "columns": null,
677
+ "pinColumn": false,
678
+ "grouped": false,
679
+ "documentsShowRole": false,
680
+ "documentsRoles": null,
681
+ "documentsShowLanguage": false,
682
+ "actionImportExport": false,
683
+ "actionCopy": false,
684
+ "refreshSeconds": null,
685
+ "extra": null
686
+ },
687
+ "url": {
688
+ "changeUserPassword": "/puiuser/changeUserPassword",
689
+ "template": "/puiuser/template",
690
+ "setPassword": "/puiuser/setPassword",
691
+ "requestResetPassword": "/puiuser/requestResetPassword",
692
+ "update": "/puiuser/update",
693
+ "insert": "/puiuser/insert",
694
+ "list": "/puiuser/list",
695
+ "delete": "/puiuser/delete",
696
+ "patch": "/puiuser/patch",
697
+ "doResetPassword": "/puiuser/doResetPassword",
698
+ "enableUser": "/puiuser/enableUser",
699
+ "get": "/puiuser/get",
700
+ "disableUser": "/puiuser/disableUser",
701
+ "export": "/puiuser/export"
702
+ },
703
+ "functionalities": {
704
+ "CHANGE_USER_PASSWORDS": "CHANGE_USER_PASSWORDS",
705
+ "get": "READ_PUI_USER",
706
+ "update": "WRITE_PUI_USER",
707
+ "insert": "WRITE_PUI_USER",
708
+ "list": "READ_PUI_USER",
709
+ "delete": "WRITE_PUI_USER"
710
+ },
711
+ "columns": [
712
+ {
713
+ "name": "usr",
714
+ "title": "vpuiuser.usr",
715
+ "type": "text",
716
+ "isPk": true,
717
+ "visibility": "visible"
718
+ },
719
+ {
720
+ "name": "name",
721
+ "title": "vpuiuser.name",
722
+ "type": "text",
723
+ "isPk": false,
724
+ "visibility": "visible"
725
+ },
726
+ {
727
+ "name": "email",
728
+ "title": "vpuiuser.email",
729
+ "type": "text",
730
+ "isPk": false,
731
+ "visibility": "visible"
732
+ },
733
+ {
734
+ "name": "language",
735
+ "title": "vpuiuser.language",
736
+ "type": "text",
737
+ "isPk": false,
738
+ "visibility": "visible"
739
+ },
740
+ {
741
+ "name": "dateformat",
742
+ "title": "vpuiuser.dateformat",
743
+ "type": "text",
744
+ "isPk": false,
745
+ "visibility": "visible"
746
+ },
747
+ {
748
+ "name": "disabled",
749
+ "title": "vpuiuser.disabled",
750
+ "type": "numeric",
751
+ "isPk": false,
752
+ "visibility": "visible"
753
+ },
754
+ {
755
+ "name": "disableddate",
756
+ "title": "vpuiuser.disableddate",
757
+ "type": "datetime",
758
+ "isPk": false,
759
+ "visibility": "hidden"
760
+ },
761
+ {
762
+ "name": "lastaccesstime",
763
+ "title": "vpuiuser.lastaccesstime",
764
+ "type": "datetime",
765
+ "isPk": false,
766
+ "visibility": "visible"
767
+ },
768
+ {
769
+ "name": "lastaccessip",
770
+ "title": "vpuiuser.lastaccessip",
771
+ "type": "text",
772
+ "isPk": false,
773
+ "visibility": "visible"
774
+ }
775
+ ],
776
+ "userFilters": [
777
+ {
778
+ "usr": "admin",
779
+ "model": "puiuser",
780
+ "label": "prueba gmail",
781
+ "filter": "{\"rules\":[],\"groups\":[{\"groupOp\":\"or\",\"rules\":[{\"field\":\"email\",\"op\":\"cn\",\"data\":\"gmail\"}],\"groups\":[]}],\"groupOp\":\"or\"}",
782
+ "id": 2
783
+ },
784
+ {
785
+ "usr": "admin",
786
+ "model": "puiuser",
787
+ "label": "email gmail",
788
+ "filter": "{\"rules\":[],\"groups\":[{\"groupOp\":\"or\",\"rules\":[{\"field\":\"email\",\"op\":\"cn\",\"data\":\"gmail\"}],\"groups\":[]}],\"groupOp\":\"or\"}",
789
+ "id": 1
790
+ }
791
+ ],
792
+ "modelFilters": [],
793
+ "configurations": {
794
+ "datatables": [
795
+ {
796
+ "usr": "admin",
797
+ "model": "puiuser",
798
+ "configuration": "{\"columns\":[{\"order\":1,\"title\":\"Name\",\"name\":\"name\",\"data\":\"name\",\"visible\":true,\"type\":\"text\"},{\"order\":2,\"title\":\"Email\",\"name\":\"email\",\"data\":\"email\",\"visible\":true,\"type\":\"text\"},{\"order\":0,\"title\":\"Language\",\"name\":\"language\",\"data\":\"language\",\"visible\":true,\"type\":\"text\"},{\"order\":3,\"title\":\"Username\",\"name\":\"usr\",\"data\":\"usr\",\"visible\":true,\"type\":\"text\"}],\"order\":[{\"column\":\"language\",\"direction\":\"asc\"}],\"name\":\"Todos los campos visibles\",\"grouped\":true,\"description\":\"agrupada\"}",
799
+ "type": "datatables",
800
+ "id": 21
801
+ },
802
+ {
803
+ "usr": "admin",
804
+ "model": "puiuser",
805
+ "configuration": "{\"columns\":[{\"title\":\"Name\",\"name\":\"name\",\"data\":\"name\",\"visibility\":\"visible\",\"type\":\"text\",\"visible\":true},{\"title\":\"Email\",\"name\":\"email\",\"data\":\"email\",\"visibility\":\"visible\",\"type\":\"text\",\"visible\":true},{\"title\":\"Language\",\"name\":\"language\",\"data\":\"language\",\"visibility\":\"visible\",\"type\":\"text\",\"visible\":true},{\"title\":\"Username\",\"name\":\"usr\",\"data\":\"usr\",\"visibility\":\"hidden\",\"type\":\"text\",\"visible\":false}],\"order\":[{\"column\":\"usr\",\"direction\":\"asc\"}],\"name\":\"Nueva\"}",
806
+ "type": "datatables",
807
+ "id": 29
808
+ }
809
+ ]
810
+ }
811
+ },
812
+ "puidocument": {
813
+ "name": "puidocument",
814
+ "entity": "v_pui_document",
815
+ "defaultConfiguration": {
816
+ "isdefault": false,
817
+ "name": null,
818
+ "description": null,
819
+ "order": [
820
+ {
821
+ "column": "id",
822
+ "direction": "asc"
823
+ }
824
+ ],
825
+ "filterCombo": null,
826
+ "columns": null,
827
+ "pinColumn": false,
828
+ "grouped": false,
829
+ "documentsShowRole": false,
830
+ "documentsRoles": null,
831
+ "documentsShowLanguage": false,
832
+ "actionImportExport": false,
833
+ "actionCopy": false,
834
+ "refreshSeconds": null,
835
+ "extra": null
836
+ },
837
+ "url": {
838
+ "template": "/puidocument/template",
839
+ "getExtensionsForModel": "/puidocument/getExtensionsForModel",
840
+ "upload": "/puidocument/upload",
841
+ "getDocuments": "/puidocument/getDocuments",
842
+ "update": "/puidocument/update",
843
+ "list": "/puidocument/list",
844
+ "delete": "/puidocument/delete",
845
+ "patch": "/puidocument/patch",
846
+ "download": "/puidocument/download",
847
+ "getModelsWithDocuments": "/puidocument/getModelsWithDocuments",
848
+ "reload": "/puidocument/reload",
849
+ "get": "/puidocument/get",
850
+ "reloadThumbnails": "/puidocument/reloadThumbnails",
851
+ "getRoles": "/puidocument/getRoles"
852
+ },
853
+ "functionalities": {
854
+ "update": "WRITE_PUI_DOCUMENT",
855
+ "insert": "WRITE_PUI_DOCUMENT",
856
+ "list": "READ_PUI_DOCUMENT",
857
+ "delete": "WRITE_PUI_DOCUMENT",
858
+ "get": "READ_PUI_DOCUMENT"
859
+ },
860
+ "columns": [
861
+ {
862
+ "name": "id",
863
+ "title": "vpuidocument.id",
864
+ "type": "numeric",
865
+ "isPk": true,
866
+ "visibility": "visible"
867
+ },
868
+ {
869
+ "name": "model",
870
+ "title": "vpuidocument.model",
871
+ "type": "text",
872
+ "isPk": false,
873
+ "visibility": "visible"
874
+ },
875
+ {
876
+ "name": "pk",
877
+ "title": "vpuidocument.pk",
878
+ "type": "text",
879
+ "isPk": false,
880
+ "visibility": "visible"
881
+ },
882
+ {
883
+ "name": "description",
884
+ "title": "vpuidocument.description",
885
+ "type": "text",
886
+ "isPk": false,
887
+ "visibility": "visible"
888
+ },
889
+ {
890
+ "name": "language",
891
+ "title": "vpuidocument.language",
892
+ "type": "text",
893
+ "isPk": false,
894
+ "visibility": "visible"
895
+ },
896
+ {
897
+ "name": "filename",
898
+ "title": "vpuidocument.filename",
899
+ "type": "text",
900
+ "isPk": false,
901
+ "visibility": "visible"
902
+ },
903
+ {
904
+ "name": "filenameorig",
905
+ "title": "vpuidocument.filenameorig",
906
+ "type": "text",
907
+ "isPk": false,
908
+ "visibility": "visible"
909
+ },
910
+ {
911
+ "name": "role",
912
+ "title": "vpuidocument.role",
913
+ "type": "text",
914
+ "isPk": false,
915
+ "visibility": "visible"
916
+ },
917
+ {
918
+ "name": "roledescription",
919
+ "title": "vpuidocument.roledescription",
920
+ "type": "text",
921
+ "isPk": false,
922
+ "visibility": "visible"
923
+ },
924
+ {
925
+ "name": "thumbnails",
926
+ "title": "vpuidocument.thumbnails",
927
+ "type": "text",
928
+ "isPk": false,
929
+ "visibility": "visible"
930
+ },
931
+ {
932
+ "name": "url",
933
+ "title": "vpuidocument.url",
934
+ "type": "text",
935
+ "isPk": false,
936
+ "visibility": "visible"
937
+ },
938
+ {
939
+ "name": "datetime",
940
+ "title": "vpuidocument.datetime",
941
+ "type": "datetime",
942
+ "isPk": false,
943
+ "visibility": "visible"
944
+ },
945
+ {
946
+ "name": "lang",
947
+ "title": "vpuidocument.lang",
948
+ "type": "text",
949
+ "isPk": false,
950
+ "visibility": "completelyhidden"
951
+ }
952
+ ],
953
+ "userFilters": [],
954
+ "modelFilters": [],
955
+ "configurations": {}
956
+ },
957
+ "elasticsearch": {
958
+ "name": "elasticsearch",
959
+ "entity": null,
960
+ "defaultConfiguration": {
961
+ "isdefault": false,
962
+ "name": null,
963
+ "description": null,
964
+ "order": null,
965
+ "filterCombo": null,
966
+ "columns": null,
967
+ "pinColumn": false,
968
+ "grouped": false,
969
+ "documentsShowRole": false,
970
+ "documentsRoles": null,
971
+ "documentsShowLanguage": false,
972
+ "actionImportExport": false,
973
+ "actionCopy": false,
974
+ "refreshSeconds": null,
975
+ "extra": null
976
+ },
977
+ "url": {
978
+ "setActive": "/elasticsearch/setActive",
979
+ "reindex": "/elasticsearch/reindex",
980
+ "getInfo": "/elasticsearch/getInfo",
981
+ "document": "/elasticsearch/document",
982
+ "count": "/elasticsearch/count",
983
+ "setBlocked": "/elasticsearch/setBlocked",
984
+ "deleteIndex": "/elasticsearch/deleteIndex"
985
+ },
986
+ "functionalities": {
987
+ "admin": "ADMIN_ELASTICSEARCH",
988
+ "insert": "WRITE_ELASTICSEARCH",
989
+ "get": "READ_ELASTICSEARCH"
990
+ },
991
+ "columns": [],
992
+ "userFilters": [],
993
+ "modelFilters": [],
994
+ "configurations": {}
995
+ },
996
+ "importexport": {
997
+ "name": "importexport",
998
+ "entity": null,
999
+ "defaultConfiguration": {
1000
+ "isdefault": false,
1001
+ "name": null,
1002
+ "description": null,
1003
+ "order": null,
1004
+ "filterCombo": null,
1005
+ "columns": null,
1006
+ "pinColumn": false,
1007
+ "grouped": false,
1008
+ "documentsShowRole": false,
1009
+ "documentsRoles": null,
1010
+ "documentsShowLanguage": false,
1011
+ "actionImportExport": false,
1012
+ "actionCopy": false,
1013
+ "refreshSeconds": null,
1014
+ "extra": null
1015
+ },
1016
+ "url": {
1017
+ "getExportableColumns": "/importexport/getExportableColumns",
1018
+ "cancelImport": "/importexport/cancelImport",
1019
+ "reload": "/importexport/reload",
1020
+ "performImport": "/importexport/performImport",
1021
+ "prepareImport": "/importexport/prepareImport",
1022
+ "export": "/importexport/export"
1023
+ },
1024
+ "functionalities": {
1025
+ "EXECUTE_IMPORT_EXPORT": "EXECUTE_IMPORT_EXPORT"
1026
+ },
1027
+ "columns": [],
1028
+ "userFilters": [],
1029
+ "modelFilters": [],
1030
+ "configurations": {}
1031
+ },
1032
+ "puifunctionality": {
1033
+ "name": "puifunctionality",
1034
+ "entity": "v_pui_functionality",
1035
+ "defaultConfiguration": {
1036
+ "isdefault": false,
1037
+ "name": null,
1038
+ "description": null,
1039
+ "order": [
1040
+ {
1041
+ "column": "functionality",
1042
+ "direction": "asc"
1043
+ }
1044
+ ],
1045
+ "filterCombo": null,
1046
+ "columns": null,
1047
+ "pinColumn": false,
1048
+ "grouped": false,
1049
+ "documentsShowRole": false,
1050
+ "documentsRoles": null,
1051
+ "documentsShowLanguage": false,
1052
+ "actionImportExport": false,
1053
+ "actionCopy": false,
1054
+ "refreshSeconds": null,
1055
+ "extra": null
1056
+ },
1057
+ "url": {
1058
+ "list": "/puifunctionality/list",
1059
+ "export": "/puifunctionality/export"
1060
+ },
1061
+ "functionalities": {
1062
+ "list": "READ_PUI_FUNCTIONALITY"
1063
+ },
1064
+ "columns": [
1065
+ {
1066
+ "name": "functionality",
1067
+ "title": "vpuifunctionality.functionality",
1068
+ "type": "text",
1069
+ "isPk": true,
1070
+ "visibility": "visible"
1071
+ },
1072
+ {
1073
+ "name": "name",
1074
+ "title": "vpuifunctionality.name",
1075
+ "type": "text",
1076
+ "isPk": false,
1077
+ "visibility": "visible"
1078
+ },
1079
+ {
1080
+ "name": "subsystem",
1081
+ "title": "vpuifunctionality.subsystem",
1082
+ "type": "text",
1083
+ "isPk": false,
1084
+ "visibility": "visible"
1085
+ },
1086
+ {
1087
+ "name": "subsystemname",
1088
+ "title": "vpuifunctionality.subsystemname",
1089
+ "type": "text",
1090
+ "isPk": false,
1091
+ "visibility": "visible"
1092
+ },
1093
+ {
1094
+ "name": "lang",
1095
+ "title": "vpuifunctionality.lang",
1096
+ "type": "text",
1097
+ "isPk": false,
1098
+ "visibility": "completelyhidden"
1099
+ }
1100
+ ],
1101
+ "userFilters": [],
1102
+ "modelFilters": [],
1103
+ "configurations": {}
1104
+ },
1105
+ "puiusermodelconfig": {
1106
+ "name": "puiusermodelconfig",
1107
+ "entity": null,
1108
+ "defaultConfiguration": {
1109
+ "isdefault": false,
1110
+ "name": null,
1111
+ "description": null,
1112
+ "order": null,
1113
+ "filterCombo": null,
1114
+ "columns": null,
1115
+ "pinColumn": false,
1116
+ "grouped": false,
1117
+ "documentsShowRole": false,
1118
+ "documentsRoles": null,
1119
+ "documentsShowLanguage": false,
1120
+ "actionImportExport": false,
1121
+ "actionCopy": false,
1122
+ "refreshSeconds": null,
1123
+ "extra": null
1124
+ },
1125
+ "url": {
1126
+ "template": "/puiusermodelconfig/template",
1127
+ "patch": "/puiusermodelconfig/patch",
1128
+ "update": "/puiusermodelconfig/update",
1129
+ "insert": "/puiusermodelconfig/insert",
1130
+ "delete": "/puiusermodelconfig/delete"
1131
+ },
1132
+ "functionalities": {
1133
+ "insert": "",
1134
+ "update": "",
1135
+ "delete": ""
1136
+ },
1137
+ "columns": [],
1138
+ "userFilters": [],
1139
+ "modelFilters": [],
1140
+ "configurations": {}
1141
+ },
1142
+ "vlupcity": {
1143
+ "name": "vlupcity",
1144
+ "entity": "v_lup_city",
1145
+ "defaultConfiguration": {
1146
+ "isdefault": false,
1147
+ "name": null,
1148
+ "description": null,
1149
+ "order": [
1150
+ {
1151
+ "column": "name",
1152
+ "direction": "asc"
1153
+ }
1154
+ ],
1155
+ "filterCombo": null,
1156
+ "columns": null,
1157
+ "pinColumn": false,
1158
+ "grouped": false,
1159
+ "documentsShowRole": false,
1160
+ "documentsRoles": null,
1161
+ "documentsShowLanguage": false,
1162
+ "actionImportExport": false,
1163
+ "actionCopy": false,
1164
+ "refreshSeconds": null,
1165
+ "extra": null
1166
+ },
1167
+ "url": {},
1168
+ "functionalities": {},
1169
+ "columns": [
1170
+ {
1171
+ "name": "id",
1172
+ "title": "vlupcity.id",
1173
+ "type": "numeric",
1174
+ "isPk": false,
1175
+ "visibility": "visible"
1176
+ },
1177
+ {
1178
+ "name": "state",
1179
+ "title": "vlupcity.state",
1180
+ "type": "numeric",
1181
+ "isPk": false,
1182
+ "visibility": "visible"
1183
+ },
1184
+ {
1185
+ "name": "name",
1186
+ "title": "vlupcity.name",
1187
+ "type": "text",
1188
+ "isPk": false,
1189
+ "visibility": "visible"
1190
+ }
1191
+ ],
1192
+ "userFilters": [],
1193
+ "modelFilters": [],
1194
+ "configurations": {}
1195
+ },
1196
+ "supplier": {
1197
+ "name": "supplier",
1198
+ "entity": "v_supplier",
1199
+ "defaultConfiguration": {
1200
+ "isdefault": false,
1201
+ "name": null,
1202
+ "description": null,
1203
+ "order": [
1204
+ {
1205
+ "column": "name",
1206
+ "direction": "asc"
1207
+ }
1208
+ ],
1209
+ "filterCombo": null,
1210
+ "columns": null,
1211
+ "pinColumn": false,
1212
+ "grouped": false,
1213
+ "documentsShowRole": false,
1214
+ "documentsRoles": null,
1215
+ "documentsShowLanguage": false,
1216
+ "actionImportExport": false,
1217
+ "actionCopy": false,
1218
+ "refreshSeconds": null,
1219
+ "extra": null
1220
+ },
1221
+ "url": {
1222
+ "template": "/supplier/template",
1223
+ "patch": "/supplier/patch",
1224
+ "get": "/supplier/get",
1225
+ "update": "/supplier/update",
1226
+ "insert": "/supplier/insert",
1227
+ "list": "/supplier/list",
1228
+ "export": "/supplier/export",
1229
+ "delete": "/supplier/delete"
1230
+ },
1231
+ "functionalities": {
1232
+ "insert": "WRITE_SUPPLIER",
1233
+ "update": "WRITE_SUPPLIER",
1234
+ "list": "READ_SUPPLIER",
1235
+ "delete": "WRITE_SUPPLIER",
1236
+ "get": "READ_SUPPLIER"
1237
+ },
1238
+ "columns": [
1239
+ {
1240
+ "name": "id",
1241
+ "title": "vsupplier.id",
1242
+ "type": "numeric",
1243
+ "isPk": true,
1244
+ "visibility": "visible"
1245
+ },
1246
+ {
1247
+ "name": "name",
1248
+ "title": "vsupplier.name",
1249
+ "type": "text",
1250
+ "isPk": false,
1251
+ "visibility": "visible"
1252
+ },
1253
+ {
1254
+ "name": "addr1",
1255
+ "title": "vsupplier.addr1",
1256
+ "type": "text",
1257
+ "isPk": false,
1258
+ "visibility": "visible"
1259
+ },
1260
+ {
1261
+ "name": "addr2",
1262
+ "title": "vsupplier.addr2",
1263
+ "type": "text",
1264
+ "isPk": false,
1265
+ "visibility": "visible"
1266
+ },
1267
+ {
1268
+ "name": "country",
1269
+ "title": "vsupplier.country",
1270
+ "type": "numeric",
1271
+ "isPk": false,
1272
+ "visibility": "visible"
1273
+ },
1274
+ {
1275
+ "name": "countryname",
1276
+ "title": "vsupplier.countryname",
1277
+ "type": "text",
1278
+ "isPk": false,
1279
+ "visibility": "visible"
1280
+ },
1281
+ {
1282
+ "name": "state",
1283
+ "title": "vsupplier.state",
1284
+ "type": "numeric",
1285
+ "isPk": false,
1286
+ "visibility": "visible"
1287
+ },
1288
+ {
1289
+ "name": "statename",
1290
+ "title": "vsupplier.statename",
1291
+ "type": "text",
1292
+ "isPk": false,
1293
+ "visibility": "visible"
1294
+ },
1295
+ {
1296
+ "name": "city",
1297
+ "title": "vsupplier.city",
1298
+ "type": "numeric",
1299
+ "isPk": false,
1300
+ "visibility": "visible"
1301
+ },
1302
+ {
1303
+ "name": "cityname",
1304
+ "title": "vsupplier.cityname",
1305
+ "type": "text",
1306
+ "isPk": false,
1307
+ "visibility": "visible"
1308
+ },
1309
+ {
1310
+ "name": "zip",
1311
+ "title": "vsupplier.zip",
1312
+ "type": "text",
1313
+ "isPk": false,
1314
+ "visibility": "visible"
1315
+ },
1316
+ {
1317
+ "name": "phone",
1318
+ "title": "vsupplier.phone",
1319
+ "type": "text",
1320
+ "isPk": false,
1321
+ "visibility": "visible"
1322
+ },
1323
+ {
1324
+ "name": "active",
1325
+ "title": "vsupplier.active",
1326
+ "type": "numeric",
1327
+ "isPk": false,
1328
+ "visibility": "visible"
1329
+ }
1330
+ ],
1331
+ "userFilters": [],
1332
+ "modelFilters": [],
1333
+ "configurations": {}
1334
+ },
1335
+ "cardtype": {
1336
+ "name": "cardtype",
1337
+ "entity": "v_cardtype",
1338
+ "defaultConfiguration": {
1339
+ "isdefault": false,
1340
+ "name": null,
1341
+ "description": null,
1342
+ "order": [
1343
+ {
1344
+ "column": "name",
1345
+ "direction": "asc"
1346
+ }
1347
+ ],
1348
+ "filterCombo": null,
1349
+ "columns": null,
1350
+ "pinColumn": false,
1351
+ "grouped": false,
1352
+ "documentsShowRole": false,
1353
+ "documentsRoles": null,
1354
+ "documentsShowLanguage": false,
1355
+ "actionImportExport": false,
1356
+ "actionCopy": false,
1357
+ "refreshSeconds": null,
1358
+ "extra": null
1359
+ },
1360
+ "url": {
1361
+ "template": "/cardtype/template",
1362
+ "patch": "/cardtype/patch",
1363
+ "get": "/cardtype/get",
1364
+ "update": "/cardtype/update",
1365
+ "insert": "/cardtype/insert",
1366
+ "list": "/cardtype/list",
1367
+ "export": "/cardtype/export",
1368
+ "delete": "/cardtype/delete"
1369
+ },
1370
+ "functionalities": {
1371
+ "insert": "WRITE_CARDTYPE",
1372
+ "update": "WRITE_CARDTYPE",
1373
+ "list": "READ_CARDTYPE",
1374
+ "delete": "WRITE_CARDTYPE",
1375
+ "get": "READ_CARDTYPE"
1376
+ },
1377
+ "columns": [
1378
+ {
1379
+ "name": "id",
1380
+ "title": "vcardtype.id",
1381
+ "type": "numeric",
1382
+ "isPk": true,
1383
+ "visibility": "visible"
1384
+ },
1385
+ {
1386
+ "name": "name",
1387
+ "title": "vcardtype.name",
1388
+ "type": "text",
1389
+ "isPk": false,
1390
+ "visibility": "visible"
1391
+ }
1392
+ ],
1393
+ "userFilters": [],
1394
+ "modelFilters": [],
1395
+ "configurations": {}
1396
+ },
1397
+ "state": {
1398
+ "name": "state",
1399
+ "entity": "v_state",
1400
+ "defaultConfiguration": {
1401
+ "isdefault": false,
1402
+ "name": null,
1403
+ "description": null,
1404
+ "order": [
1405
+ {
1406
+ "column": "name",
1407
+ "direction": "asc"
1408
+ }
1409
+ ],
1410
+ "filterCombo": null,
1411
+ "columns": null,
1412
+ "pinColumn": false,
1413
+ "grouped": false,
1414
+ "documentsShowRole": false,
1415
+ "documentsRoles": null,
1416
+ "documentsShowLanguage": false,
1417
+ "actionImportExport": false,
1418
+ "actionCopy": false,
1419
+ "refreshSeconds": null,
1420
+ "extra": null
1421
+ },
1422
+ "url": {
1423
+ "template": "/state/template",
1424
+ "patch": "/state/patch",
1425
+ "get": "/state/get",
1426
+ "update": "/state/update",
1427
+ "insert": "/state/insert",
1428
+ "list": "/state/list",
1429
+ "export": "/state/export",
1430
+ "delete": "/state/delete"
1431
+ },
1432
+ "functionalities": {
1433
+ "insert": "WRITE_STATE",
1434
+ "update": "WRITE_STATE",
1435
+ "list": "READ_STATE",
1436
+ "delete": "WRITE_STATE",
1437
+ "get": "READ_STATE"
1438
+ },
1439
+ "columns": [
1440
+ {
1441
+ "name": "id",
1442
+ "title": "vstate.id",
1443
+ "type": "numeric",
1444
+ "isPk": true,
1445
+ "visibility": "visible"
1446
+ },
1447
+ {
1448
+ "name": "code",
1449
+ "title": "vstate.code",
1450
+ "type": "text",
1451
+ "isPk": false,
1452
+ "visibility": "visible"
1453
+ },
1454
+ {
1455
+ "name": "name",
1456
+ "title": "vstate.name",
1457
+ "type": "text",
1458
+ "isPk": false,
1459
+ "visibility": "visible"
1460
+ },
1461
+ {
1462
+ "name": "country",
1463
+ "title": "vstate.country",
1464
+ "type": "numeric",
1465
+ "isPk": false,
1466
+ "visibility": "visible"
1467
+ },
1468
+ {
1469
+ "name": "countryisocode",
1470
+ "title": "vstate.countryisocode",
1471
+ "type": "text",
1472
+ "isPk": false,
1473
+ "visibility": "visible"
1474
+ },
1475
+ {
1476
+ "name": "countryname",
1477
+ "title": "vstate.countryname",
1478
+ "type": "text",
1479
+ "isPk": false,
1480
+ "visibility": "visible"
1481
+ }
1482
+ ],
1483
+ "userFilters": [],
1484
+ "modelFilters": [],
1485
+ "configurations": {}
1486
+ },
1487
+ "copy": {
1488
+ "name": "copy",
1489
+ "entity": null,
1490
+ "defaultConfiguration": {
1491
+ "isdefault": false,
1492
+ "name": null,
1493
+ "description": null,
1494
+ "order": null,
1495
+ "filterCombo": null,
1496
+ "columns": null,
1497
+ "pinColumn": false,
1498
+ "grouped": false,
1499
+ "documentsShowRole": false,
1500
+ "documentsRoles": null,
1501
+ "documentsShowLanguage": false,
1502
+ "actionImportExport": false,
1503
+ "actionCopy": false,
1504
+ "refreshSeconds": null,
1505
+ "extra": null
1506
+ },
1507
+ "url": {
1508
+ "perform": "/copy/perform",
1509
+ "reload": "/copy/reload"
1510
+ },
1511
+ "functionalities": {
1512
+ "EXECUTE_COPY": "EXECUTE_COPY"
1513
+ },
1514
+ "columns": [],
1515
+ "userFilters": [],
1516
+ "modelFilters": [],
1517
+ "configurations": {}
1518
+ },
1519
+ "dtos": {
1520
+ "name": "dtos",
1521
+ "entity": null,
1522
+ "defaultConfiguration": {
1523
+ "isdefault": false,
1524
+ "name": null,
1525
+ "description": null,
1526
+ "order": null,
1527
+ "filterCombo": null,
1528
+ "columns": null,
1529
+ "pinColumn": false,
1530
+ "grouped": false,
1531
+ "documentsShowRole": false,
1532
+ "documentsRoles": null,
1533
+ "documentsShowLanguage": false,
1534
+ "actionImportExport": false,
1535
+ "actionCopy": false,
1536
+ "refreshSeconds": null,
1537
+ "extra": null
1538
+ },
1539
+ "url": {
1540
+ "list": "/dtos/list",
1541
+ "{id}": "/dtos/{id}"
1542
+ },
1543
+ "functionalities": {},
1544
+ "columns": [],
1545
+ "userFilters": [],
1546
+ "modelFilters": [],
1547
+ "configurations": {}
1548
+ },
1549
+ "puilanguage": {
1550
+ "name": "puilanguage",
1551
+ "entity": "v_pui_language",
1552
+ "defaultConfiguration": {
1553
+ "isdefault": false,
1554
+ "name": null,
1555
+ "description": null,
1556
+ "order": [
1557
+ {
1558
+ "column": "name",
1559
+ "direction": "asc"
1560
+ }
1561
+ ],
1562
+ "filterCombo": null,
1563
+ "columns": null,
1564
+ "pinColumn": false,
1565
+ "grouped": false,
1566
+ "documentsShowRole": false,
1567
+ "documentsRoles": null,
1568
+ "documentsShowLanguage": false,
1569
+ "actionImportExport": false,
1570
+ "actionCopy": false,
1571
+ "refreshSeconds": null,
1572
+ "extra": null
1573
+ },
1574
+ "url": {
1575
+ "template": "/puilanguage/template",
1576
+ "patch": "/puilanguage/patch",
1577
+ "getAll": "/puilanguage/getAll",
1578
+ "get": "/puilanguage/get",
1579
+ "update": "/puilanguage/update",
1580
+ "insert": "/puilanguage/insert",
1581
+ "list": "/puilanguage/list",
1582
+ "export": "/puilanguage/export",
1583
+ "delete": "/puilanguage/delete"
1584
+ },
1585
+ "functionalities": {
1586
+ "insert": "WRITE_PUI_LANGUAGE",
1587
+ "update": "WRITE_PUI_LANGUAGE",
1588
+ "list": "READ_PUI_LANGUAGE",
1589
+ "delete": "WRITE_PUI_LANGUAGE",
1590
+ "get": "READ_PUI_LANGUAGE"
1591
+ },
1592
+ "columns": [
1593
+ {
1594
+ "name": "isocode",
1595
+ "title": "vpuilanguage.isocode",
1596
+ "type": "text",
1597
+ "isPk": true,
1598
+ "visibility": "visible"
1599
+ },
1600
+ {
1601
+ "name": "name",
1602
+ "title": "vpuilanguage.name",
1603
+ "type": "text",
1604
+ "isPk": false,
1605
+ "visibility": "visible"
1606
+ },
1607
+ {
1608
+ "name": "isdefault",
1609
+ "title": "vpuilanguage.isdefault",
1610
+ "type": "numeric",
1611
+ "isPk": false,
1612
+ "visibility": "visible"
1613
+ }
1614
+ ],
1615
+ "userFilters": [],
1616
+ "modelFilters": [],
1617
+ "configurations": {}
1618
+ },
1619
+ "puidocgenattribute": {
1620
+ "name": "puidocgenattribute",
1621
+ "entity": "pui_docgen_attribute",
1622
+ "defaultConfiguration": {
1623
+ "isdefault": false,
1624
+ "name": null,
1625
+ "description": null,
1626
+ "order": [
1627
+ {
1628
+ "column": "label",
1629
+ "direction": "asc"
1630
+ }
1631
+ ],
1632
+ "filterCombo": null,
1633
+ "columns": null,
1634
+ "pinColumn": false,
1635
+ "grouped": false,
1636
+ "documentsShowRole": false,
1637
+ "documentsRoles": null,
1638
+ "documentsShowLanguage": false,
1639
+ "actionImportExport": false,
1640
+ "actionCopy": false,
1641
+ "refreshSeconds": null,
1642
+ "extra": null
1643
+ },
1644
+ "url": {},
1645
+ "functionalities": {},
1646
+ "columns": [
1647
+ {
1648
+ "name": "label",
1649
+ "title": "puidocgenattribute.label",
1650
+ "type": "text",
1651
+ "isPk": false,
1652
+ "visibility": null
1653
+ },
1654
+ {
1655
+ "name": "value",
1656
+ "title": "puidocgenattribute.value",
1657
+ "type": "text",
1658
+ "isPk": false,
1659
+ "visibility": null
1660
+ },
1661
+ {
1662
+ "name": "id",
1663
+ "title": "puidocgenattribute.id",
1664
+ "type": "text",
1665
+ "isPk": false,
1666
+ "visibility": null
1667
+ }
1668
+ ],
1669
+ "userFilters": [],
1670
+ "modelFilters": [],
1671
+ "configurations": {}
1672
+ },
1673
+ "puiaudit": {
1674
+ "name": "puiaudit",
1675
+ "entity": "v_pui_audit",
1676
+ "defaultConfiguration": {
1677
+ "isdefault": false,
1678
+ "name": null,
1679
+ "description": null,
1680
+ "order": [
1681
+ {
1682
+ "column": "datetime",
1683
+ "direction": "desc"
1684
+ }
1685
+ ],
1686
+ "filterCombo": null,
1687
+ "columns": [
1688
+ {
1689
+ "name": "id",
1690
+ "visibility": "hidden"
1691
+ },
1692
+ {
1693
+ "name": "datetime",
1694
+ "visibility": "visible"
1695
+ },
1696
+ {
1697
+ "name": "usr",
1698
+ "visibility": "visible"
1699
+ },
1700
+ {
1701
+ "name": "client",
1702
+ "visibility": "hidden"
1703
+ },
1704
+ {
1705
+ "name": "ip",
1706
+ "visibility": "hidden"
1707
+ },
1708
+ {
1709
+ "name": "type",
1710
+ "visibility": "visible"
1711
+ },
1712
+ {
1713
+ "name": "model",
1714
+ "visibility": "hidden"
1715
+ },
1716
+ {
1717
+ "name": "pk",
1718
+ "visibility": "hidden"
1719
+ },
1720
+ {
1721
+ "name": "content",
1722
+ "visibility": "hidden"
1723
+ }
1724
+ ],
1725
+ "pinColumn": false,
1726
+ "grouped": false,
1727
+ "documentsShowRole": false,
1728
+ "documentsRoles": null,
1729
+ "documentsShowLanguage": false,
1730
+ "actionImportExport": false,
1731
+ "actionCopy": false,
1732
+ "refreshSeconds": null,
1733
+ "extra": null
1734
+ },
1735
+ "url": {
1736
+ "list": "/puiaudit/list"
1737
+ },
1738
+ "functionalities": {
1739
+ "list": "READ_PUI_AUDIT"
1740
+ },
1741
+ "columns": [
1742
+ {
1743
+ "name": "id",
1744
+ "title": "vpuiaudit.id",
1745
+ "type": "numeric",
1746
+ "isPk": true,
1747
+ "visibility": "visible"
1748
+ },
1749
+ {
1750
+ "name": "datetime",
1751
+ "title": "vpuiaudit.datetime",
1752
+ "type": "datetime",
1753
+ "isPk": false,
1754
+ "visibility": "visible"
1755
+ },
1756
+ {
1757
+ "name": "usr",
1758
+ "title": "vpuiaudit.usr",
1759
+ "type": "text",
1760
+ "isPk": false,
1761
+ "visibility": "visible"
1762
+ },
1763
+ {
1764
+ "name": "client",
1765
+ "title": "vpuiaudit.client",
1766
+ "type": "text",
1767
+ "isPk": false,
1768
+ "visibility": "visible"
1769
+ },
1770
+ {
1771
+ "name": "ip",
1772
+ "title": "vpuiaudit.ip",
1773
+ "type": "text",
1774
+ "isPk": false,
1775
+ "visibility": "visible"
1776
+ },
1777
+ {
1778
+ "name": "type",
1779
+ "title": "vpuiaudit.type",
1780
+ "type": "text",
1781
+ "isPk": false,
1782
+ "visibility": "visible"
1783
+ },
1784
+ {
1785
+ "name": "model",
1786
+ "title": "vpuiaudit.model",
1787
+ "type": "text",
1788
+ "isPk": false,
1789
+ "visibility": "visible"
1790
+ },
1791
+ {
1792
+ "name": "pk",
1793
+ "title": "vpuiaudit.pk",
1794
+ "type": "text",
1795
+ "isPk": false,
1796
+ "visibility": "visible"
1797
+ },
1798
+ {
1799
+ "name": "content",
1800
+ "title": "vpuiaudit.content",
1801
+ "type": "text",
1802
+ "isPk": false,
1803
+ "visibility": "visible"
1804
+ }
1805
+ ],
1806
+ "userFilters": [],
1807
+ "modelFilters": [],
1808
+ "configurations": {}
1809
+ },
1810
+ "vlupcountry": {
1811
+ "name": "vlupcountry",
1812
+ "entity": "v_lup_country",
1813
+ "defaultConfiguration": {
1814
+ "isdefault": false,
1815
+ "name": null,
1816
+ "description": null,
1817
+ "order": [
1818
+ {
1819
+ "column": "name",
1820
+ "direction": "asc"
1821
+ }
1822
+ ],
1823
+ "filterCombo": null,
1824
+ "columns": null,
1825
+ "pinColumn": false,
1826
+ "grouped": false,
1827
+ "documentsShowRole": false,
1828
+ "documentsRoles": null,
1829
+ "documentsShowLanguage": false,
1830
+ "actionImportExport": false,
1831
+ "actionCopy": false,
1832
+ "refreshSeconds": null,
1833
+ "extra": null
1834
+ },
1835
+ "url": {},
1836
+ "functionalities": {},
1837
+ "columns": [
1838
+ {
1839
+ "name": "id",
1840
+ "title": "vlupcountry.id",
1841
+ "type": "numeric",
1842
+ "isPk": false,
1843
+ "visibility": "visible"
1844
+ },
1845
+ {
1846
+ "name": "isocode",
1847
+ "title": "vlupcountry.isocode",
1848
+ "type": "text",
1849
+ "isPk": false,
1850
+ "visibility": "visible"
1851
+ },
1852
+ {
1853
+ "name": "name",
1854
+ "title": "vlupcountry.name",
1855
+ "type": "text",
1856
+ "isPk": false,
1857
+ "visibility": "visible"
1858
+ }
1859
+ ],
1860
+ "userFilters": [],
1861
+ "modelFilters": [],
1862
+ "configurations": {}
1863
+ },
1864
+ "product": {
1865
+ "name": "product",
1866
+ "entity": "v_product",
1867
+ "defaultConfiguration": {
1868
+ "isdefault": false,
1869
+ "name": null,
1870
+ "description": null,
1871
+ "order": [
1872
+ {
1873
+ "column": "name",
1874
+ "direction": "asc"
1875
+ }
1876
+ ],
1877
+ "filterCombo": [
1878
+ {
1879
+ "id": "supplier",
1880
+ "search": {
1881
+ "model": "vlupsupplier",
1882
+ "value": "id",
1883
+ "text": "name",
1884
+ "order": null,
1885
+ "related": null
1886
+ },
1887
+ "local": {
1888
+ "value": "supplier"
1889
+ },
1890
+ "relatedCombo": null
1891
+ }
1892
+ ],
1893
+ "columns": null,
1894
+ "pinColumn": false,
1895
+ "grouped": false,
1896
+ "documentsShowRole": false,
1897
+ "documentsRoles": null,
1898
+ "documentsShowLanguage": false,
1899
+ "actionImportExport": true,
1900
+ "actionCopy": true,
1901
+ "refreshSeconds": null,
1902
+ "extra": null
1903
+ },
1904
+ "url": {
1905
+ "downloadTemplate": "/product/downloadTemplate",
1906
+ "downloadFile": "/product/downloadFile",
1907
+ "template": "/product/template",
1908
+ "patch": "/product/patch",
1909
+ "uploadFile": "/product/uploadFile",
1910
+ "get": "/product/get",
1911
+ "update": "/product/update",
1912
+ "insert": "/product/insert",
1913
+ "list": "/product/list",
1914
+ "export": "/product/export",
1915
+ "delete": "/product/delete"
1916
+ },
1917
+ "functionalities": {
1918
+ "uploadfile": "PRODUCT_UPLOAD_FILE",
1919
+ "downloadfile": "PRODUCT_DOWNLOAD_FILE",
1920
+ "get": "READ_PRODUCT",
1921
+ "insert": "WRITE_PRODUCT",
1922
+ "update": "WRITE_PRODUCT",
1923
+ "downloadtemplate": "PRODUCT_DOWNLOAD_TEMPLATE",
1924
+ "list": "READ_PRODUCT",
1925
+ "delete": "WRITE_PRODUCT"
1926
+ },
1927
+ "columns": [
1928
+ {
1929
+ "name": "id",
1930
+ "title": "vproduct.id",
1931
+ "type": "numeric",
1932
+ "isPk": true,
1933
+ "visibility": "visible"
1934
+ },
1935
+ {
1936
+ "name": "lang",
1937
+ "title": "vproduct.lang",
1938
+ "type": "text",
1939
+ "isPk": false,
1940
+ "visibility": "completelyhidden"
1941
+ },
1942
+ {
1943
+ "name": "name",
1944
+ "title": "vproduct.name",
1945
+ "type": "text",
1946
+ "isPk": false,
1947
+ "visibility": "visible"
1948
+ },
1949
+ {
1950
+ "name": "description",
1951
+ "title": "vproduct.description",
1952
+ "type": "text",
1953
+ "isPk": false,
1954
+ "visibility": "visible"
1955
+ },
1956
+ {
1957
+ "name": "supplier",
1958
+ "title": "vproduct.supplier",
1959
+ "type": "numeric",
1960
+ "isPk": false,
1961
+ "visibility": "visible"
1962
+ },
1963
+ {
1964
+ "name": "suppliername",
1965
+ "title": "vproduct.suppliername",
1966
+ "type": "text",
1967
+ "isPk": false,
1968
+ "visibility": "visible"
1969
+ },
1970
+ {
1971
+ "name": "unitcost",
1972
+ "title": "vproduct.unitcost",
1973
+ "type": "decimal",
1974
+ "isPk": false,
1975
+ "visibility": "visible"
1976
+ },
1977
+ {
1978
+ "name": "price",
1979
+ "title": "vproduct.price",
1980
+ "type": "decimal",
1981
+ "isPk": false,
1982
+ "visibility": "visible"
1983
+ },
1984
+ {
1985
+ "name": "stock",
1986
+ "title": "vproduct.stock",
1987
+ "type": "numeric",
1988
+ "isPk": false,
1989
+ "visibility": "visible"
1990
+ },
1991
+ {
1992
+ "name": "categories",
1993
+ "title": "vproduct.categories",
1994
+ "type": "text",
1995
+ "isPk": false,
1996
+ "visibility": "visible"
1997
+ }
1998
+ ],
1999
+ "userFilters": [],
2000
+ "modelFilters": [
2001
+ {
2002
+ "model": "product",
2003
+ "label": "supplier \u003d DIMAC",
2004
+ "description": "supplier \u003d DIMAC",
2005
+ "filter": "{\"groupOp\":\"and\",\"groups\":null,\"rules\":[{\"field\":\"supplier\",\"op\":\"eq\",\"data\":\"1\"}]}",
2006
+ "isdefault": 1,
2007
+ "id": 1
2008
+ }
2009
+ ],
2010
+ "configurations": {}
2011
+ },
2012
+ "lineitem": {
2013
+ "name": "lineitem",
2014
+ "entity": "v_lineitem",
2015
+ "defaultConfiguration": {
2016
+ "isdefault": false,
2017
+ "name": null,
2018
+ "description": null,
2019
+ "order": [
2020
+ {
2021
+ "column": "name",
2022
+ "direction": "asc"
2023
+ }
2024
+ ],
2025
+ "filterCombo": null,
2026
+ "columns": null,
2027
+ "pinColumn": false,
2028
+ "grouped": false,
2029
+ "documentsShowRole": false,
2030
+ "documentsRoles": null,
2031
+ "documentsShowLanguage": false,
2032
+ "actionImportExport": false,
2033
+ "actionCopy": false,
2034
+ "refreshSeconds": null,
2035
+ "extra": null
2036
+ },
2037
+ "url": {
2038
+ "template": "/lineitem/template",
2039
+ "patch": "/lineitem/patch",
2040
+ "get": "/lineitem/get",
2041
+ "update": "/lineitem/update",
2042
+ "insert": "/lineitem/insert",
2043
+ "list": "/lineitem/list",
2044
+ "export": "/lineitem/export",
2045
+ "delete": "/lineitem/delete"
2046
+ },
2047
+ "functionalities": {
2048
+ "insert": "WRITE_LINEITEM",
2049
+ "update": "WRITE_LINEITEM",
2050
+ "list": "READ_LINEITEM",
2051
+ "delete": "WRITE_LINEITEM",
2052
+ "get": "READ_LINEITEM"
2053
+ },
2054
+ "columns": [
2055
+ {
2056
+ "name": "id",
2057
+ "title": "vlineitem.id",
2058
+ "type": "numeric",
2059
+ "isPk": true,
2060
+ "visibility": "visible"
2061
+ },
2062
+ {
2063
+ "name": "orders",
2064
+ "title": "vlineitem.orders",
2065
+ "type": "numeric",
2066
+ "isPk": true,
2067
+ "visibility": "visible"
2068
+ },
2069
+ {
2070
+ "name": "product",
2071
+ "title": "vlineitem.product",
2072
+ "type": "numeric",
2073
+ "isPk": false,
2074
+ "visibility": "visible"
2075
+ },
2076
+ {
2077
+ "name": "name",
2078
+ "title": "vlineitem.name",
2079
+ "type": "text",
2080
+ "isPk": false,
2081
+ "visibility": "visible"
2082
+ },
2083
+ {
2084
+ "name": "quantity",
2085
+ "title": "vlineitem.quantity",
2086
+ "type": "numeric",
2087
+ "isPk": false,
2088
+ "visibility": "visible"
2089
+ },
2090
+ {
2091
+ "name": "unitprice",
2092
+ "title": "vlineitem.unitprice",
2093
+ "type": "decimal",
2094
+ "isPk": false,
2095
+ "visibility": "visible"
2096
+ },
2097
+ {
2098
+ "name": "lang",
2099
+ "title": "vlineitem.lang",
2100
+ "type": "text",
2101
+ "isPk": false,
2102
+ "visibility": "completelyhidden"
2103
+ },
2104
+ {
2105
+ "name": "total",
2106
+ "title": "vlineitem.total",
2107
+ "type": "decimal",
2108
+ "isPk": false,
2109
+ "visibility": "visible"
2110
+ }
2111
+ ],
2112
+ "userFilters": [],
2113
+ "modelFilters": [],
2114
+ "configurations": {}
2115
+ },
2116
+ "vlupsupplier": {
2117
+ "name": "vlupsupplier",
2118
+ "entity": "v_lup_supplier",
2119
+ "defaultConfiguration": {
2120
+ "isdefault": false,
2121
+ "name": null,
2122
+ "description": null,
2123
+ "order": [
2124
+ {
2125
+ "column": "name",
2126
+ "direction": "asc"
2127
+ }
2128
+ ],
2129
+ "filterCombo": null,
2130
+ "columns": null,
2131
+ "pinColumn": false,
2132
+ "grouped": false,
2133
+ "documentsShowRole": false,
2134
+ "documentsRoles": null,
2135
+ "documentsShowLanguage": false,
2136
+ "actionImportExport": false,
2137
+ "actionCopy": false,
2138
+ "refreshSeconds": null,
2139
+ "extra": null
2140
+ },
2141
+ "url": {},
2142
+ "functionalities": {},
2143
+ "columns": [
2144
+ {
2145
+ "name": "id",
2146
+ "title": "vlupsupplier.id",
2147
+ "type": "numeric",
2148
+ "isPk": false,
2149
+ "visibility": "visible"
2150
+ },
2151
+ {
2152
+ "name": "name",
2153
+ "title": "vlupsupplier.name",
2154
+ "type": "text",
2155
+ "isPk": false,
2156
+ "visibility": "visible"
2157
+ }
2158
+ ],
2159
+ "userFilters": [],
2160
+ "modelFilters": [],
2161
+ "configurations": {}
2162
+ },
2163
+ "puisubsystem": {
2164
+ "name": "puisubsystem",
2165
+ "entity": "v_pui_subsystem",
2166
+ "defaultConfiguration": {
2167
+ "isdefault": false,
2168
+ "name": null,
2169
+ "description": null,
2170
+ "order": null,
2171
+ "filterCombo": null,
2172
+ "columns": null,
2173
+ "pinColumn": false,
2174
+ "grouped": false,
2175
+ "documentsShowRole": false,
2176
+ "documentsRoles": null,
2177
+ "documentsShowLanguage": false,
2178
+ "actionImportExport": false,
2179
+ "actionCopy": false,
2180
+ "refreshSeconds": null,
2181
+ "extra": null
2182
+ },
2183
+ "url": {},
2184
+ "functionalities": {},
2185
+ "columns": [
2186
+ {
2187
+ "name": "subsystem",
2188
+ "title": "vpuisubsystem.subsystem",
2189
+ "type": "text",
2190
+ "isPk": false,
2191
+ "visibility": "visible"
2192
+ },
2193
+ {
2194
+ "name": "name",
2195
+ "title": "vpuisubsystem.name",
2196
+ "type": "text",
2197
+ "isPk": false,
2198
+ "visibility": "visible"
2199
+ },
2200
+ {
2201
+ "name": "lang",
2202
+ "title": "vpuisubsystem.lang",
2203
+ "type": "text",
2204
+ "isPk": false,
2205
+ "visibility": "completelyhidden"
2206
+ }
2207
+ ],
2208
+ "userFilters": [],
2209
+ "modelFilters": [],
2210
+ "configurations": {}
2211
+ },
2212
+ "puidocgentemplate": {
2213
+ "name": "puidocgentemplate",
2214
+ "entity": "v_pui_docgen_template",
2215
+ "defaultConfiguration": {
2216
+ "isdefault": false,
2217
+ "name": null,
2218
+ "description": null,
2219
+ "order": [
2220
+ {
2221
+ "column": "name",
2222
+ "direction": "asc"
2223
+ }
2224
+ ],
2225
+ "filterCombo": null,
2226
+ "columns": null,
2227
+ "pinColumn": false,
2228
+ "grouped": false,
2229
+ "documentsShowRole": false,
2230
+ "documentsRoles": null,
2231
+ "documentsShowLanguage": false,
2232
+ "actionImportExport": false,
2233
+ "actionCopy": false,
2234
+ "refreshSeconds": null,
2235
+ "extra": null
2236
+ },
2237
+ "url": {
2238
+ "downloadTemplate": "/puidocgentemplate/downloadTemplate",
2239
+ "template": "/puidocgentemplate/template",
2240
+ "getTemplateMapping": "/puidocgentemplate/getTemplateMapping",
2241
+ "update": "/puidocgentemplate/update",
2242
+ "list": "/puidocgentemplate/list",
2243
+ "delete": "/puidocgentemplate/delete",
2244
+ "getToGenerate": "/puidocgentemplate/getToGenerate",
2245
+ "patch": "/puidocgentemplate/patch",
2246
+ "downloadSampleTemplate": "/puidocgentemplate/downloadSampleTemplate",
2247
+ "getMatchingTemplates": "/puidocgentemplate/getMatchingTemplates",
2248
+ "uploadTemplate": "/puidocgentemplate/uploadTemplate",
2249
+ "get": "/puidocgentemplate/get",
2250
+ "getModelsWithDocgen": "/puidocgentemplate/getModelsWithDocgen",
2251
+ "generate": "/puidocgentemplate/generate",
2252
+ "getSystemFields": "/puidocgentemplate/getSystemFields"
2253
+ },
2254
+ "functionalities": {
2255
+ "downloadTemplate": "WRITE_PUI_DOCGEN",
2256
+ "getTemplateMapping": "WRITE_PUI_DOCGEN",
2257
+ "insert": "WRITE_PUI_DOCGEN",
2258
+ "update": "WRITE_PUI_DOCGEN",
2259
+ "list": "GEN_PUI_DOCGEN",
2260
+ "delete": "WRITE_PUI_DOCGEN",
2261
+ "getToGenerate": "GEN_PUI_DOCGEN",
2262
+ "downloadSampleTemplate": "WRITE_PUI_DOCGEN",
2263
+ "getMatchingTemplates": "GEN_PUI_DOCGEN",
2264
+ "uploadTemplate": "WRITE_PUI_DOCGEN",
2265
+ "get": "WRITE_PUI_DOCGEN",
2266
+ "getModelsWithDocgen": "GEN_PUI_DOCGEN",
2267
+ "generate": "GEN_PUI_DOCGEN",
2268
+ "getSystemFields": "WRITE_PUI_DOCGEN"
2269
+ },
2270
+ "columns": [
2271
+ {
2272
+ "name": "id",
2273
+ "title": "vpuidocgentemplate.id",
2274
+ "type": "numeric",
2275
+ "isPk": true,
2276
+ "visibility": "visible"
2277
+ },
2278
+ {
2279
+ "name": "name",
2280
+ "title": "vpuidocgentemplate.name",
2281
+ "type": "text",
2282
+ "isPk": false,
2283
+ "visibility": "visible"
2284
+ },
2285
+ {
2286
+ "name": "description",
2287
+ "title": "vpuidocgentemplate.description",
2288
+ "type": "text",
2289
+ "isPk": false,
2290
+ "visibility": "visible"
2291
+ },
2292
+ {
2293
+ "name": "mainmodel",
2294
+ "title": "vpuidocgentemplate.mainmodel",
2295
+ "type": "text",
2296
+ "isPk": false,
2297
+ "visibility": "visible"
2298
+ },
2299
+ {
2300
+ "name": "models",
2301
+ "title": "vpuidocgentemplate.models",
2302
+ "type": "text",
2303
+ "isPk": false,
2304
+ "visibility": "visible"
2305
+ },
2306
+ {
2307
+ "name": "columnfilename",
2308
+ "title": "vpuidocgentemplate.columnfilename",
2309
+ "type": "text",
2310
+ "isPk": false,
2311
+ "visibility": "visible"
2312
+ },
2313
+ {
2314
+ "name": "label",
2315
+ "title": "vpuidocgentemplate.label",
2316
+ "type": "text",
2317
+ "isPk": false,
2318
+ "visibility": "visible"
2319
+ },
2320
+ {
2321
+ "name": "filename",
2322
+ "title": "vpuidocgentemplate.filename",
2323
+ "type": "text",
2324
+ "isPk": false,
2325
+ "visibility": "visible"
2326
+ }
2327
+ ],
2328
+ "userFilters": [],
2329
+ "modelFilters": [],
2330
+ "configurations": {}
2331
+ },
2332
+ "vlupcardtype": {
2333
+ "name": "vlupcardtype",
2334
+ "entity": "v_lup_cardtype",
2335
+ "defaultConfiguration": {
2336
+ "isdefault": false,
2337
+ "name": null,
2338
+ "description": null,
2339
+ "order": [
2340
+ {
2341
+ "column": "name",
2342
+ "direction": "asc"
2343
+ }
2344
+ ],
2345
+ "filterCombo": null,
2346
+ "columns": null,
2347
+ "pinColumn": false,
2348
+ "grouped": false,
2349
+ "documentsShowRole": false,
2350
+ "documentsRoles": null,
2351
+ "documentsShowLanguage": false,
2352
+ "actionImportExport": false,
2353
+ "actionCopy": false,
2354
+ "refreshSeconds": null,
2355
+ "extra": null
2356
+ },
2357
+ "url": {},
2358
+ "functionalities": {},
2359
+ "columns": [
2360
+ {
2361
+ "name": "id",
2362
+ "title": "vlupcardtype.id",
2363
+ "type": "numeric",
2364
+ "isPk": false,
2365
+ "visibility": "visible"
2366
+ },
2367
+ {
2368
+ "name": "name",
2369
+ "title": "vlupcardtype.name",
2370
+ "type": "text",
2371
+ "isPk": false,
2372
+ "visibility": "visible"
2373
+ }
2374
+ ],
2375
+ "userFilters": [],
2376
+ "modelFilters": [],
2377
+ "configurations": {}
2378
+ },
2379
+ "puivariable": {
2380
+ "name": "puivariable",
2381
+ "entity": "v_pui_variable",
2382
+ "defaultConfiguration": {
2383
+ "isdefault": false,
2384
+ "name": null,
2385
+ "description": null,
2386
+ "order": [
2387
+ {
2388
+ "column": "variable",
2389
+ "direction": "asc"
2390
+ }
2391
+ ],
2392
+ "filterCombo": null,
2393
+ "columns": null,
2394
+ "pinColumn": false,
2395
+ "grouped": false,
2396
+ "documentsShowRole": false,
2397
+ "documentsRoles": null,
2398
+ "documentsShowLanguage": false,
2399
+ "actionImportExport": false,
2400
+ "actionCopy": false,
2401
+ "refreshSeconds": null,
2402
+ "extra": null
2403
+ },
2404
+ "url": {
2405
+ "isDevelopmentEnvironment": "/puivariable/isDevelopmentEnvironment",
2406
+ "patch": "/puivariable/patch",
2407
+ "reload": "/puivariable/reload",
2408
+ "getApplicationLegalText": "/puivariable/getApplicationLegalText",
2409
+ "get": "/puivariable/get",
2410
+ "{variable}": "/puivariable/getVariable/{variable}",
2411
+ "update": "/puivariable/update",
2412
+ "getAllVariables": "/puivariable/getAllVariables",
2413
+ "list": "/puivariable/list",
2414
+ "export": "/puivariable/export",
2415
+ "isLdapActive": "/puivariable/isLdapActive"
2416
+ },
2417
+ "functionalities": {
2418
+ "update": "WRITE_PUI_VARIABLE",
2419
+ "list": "READ_PUI_VARIABLE",
2420
+ "get": "READ_PUI_VARIABLE"
2421
+ },
2422
+ "columns": [
2423
+ {
2424
+ "name": "variable",
2425
+ "title": "vpuivariable.variable",
2426
+ "type": "text",
2427
+ "isPk": true,
2428
+ "visibility": "visible"
2429
+ },
2430
+ {
2431
+ "name": "value",
2432
+ "title": "vpuivariable.value",
2433
+ "type": "text",
2434
+ "isPk": false,
2435
+ "visibility": "visible"
2436
+ },
2437
+ {
2438
+ "name": "description",
2439
+ "title": "vpuivariable.description",
2440
+ "type": "text",
2441
+ "isPk": false,
2442
+ "visibility": "visible"
2443
+ }
2444
+ ],
2445
+ "userFilters": [],
2446
+ "modelFilters": [],
2447
+ "configurations": {}
2448
+ },
2449
+ "producttag": {
2450
+ "name": "producttag",
2451
+ "entity": "v_product_tag",
2452
+ "defaultConfiguration": {
2453
+ "isdefault": false,
2454
+ "name": null,
2455
+ "description": null,
2456
+ "order": null,
2457
+ "filterCombo": null,
2458
+ "columns": null,
2459
+ "pinColumn": false,
2460
+ "grouped": false,
2461
+ "documentsShowRole": false,
2462
+ "documentsRoles": null,
2463
+ "documentsShowLanguage": false,
2464
+ "actionImportExport": false,
2465
+ "actionCopy": false,
2466
+ "refreshSeconds": null,
2467
+ "extra": null
2468
+ },
2469
+ "url": {
2470
+ "template": "/producttag/template",
2471
+ "patch": "/producttag/patch",
2472
+ "update": "/producttag/update",
2473
+ "insert": "/producttag/insert",
2474
+ "list": "/producttag/list",
2475
+ "delete": "/producttag/delete"
2476
+ },
2477
+ "functionalities": {
2478
+ "insert": "WRITE_PRODUCT_TAG",
2479
+ "update": "WRITE_PRODUCT_TAG",
2480
+ "list": "READ_PRODUCT_TAG",
2481
+ "delete": "WRITE_PRODUCT_TAG"
2482
+ },
2483
+ "columns": [
2484
+ {
2485
+ "name": "id",
2486
+ "title": "vproducttag.id",
2487
+ "type": "numeric",
2488
+ "isPk": true,
2489
+ "visibility": "hidden"
2490
+ },
2491
+ {
2492
+ "name": "productid",
2493
+ "title": "vproducttag.productid",
2494
+ "type": "numeric",
2495
+ "isPk": false,
2496
+ "visibility": "hidden"
2497
+ },
2498
+ {
2499
+ "name": "name",
2500
+ "title": "vproducttag.name",
2501
+ "type": "text",
2502
+ "isPk": false,
2503
+ "visibility": "visible"
2504
+ },
2505
+ {
2506
+ "name": "tagorder",
2507
+ "title": "vproducttag.tagorder",
2508
+ "type": "numeric",
2509
+ "isPk": false,
2510
+ "visibility": "visible"
2511
+ }
2512
+ ],
2513
+ "userFilters": [],
2514
+ "modelFilters": [],
2515
+ "configurations": {}
2516
+ },
2517
+ "puiprofile": {
2518
+ "name": "puiprofile",
2519
+ "entity": "v_pui_profile",
2520
+ "defaultConfiguration": {
2521
+ "isdefault": false,
2522
+ "name": null,
2523
+ "description": null,
2524
+ "order": [
2525
+ {
2526
+ "column": "profile",
2527
+ "direction": "asc"
2528
+ }
2529
+ ],
2530
+ "filterCombo": null,
2531
+ "columns": null,
2532
+ "pinColumn": false,
2533
+ "grouped": false,
2534
+ "documentsShowRole": false,
2535
+ "documentsRoles": null,
2536
+ "documentsShowLanguage": false,
2537
+ "actionImportExport": false,
2538
+ "actionCopy": false,
2539
+ "refreshSeconds": null,
2540
+ "extra": null
2541
+ },
2542
+ "url": {
2543
+ "template": "/puiprofile/template",
2544
+ "patch": "/puiprofile/patch",
2545
+ "get": "/puiprofile/get",
2546
+ "update": "/puiprofile/update",
2547
+ "insert": "/puiprofile/insert",
2548
+ "list": "/puiprofile/list",
2549
+ "export": "/puiprofile/export",
2550
+ "delete": "/puiprofile/delete"
2551
+ },
2552
+ "functionalities": {
2553
+ "insert": "WRITE_PUI_PROFILE",
2554
+ "update": "WRITE_PUI_PROFILE",
2555
+ "list": "READ_PUI_PROFILE",
2556
+ "delete": "WRITE_PUI_PROFILE",
2557
+ "get": "READ_PUI_PROFILE"
2558
+ },
2559
+ "columns": [
2560
+ {
2561
+ "name": "profile",
2562
+ "title": "vpuiprofile.profile",
2563
+ "type": "text",
2564
+ "isPk": true,
2565
+ "visibility": "visible"
2566
+ },
2567
+ {
2568
+ "name": "name",
2569
+ "title": "vpuiprofile.name",
2570
+ "type": "text",
2571
+ "isPk": false,
2572
+ "visibility": "visible"
2573
+ },
2574
+ {
2575
+ "name": "lang",
2576
+ "title": "vpuiprofile.lang",
2577
+ "type": "text",
2578
+ "isPk": false,
2579
+ "visibility": "completelyhidden"
2580
+ }
2581
+ ],
2582
+ "userFilters": [],
2583
+ "modelFilters": [],
2584
+ "configurations": {
2585
+ "datatables": [
2586
+ {
2587
+ "usr": "admin",
2588
+ "model": "puiprofile",
2589
+ "configuration": "{\"order\":[{\"column\":\"name\",\"direction\":\"asc\"}],\"columns\":[{\"order\":0,\"title\":\"vpuiprofile.profile\",\"name\":\"profile\",\"data\":\"profile\",\"visible\":true},{\"order\":1,\"title\":\"vpuiprofile.name\",\"name\":\"name\",\"data\":\"name\",\"visible\":true},{\"order\":2,\"title\":\"vpuiprofile.lang\",\"name\":\"lang\",\"data\":\"lang\",\"visible\":false}],\"name\":\"conf2-sergi-proba\",\"description\":\"sergi\"}",
2590
+ "type": "datatables",
2591
+ "id": 20
2592
+ }
2593
+ ]
2594
+ }
2595
+ },
2596
+ "vlupaccount": {
2597
+ "name": "vlupaccount",
2598
+ "entity": "v_lup_account",
2599
+ "defaultConfiguration": {
2600
+ "isdefault": false,
2601
+ "name": null,
2602
+ "description": null,
2603
+ "order": [
2604
+ {
2605
+ "column": "usr",
2606
+ "direction": "asc"
2607
+ }
2608
+ ],
2609
+ "filterCombo": null,
2610
+ "columns": null,
2611
+ "pinColumn": false,
2612
+ "grouped": false,
2613
+ "documentsShowRole": false,
2614
+ "documentsRoles": null,
2615
+ "documentsShowLanguage": false,
2616
+ "actionImportExport": false,
2617
+ "actionCopy": false,
2618
+ "refreshSeconds": null,
2619
+ "extra": null
2620
+ },
2621
+ "url": {},
2622
+ "functionalities": {},
2623
+ "columns": [
2624
+ {
2625
+ "name": "usr",
2626
+ "title": "vlupaccount.usr",
2627
+ "type": "text",
2628
+ "isPk": false,
2629
+ "visibility": "visible"
2630
+ },
2631
+ {
2632
+ "name": "name",
2633
+ "title": "vlupaccount.name",
2634
+ "type": "text",
2635
+ "isPk": false,
2636
+ "visibility": "visible"
2637
+ },
2638
+ {
2639
+ "name": "lastname",
2640
+ "title": "vlupaccount.lastname",
2641
+ "type": "text",
2642
+ "isPk": false,
2643
+ "visibility": "visible"
2644
+ }
2645
+ ],
2646
+ "userFilters": [],
2647
+ "modelFilters": [],
2648
+ "configurations": {}
2649
+ },
2650
+ "puimenu": {
2651
+ "name": "puimenu",
2652
+ "entity": null,
2653
+ "defaultConfiguration": {
2654
+ "isdefault": false,
2655
+ "name": null,
2656
+ "description": null,
2657
+ "order": null,
2658
+ "filterCombo": null,
2659
+ "columns": null,
2660
+ "pinColumn": false,
2661
+ "grouped": false,
2662
+ "documentsShowRole": false,
2663
+ "documentsRoles": null,
2664
+ "documentsShowLanguage": false,
2665
+ "actionImportExport": false,
2666
+ "actionCopy": false,
2667
+ "refreshSeconds": null,
2668
+ "extra": null
2669
+ },
2670
+ "url": {
2671
+ "getMenu": "/puimenu/getMenu"
2672
+ },
2673
+ "functionalities": {},
2674
+ "columns": [],
2675
+ "userFilters": [],
2676
+ "modelFilters": [],
2677
+ "configurations": {}
2678
+ },
2679
+ "puimodel": {
2680
+ "name": "puimodel",
2681
+ "entity": null,
2682
+ "defaultConfiguration": {
2683
+ "isdefault": false,
2684
+ "name": null,
2685
+ "description": null,
2686
+ "order": null,
2687
+ "filterCombo": null,
2688
+ "columns": null,
2689
+ "pinColumn": false,
2690
+ "grouped": false,
2691
+ "documentsShowRole": false,
2692
+ "documentsRoles": null,
2693
+ "documentsShowLanguage": false,
2694
+ "actionImportExport": false,
2695
+ "actionCopy": false,
2696
+ "refreshSeconds": null,
2697
+ "extra": null
2698
+ },
2699
+ "url": {
2700
+ "reload": "/puimodel/reload",
2701
+ "getModelConfigurations": "/puimodel/getModelConfigurations",
2702
+ "getAllModels": "/puimodel/getAllModels"
2703
+ },
2704
+ "functionalities": {},
2705
+ "columns": [],
2706
+ "userFilters": [],
2707
+ "modelFilters": [],
2708
+ "configurations": {}
2709
+ },
2710
+ "vluppuilanguage": {
2711
+ "name": "vluppuilanguage",
2712
+ "entity": "v_lup_pui_language",
2713
+ "defaultConfiguration": {
2714
+ "isdefault": false,
2715
+ "name": null,
2716
+ "description": null,
2717
+ "order": [
2718
+ {
2719
+ "column": "name",
2720
+ "direction": "asc"
2721
+ }
2722
+ ],
2723
+ "filterCombo": null,
2724
+ "columns": null,
2725
+ "pinColumn": false,
2726
+ "grouped": false,
2727
+ "documentsShowRole": false,
2728
+ "documentsRoles": null,
2729
+ "documentsShowLanguage": false,
2730
+ "actionImportExport": false,
2731
+ "actionCopy": false,
2732
+ "refreshSeconds": null,
2733
+ "extra": null
2734
+ },
2735
+ "url": {},
2736
+ "functionalities": {},
2737
+ "columns": [
2738
+ {
2739
+ "name": "isocode",
2740
+ "title": "vluppuilanguage.isocode",
2741
+ "type": "text",
2742
+ "isPk": false,
2743
+ "visibility": "visible"
2744
+ },
2745
+ {
2746
+ "name": "name",
2747
+ "title": "vluppuilanguage.name",
2748
+ "type": "text",
2749
+ "isPk": false,
2750
+ "visibility": "visible"
2751
+ }
2752
+ ],
2753
+ "userFilters": [],
2754
+ "modelFilters": [],
2755
+ "configurations": {}
2756
+ },
2757
+ "orders": {
2758
+ "name": "orders",
2759
+ "entity": "v_order",
2760
+ "defaultConfiguration": {
2761
+ "isdefault": false,
2762
+ "name": null,
2763
+ "description": null,
2764
+ "order": [
2765
+ {
2766
+ "column": "orderdate",
2767
+ "direction": "desc"
2768
+ }
2769
+ ],
2770
+ "filterCombo": [
2771
+ {
2772
+ "id": "shipcountry",
2773
+ "search": {
2774
+ "model": "vlupcountry",
2775
+ "value": "id",
2776
+ "text": "name",
2777
+ "order": {
2778
+ "name": "asc"
2779
+ },
2780
+ "related": null
2781
+ },
2782
+ "local": {
2783
+ "value": "shipcountry"
2784
+ },
2785
+ "relatedCombo": null
2786
+ },
2787
+ {
2788
+ "id": "shipstate",
2789
+ "search": {
2790
+ "model": "vlupstate",
2791
+ "value": "id",
2792
+ "text": "name",
2793
+ "order": {
2794
+ "name": "asc"
2795
+ },
2796
+ "related": "country"
2797
+ },
2798
+ "local": {
2799
+ "value": "shipstate"
2800
+ },
2801
+ "relatedCombo": {
2802
+ "id": "shipcountry",
2803
+ "toColumn": "id"
2804
+ }
2805
+ },
2806
+ {
2807
+ "id": "shipcity",
2808
+ "search": {
2809
+ "model": "vlupcity",
2810
+ "value": "id",
2811
+ "text": "name",
2812
+ "order": {
2813
+ "name": "asc"
2814
+ },
2815
+ "related": "state"
2816
+ },
2817
+ "local": {
2818
+ "value": "shipcity"
2819
+ },
2820
+ "relatedCombo": {
2821
+ "id": "shipstate",
2822
+ "toColumn": "id"
2823
+ }
2824
+ }
2825
+ ],
2826
+ "columns": null,
2827
+ "pinColumn": false,
2828
+ "grouped": false,
2829
+ "documentsShowRole": false,
2830
+ "documentsRoles": null,
2831
+ "documentsShowLanguage": false,
2832
+ "actionImportExport": true,
2833
+ "actionCopy": true,
2834
+ "refreshSeconds": null,
2835
+ "extra": null
2836
+ },
2837
+ "url": {
2838
+ "template": "/orders/template",
2839
+ "patch": "/orders/patch",
2840
+ "createReport": "/orders/createReport",
2841
+ "calculatePrice": "/orders/calculatePrice",
2842
+ "get": "/orders/get",
2843
+ "update": "/orders/update",
2844
+ "insert": "/orders/insert",
2845
+ "list": "/orders/list",
2846
+ "export": "/orders/export",
2847
+ "delete": "/orders/delete"
2848
+ },
2849
+ "functionalities": {
2850
+ "get": "READ_ORDERS",
2851
+ "report": "ORDER_REPORT",
2852
+ "update": "WRITE_ORDERS",
2853
+ "insert": "WRITE_ORDERS",
2854
+ "list": "READ_ORDERS",
2855
+ "delete": "WRITE_ORDERS"
2856
+ },
2857
+ "columns": [
2858
+ {
2859
+ "name": "id",
2860
+ "title": "vorder.id",
2861
+ "type": "numeric",
2862
+ "isPk": true,
2863
+ "visibility": "visible"
2864
+ },
2865
+ {
2866
+ "name": "usr",
2867
+ "title": "vorder.usr",
2868
+ "type": "text",
2869
+ "isPk": false,
2870
+ "visibility": "visible"
2871
+ },
2872
+ {
2873
+ "name": "name",
2874
+ "title": "vorder.name",
2875
+ "type": "text",
2876
+ "isPk": false,
2877
+ "visibility": "visible"
2878
+ },
2879
+ {
2880
+ "name": "lastname",
2881
+ "title": "vorder.lastname",
2882
+ "type": "text",
2883
+ "isPk": false,
2884
+ "visibility": "visible"
2885
+ },
2886
+ {
2887
+ "name": "email",
2888
+ "title": "vorder.email",
2889
+ "type": "text",
2890
+ "isPk": false,
2891
+ "visibility": "visible"
2892
+ },
2893
+ {
2894
+ "name": "orderdate",
2895
+ "title": "vorder.orderdate",
2896
+ "type": "datetime",
2897
+ "isPk": false,
2898
+ "visibility": "visible"
2899
+ },
2900
+ {
2901
+ "name": "shiptofirstname",
2902
+ "title": "vorder.shiptofirstname",
2903
+ "type": "text",
2904
+ "isPk": false,
2905
+ "visibility": "visible"
2906
+ },
2907
+ {
2908
+ "name": "shiptolastname",
2909
+ "title": "vorder.shiptolastname",
2910
+ "type": "text",
2911
+ "isPk": false,
2912
+ "visibility": "visible"
2913
+ },
2914
+ {
2915
+ "name": "shipaddr1",
2916
+ "title": "vorder.shipaddr1",
2917
+ "type": "text",
2918
+ "isPk": false,
2919
+ "visibility": "visible"
2920
+ },
2921
+ {
2922
+ "name": "shipaddr2",
2923
+ "title": "vorder.shipaddr2",
2924
+ "type": "text",
2925
+ "isPk": false,
2926
+ "visibility": "visible"
2927
+ },
2928
+ {
2929
+ "name": "shipcountry",
2930
+ "title": "vorder.shipcountry",
2931
+ "type": "numeric",
2932
+ "isPk": false,
2933
+ "visibility": "visible"
2934
+ },
2935
+ {
2936
+ "name": "shipcountryname",
2937
+ "title": "vorder.shipcountryname",
2938
+ "type": "text",
2939
+ "isPk": false,
2940
+ "visibility": "visible"
2941
+ },
2942
+ {
2943
+ "name": "shipstate",
2944
+ "title": "vorder.shipstate",
2945
+ "type": "numeric",
2946
+ "isPk": false,
2947
+ "visibility": "visible"
2948
+ },
2949
+ {
2950
+ "name": "shipstatename",
2951
+ "title": "vorder.shipstatename",
2952
+ "type": "text",
2953
+ "isPk": false,
2954
+ "visibility": "visible"
2955
+ },
2956
+ {
2957
+ "name": "shipcity",
2958
+ "title": "vorder.shipcity",
2959
+ "type": "numeric",
2960
+ "isPk": false,
2961
+ "visibility": "visible"
2962
+ },
2963
+ {
2964
+ "name": "shipcityname",
2965
+ "title": "vorder.shipcityname",
2966
+ "type": "text",
2967
+ "isPk": false,
2968
+ "visibility": "visible"
2969
+ },
2970
+ {
2971
+ "name": "shipzip",
2972
+ "title": "vorder.shipzip",
2973
+ "type": "text",
2974
+ "isPk": false,
2975
+ "visibility": "visible"
2976
+ },
2977
+ {
2978
+ "name": "shiplocationgeomwkt",
2979
+ "title": "vorder.shiplocationgeomwkt",
2980
+ "type": "text",
2981
+ "isPk": false,
2982
+ "visibility": "visible"
2983
+ },
2984
+ {
2985
+ "name": "lon",
2986
+ "title": "vorder.lon",
2987
+ "type": "decimal",
2988
+ "isPk": false,
2989
+ "visibility": "visible"
2990
+ },
2991
+ {
2992
+ "name": "lat",
2993
+ "title": "vorder.lat",
2994
+ "type": "decimal",
2995
+ "isPk": false,
2996
+ "visibility": "visible"
2997
+ },
2998
+ {
2999
+ "name": "billtofirstname",
3000
+ "title": "vorder.billtofirstname",
3001
+ "type": "text",
3002
+ "isPk": false,
3003
+ "visibility": "visible"
3004
+ },
3005
+ {
3006
+ "name": "billtolastname",
3007
+ "title": "vorder.billtolastname",
3008
+ "type": "text",
3009
+ "isPk": false,
3010
+ "visibility": "visible"
3011
+ },
3012
+ {
3013
+ "name": "billaddr1",
3014
+ "title": "vorder.billaddr1",
3015
+ "type": "text",
3016
+ "isPk": false,
3017
+ "visibility": "visible"
3018
+ },
3019
+ {
3020
+ "name": "billaddr2",
3021
+ "title": "vorder.billaddr2",
3022
+ "type": "text",
3023
+ "isPk": false,
3024
+ "visibility": "visible"
3025
+ },
3026
+ {
3027
+ "name": "billcountry",
3028
+ "title": "vorder.billcountry",
3029
+ "type": "numeric",
3030
+ "isPk": false,
3031
+ "visibility": "visible"
3032
+ },
3033
+ {
3034
+ "name": "billcountryname",
3035
+ "title": "vorder.billcountryname",
3036
+ "type": "text",
3037
+ "isPk": false,
3038
+ "visibility": "visible"
3039
+ },
3040
+ {
3041
+ "name": "billstate",
3042
+ "title": "vorder.billstate",
3043
+ "type": "numeric",
3044
+ "isPk": false,
3045
+ "visibility": "visible"
3046
+ },
3047
+ {
3048
+ "name": "billstatename",
3049
+ "title": "vorder.billstatename",
3050
+ "type": "text",
3051
+ "isPk": false,
3052
+ "visibility": "visible"
3053
+ },
3054
+ {
3055
+ "name": "billcity",
3056
+ "title": "vorder.billcity",
3057
+ "type": "numeric",
3058
+ "isPk": false,
3059
+ "visibility": "visible"
3060
+ },
3061
+ {
3062
+ "name": "billcityname",
3063
+ "title": "vorder.billcityname",
3064
+ "type": "text",
3065
+ "isPk": false,
3066
+ "visibility": "visible"
3067
+ },
3068
+ {
3069
+ "name": "billzip",
3070
+ "title": "vorder.billzip",
3071
+ "type": "text",
3072
+ "isPk": false,
3073
+ "visibility": "visible"
3074
+ },
3075
+ {
3076
+ "name": "totalprice",
3077
+ "title": "vorder.totalprice",
3078
+ "type": "decimal",
3079
+ "isPk": false,
3080
+ "visibility": "visible"
3081
+ },
3082
+ {
3083
+ "name": "creditcard",
3084
+ "title": "vorder.creditcard",
3085
+ "type": "text",
3086
+ "isPk": false,
3087
+ "visibility": "visible"
3088
+ },
3089
+ {
3090
+ "name": "cardtype",
3091
+ "title": "vorder.cardtype",
3092
+ "type": "numeric",
3093
+ "isPk": false,
3094
+ "visibility": "visible"
3095
+ },
3096
+ {
3097
+ "name": "cardtypename",
3098
+ "title": "vorder.cardtypename",
3099
+ "type": "text",
3100
+ "isPk": false,
3101
+ "visibility": "visible"
3102
+ },
3103
+ {
3104
+ "name": "exprdate",
3105
+ "title": "vorder.exprdate",
3106
+ "type": "text",
3107
+ "isPk": false,
3108
+ "visibility": "visible"
3109
+ },
3110
+ {
3111
+ "name": "status",
3112
+ "title": "vorder.status",
3113
+ "type": "text",
3114
+ "isPk": false,
3115
+ "visibility": "visible"
3116
+ },
3117
+ {
3118
+ "name": "statusdate",
3119
+ "title": "vorder.statusdate",
3120
+ "type": "text",
3121
+ "isPk": false,
3122
+ "visibility": "visible"
3123
+ },
3124
+ {
3125
+ "name": "statusid",
3126
+ "title": "vorder.statusid",
3127
+ "type": "text",
3128
+ "isPk": false,
3129
+ "visibility": "visible"
3130
+ }
3131
+ ],
3132
+ "userFilters": [],
3133
+ "modelFilters": [],
3134
+ "configurations": {
3135
+ "datatables": [
3136
+ {
3137
+ "usr": "admin",
3138
+ "model": "orders",
3139
+ "configuration": "{\"name\":\"aaa\",\"order\":[{\"column\":\"orderdate\",\"direction\":\"desc\"}],\"filterCombo\":[{\"id\":\"shipcountry\",\"search\":{\"model\":\"vlupcountry\",\"value\":\"id\",\"text\":\"name\",\"order\":null,\"related\":null},\"local\":{\"value\":\"shipcountry\"},\"relatedCombo\":null},{\"id\":\"shipstate\",\"search\":{\"model\":\"vlupstate\",\"value\":\"id\",\"text\":\"name\",\"order\":null,\"related\":\"country\"},\"local\":{\"value\":\"shipstate\"},\"relatedCombo\":{\"id\":\"shipcountry\",\"toColumn\":\"id\"}},{\"id\":\"shipcity\",\"search\":{\"model\":\"vlupcity\",\"value\":\"id\",\"text\":\"name\",\"order\":null,\"related\":\"state\"},\"local\":{\"value\":\"shipcity\"},\"relatedCombo\":{\"id\":\"shipstate\",\"toColumn\":\"id\"}}],\"columns\":[{\"order\":0,\"title\":\"User\",\"name\":\"usr\",\"data\":\"usr\",\"visible\":true,\"type\":\"text\"},{\"order\":1,\"title\":\"Name\",\"name\":\"name\",\"data\":\"name\",\"visible\":true,\"type\":\"text\"},{\"order\":2,\"title\":\"Email\",\"name\":\"email\",\"data\":\"email\",\"visible\":true,\"type\":\"text\"},{\"order\":3,\"title\":\"Order Date\",\"name\":\"orderdate\",\"data\":\"orderdate\",\"visible\":true,\"type\":\"datetime\"},{\"order\":4,\"title\":\"Total price\",\"name\":\"totalprice\",\"data\":\"totalprice\",\"visible\":true,\"type\":\"decimal\"},{\"order\":39,\"title\":\"Bill to: Address 1\",\"name\":\"billaddr1\",\"data\":\"billaddr1\",\"visible\":false,\"type\":\"text\"},{\"order\":40,\"title\":\"Bill to: Address 2\",\"name\":\"billaddr2\",\"data\":\"billaddr2\",\"visible\":false,\"type\":\"text\"},{\"order\":41,\"title\":\"Bill to: ZIP\",\"name\":\"billzip\",\"data\":\"billzip\",\"visible\":false,\"type\":\"text\"},{\"order\":42,\"title\":\"Bill to: city\",\"name\":\"billcity\",\"data\":\"billcity\",\"visible\":false,\"type\":\"numeric\"},{\"order\":43,\"title\":\"Bill to: city name\",\"name\":\"billcityname\",\"data\":\"billcityname\",\"visible\":false,\"type\":\"text\"},{\"order\":44,\"title\":\"Bill to: country\",\"name\":\"billcountry\",\"data\":\"billcountry\",\"visible\":false,\"type\":\"numeric\"},{\"order\":45,\"title\":\"Bill to: country name\",\"name\":\"billcountryname\",\"data\":\"billcountryname\",\"visible\":false,\"type\":\"text\"},{\"order\":46,\"title\":\"Bill to: fist name\",\"name\":\"billtofirstname\",\"data\":\"billtofirstname\",\"visible\":false,\"type\":\"text\"},{\"order\":47,\"title\":\"Bill to: last name\",\"name\":\"billtolastname\",\"data\":\"billtolastname\",\"visible\":false,\"type\":\"text\"},{\"order\":48,\"title\":\"Bill to: state\",\"name\":\"billstate\",\"data\":\"billstate\",\"visible\":false,\"type\":\"numeric\"},{\"order\":49,\"title\":\"Bill to: state name\",\"name\":\"billstatename\",\"data\":\"billstatename\",\"visible\":false,\"type\":\"text\"},{\"order\":50,\"title\":\"Card type\",\"name\":\"cardtype\",\"data\":\"cardtype\",\"visible\":false,\"type\":\"numeric\"},{\"order\":51,\"title\":\"Card type name\",\"name\":\"cardtypename\",\"data\":\"cardtypename\",\"visible\":false,\"type\":\"text\"},{\"order\":52,\"title\":\"Credit card\",\"name\":\"creditcard\",\"data\":\"creditcard\",\"visible\":false,\"type\":\"text\"},{\"order\":54,\"title\":\"Expr date\",\"name\":\"exprdate\",\"data\":\"exprdate\",\"visible\":false,\"type\":\"text\"},{\"order\":55,\"title\":\"Id\",\"name\":\"id\",\"data\":\"id\",\"visible\":false,\"type\":\"numeric\"},{\"order\":56,\"title\":\"Last Name\",\"name\":\"lastname\",\"data\":\"lastname\",\"visible\":false,\"type\":\"text\"},{\"order\":59,\"title\":\"Ship location geomwkt\",\"name\":\"shiplocationgeomwkt\",\"data\":\"shiplocationgeomwkt\",\"visible\":false,\"type\":\"text\"},{\"order\":60,\"title\":\"Ship to: Address 1\",\"name\":\"shipaddr1\",\"data\":\"shipaddr1\",\"visible\":false,\"type\":\"text\"},{\"order\":61,\"title\":\"Ship to: Address 2\",\"name\":\"shipaddr2\",\"data\":\"shipaddr2\",\"visible\":false,\"type\":\"text\"},{\"order\":62,\"title\":\"Ship to: City\",\"name\":\"shipcityname\",\"data\":\"shipcityname\",\"visible\":false,\"type\":\"text\"},{\"order\":63,\"title\":\"Ship to: City Code\",\"name\":\"shipcity\",\"data\":\"shipcity\",\"visible\":false,\"type\":\"numeric\"},{\"order\":64,\"title\":\"Ship to: Country\",\"name\":\"shipcountryname\",\"data\":\"shipcountryname\",\"visible\":false,\"type\":\"text\"},{\"order\":65,\"title\":\"Ship to: Country Code\",\"name\":\"shipcountry\",\"data\":\"shipcountry\",\"visible\":false,\"type\":\"numeric\"},{\"order\":66,\"title\":\"Ship to: Last Name\",\"name\":\"shiptolastname\",\"data\":\"shiptolastname\",\"visible\":false,\"type\":\"text\"},{\"order\":67,\"title\":\"Ship to: Name\",\"name\":\"shiptofirstname\",\"data\":\"shiptofirstname\",\"visible\":false,\"type\":\"text\"},{\"order\":68,\"title\":\"Ship to: State\",\"name\":\"shipstatename\",\"data\":\"shipstatename\",\"visible\":false,\"type\":\"text\"},{\"order\":69,\"title\":\"Ship to: State Code\",\"name\":\"shipstate\",\"data\":\"shipstate\",\"visible\":false,\"type\":\"numeric\"},{\"order\":70,\"title\":\"Ship to: ZIP\",\"name\":\"shipzip\",\"data\":\"shipzip\",\"visible\":false,\"type\":\"text\"},{\"order\":71,\"title\":\"Status\",\"name\":\"status\",\"data\":\"status\",\"visible\":false,\"type\":\"text\"},{\"order\":72,\"title\":\"Status date\",\"name\":\"statusdate\",\"data\":\"statusdate\",\"visible\":false,\"type\":\"text\"},{\"order\":73,\"title\":\"Status id\",\"name\":\"statusid\",\"data\":\"statusid\",\"visible\":false,\"type\":\"text\"},{\"order\":76,\"title\":\"lattitude\",\"name\":\"lat\",\"data\":\"lat\",\"visible\":false,\"type\":\"decimal\"},{\"order\":77,\"title\":\"longitude\",\"name\":\"lon\",\"data\":\"lon\",\"visible\":false,\"type\":\"decimal\"}],\"pinColumn\":false,\"grouped\":false,\"documentsShowRole\":false,\"documentsRoles\":null,\"documentsShowLanguage\":false,\"actionImportExport\":false,\"actionCopy\":false,\"extra\":null,\"isdefault\":true}",
3140
+ "type": "datatables",
3141
+ "id": 42
3142
+ }
3143
+ ]
3144
+ }
3145
+ },
3146
+ "category": {
3147
+ "name": "category",
3148
+ "entity": "v_category",
3149
+ "defaultConfiguration": {
3150
+ "isdefault": false,
3151
+ "name": null,
3152
+ "description": null,
3153
+ "order": [
3154
+ {
3155
+ "column": "name",
3156
+ "direction": "asc"
3157
+ }
3158
+ ],
3159
+ "filterCombo": null,
3160
+ "columns": null,
3161
+ "pinColumn": false,
3162
+ "grouped": false,
3163
+ "documentsShowRole": false,
3164
+ "documentsRoles": null,
3165
+ "documentsShowLanguage": false,
3166
+ "actionImportExport": false,
3167
+ "actionCopy": false,
3168
+ "refreshSeconds": null,
3169
+ "extra": null
3170
+ },
3171
+ "url": {
3172
+ "template": "/category/template",
3173
+ "patch": "/category/patch",
3174
+ "get": "/category/get",
3175
+ "update": "/category/update",
3176
+ "insert": "/category/insert",
3177
+ "list": "/category/list",
3178
+ "export": "/category/export",
3179
+ "delete": "/category/delete"
3180
+ },
3181
+ "functionalities": {
3182
+ "insert": "WRITE_CATEGORY",
3183
+ "update": "WRITE_CATEGORY",
3184
+ "list": "READ_CATEGORY",
3185
+ "delete": "WRITE_CATEGORY",
3186
+ "get": "READ_CATEGORY"
3187
+ },
3188
+ "columns": [
3189
+ {
3190
+ "name": "id",
3191
+ "title": "vcategory.id",
3192
+ "type": "numeric",
3193
+ "isPk": true,
3194
+ "visibility": "visible"
3195
+ },
3196
+ {
3197
+ "name": "lang",
3198
+ "title": "vcategory.lang",
3199
+ "type": "text",
3200
+ "isPk": false,
3201
+ "visibility": "visible"
3202
+ },
3203
+ {
3204
+ "name": "name",
3205
+ "title": "vcategory.name",
3206
+ "type": "text",
3207
+ "isPk": false,
3208
+ "visibility": "visible"
3209
+ },
3210
+ {
3211
+ "name": "description",
3212
+ "title": "vcategory.description",
3213
+ "type": "text",
3214
+ "isPk": false,
3215
+ "visibility": "visible"
3216
+ }
3217
+ ],
3218
+ "userFilters": [],
3219
+ "modelFilters": [],
3220
+ "configurations": {}
3221
+ },
3222
+ "account": {
3223
+ "name": "account",
3224
+ "entity": "v_account",
3225
+ "defaultConfiguration": {
3226
+ "isdefault": false,
3227
+ "name": null,
3228
+ "description": null,
3229
+ "order": [
3230
+ {
3231
+ "column": "usr",
3232
+ "direction": "asc"
3233
+ }
3234
+ ],
3235
+ "filterCombo": null,
3236
+ "columns": null,
3237
+ "pinColumn": false,
3238
+ "grouped": false,
3239
+ "documentsShowRole": false,
3240
+ "documentsRoles": null,
3241
+ "documentsShowLanguage": false,
3242
+ "actionImportExport": false,
3243
+ "actionCopy": false,
3244
+ "refreshSeconds": null,
3245
+ "extra": null
3246
+ },
3247
+ "url": {
3248
+ "template": "/account/template",
3249
+ "patch": "/account/patch",
3250
+ "get": "/account/get",
3251
+ "update": "/account/update",
3252
+ "insert": "/account/insert",
3253
+ "list": "/account/list",
3254
+ "export": "/account/export",
3255
+ "delete": "/account/delete"
3256
+ },
3257
+ "functionalities": {
3258
+ "insert": "WRITE_ACCOUNT",
3259
+ "update": "WRITE_ACCOUNT",
3260
+ "list": "READ_ACCOUNT",
3261
+ "delete": "WRITE_ACCOUNT",
3262
+ "get": "READ_ACCOUNT"
3263
+ },
3264
+ "columns": [
3265
+ {
3266
+ "name": "usr",
3267
+ "title": "vaccount.usr",
3268
+ "type": "text",
3269
+ "isPk": true,
3270
+ "visibility": "visible"
3271
+ },
3272
+ {
3273
+ "name": "name",
3274
+ "title": "vaccount.name",
3275
+ "type": "text",
3276
+ "isPk": false,
3277
+ "visibility": "visible"
3278
+ },
3279
+ {
3280
+ "name": "lastname",
3281
+ "title": "vaccount.lastname",
3282
+ "type": "text",
3283
+ "isPk": false,
3284
+ "visibility": "visible"
3285
+ },
3286
+ {
3287
+ "name": "email",
3288
+ "title": "vaccount.email",
3289
+ "type": "text",
3290
+ "isPk": false,
3291
+ "visibility": "visible"
3292
+ },
3293
+ {
3294
+ "name": "addr1",
3295
+ "title": "vaccount.addr1",
3296
+ "type": "text",
3297
+ "isPk": false,
3298
+ "visibility": "visible"
3299
+ },
3300
+ {
3301
+ "name": "addr2",
3302
+ "title": "vaccount.addr2",
3303
+ "type": "text",
3304
+ "isPk": false,
3305
+ "visibility": "visible"
3306
+ },
3307
+ {
3308
+ "name": "country",
3309
+ "title": "vaccount.country",
3310
+ "type": "numeric",
3311
+ "isPk": false,
3312
+ "visibility": "visible"
3313
+ },
3314
+ {
3315
+ "name": "countryname",
3316
+ "title": "vaccount.countryname",
3317
+ "type": "text",
3318
+ "isPk": false,
3319
+ "visibility": "visible"
3320
+ },
3321
+ {
3322
+ "name": "state",
3323
+ "title": "vaccount.state",
3324
+ "type": "numeric",
3325
+ "isPk": false,
3326
+ "visibility": "visible"
3327
+ },
3328
+ {
3329
+ "name": "statename",
3330
+ "title": "vaccount.statename",
3331
+ "type": "text",
3332
+ "isPk": false,
3333
+ "visibility": "visible"
3334
+ },
3335
+ {
3336
+ "name": "city",
3337
+ "title": "vaccount.city",
3338
+ "type": "numeric",
3339
+ "isPk": false,
3340
+ "visibility": "visible"
3341
+ },
3342
+ {
3343
+ "name": "cityname",
3344
+ "title": "vaccount.cityname",
3345
+ "type": "text",
3346
+ "isPk": false,
3347
+ "visibility": "visible"
3348
+ },
3349
+ {
3350
+ "name": "zip",
3351
+ "title": "vaccount.zip",
3352
+ "type": "text",
3353
+ "isPk": false,
3354
+ "visibility": "visible"
3355
+ },
3356
+ {
3357
+ "name": "phone",
3358
+ "title": "vaccount.phone",
3359
+ "type": "text",
3360
+ "isPk": false,
3361
+ "visibility": "visible"
3362
+ },
3363
+ {
3364
+ "name": "language",
3365
+ "title": "vaccount.language",
3366
+ "type": "text",
3367
+ "isPk": false,
3368
+ "visibility": "visible"
3369
+ },
3370
+ {
3371
+ "name": "disabled",
3372
+ "title": "vaccount.disabled",
3373
+ "type": "numeric",
3374
+ "isPk": false,
3375
+ "visibility": "visible"
3376
+ }
3377
+ ],
3378
+ "userFilters": [],
3379
+ "modelFilters": [],
3380
+ "configurations": {}
3381
+ },
3382
+ "modelgenerator": {
3383
+ "name": "modelgenerator",
3384
+ "entity": null,
3385
+ "defaultConfiguration": {
3386
+ "isdefault": false,
3387
+ "name": null,
3388
+ "description": null,
3389
+ "order": null,
3390
+ "filterCombo": null,
3391
+ "columns": null,
3392
+ "pinColumn": false,
3393
+ "grouped": false,
3394
+ "documentsShowRole": false,
3395
+ "documentsRoles": null,
3396
+ "documentsShowLanguage": false,
3397
+ "actionImportExport": false,
3398
+ "actionCopy": false,
3399
+ "refreshSeconds": null,
3400
+ "extra": null
3401
+ },
3402
+ "url": {
3403
+ "getModelsDefinitionWithControllers": "/modelgenerator/getModelsDefinitionWithControllers",
3404
+ "getModelDefinition": "/modelgenerator/getModelDefinition",
3405
+ "generate": "/modelgenerator/generate",
3406
+ "getModelsDefinition": "/modelgenerator/getModelsDefinition"
3407
+ },
3408
+ "functionalities": {
3409
+ "generate": "GEN_PUI_GENERATED_ENTITY",
3410
+ "get": "READ_PUI_GENERATED_ENTITY"
3411
+ },
3412
+ "columns": [],
3413
+ "userFilters": [],
3414
+ "modelFilters": [],
3415
+ "configurations": {}
3416
+ },
3417
+ "status": {
3418
+ "name": "status",
3419
+ "entity": "v_status",
3420
+ "defaultConfiguration": {
3421
+ "isdefault": false,
3422
+ "name": null,
3423
+ "description": null,
3424
+ "order": [
3425
+ {
3426
+ "column": "description",
3427
+ "direction": "asc"
3428
+ }
3429
+ ],
3430
+ "filterCombo": null,
3431
+ "columns": null,
3432
+ "pinColumn": false,
3433
+ "grouped": false,
3434
+ "documentsShowRole": false,
3435
+ "documentsRoles": null,
3436
+ "documentsShowLanguage": false,
3437
+ "actionImportExport": false,
3438
+ "actionCopy": false,
3439
+ "refreshSeconds": null,
3440
+ "extra": null
3441
+ },
3442
+ "url": {
3443
+ "patch": "/status/patch",
3444
+ "update": "/status/update",
3445
+ "list": "/status/list",
3446
+ "export": "/status/export",
3447
+ "get": "/status/get"
3448
+ },
3449
+ "functionalities": {
3450
+ "update": "WRITE_STATUS",
3451
+ "list": "READ_STATUS",
3452
+ "get": "READ_STATUS"
3453
+ },
3454
+ "columns": [
3455
+ {
3456
+ "name": "id",
3457
+ "title": "vstatus.id",
3458
+ "type": "numeric",
3459
+ "isPk": true,
3460
+ "visibility": "visible"
3461
+ },
3462
+ {
3463
+ "name": "version",
3464
+ "title": "vstatus.version",
3465
+ "type": "numeric",
3466
+ "isPk": true,
3467
+ "visibility": "visible"
3468
+ },
3469
+ {
3470
+ "name": "description",
3471
+ "title": "vstatus.description",
3472
+ "type": "text",
3473
+ "isPk": false,
3474
+ "visibility": "visible"
3475
+ },
3476
+ {
3477
+ "name": "usralta",
3478
+ "title": "vstatus.usralta",
3479
+ "type": "text",
3480
+ "isPk": false,
3481
+ "visibility": "visible"
3482
+ },
3483
+ {
3484
+ "name": "fecalta",
3485
+ "title": "vstatus.fecalta",
3486
+ "type": "datetime",
3487
+ "isPk": false,
3488
+ "visibility": "visible"
3489
+ },
3490
+ {
3491
+ "name": "usrmodif",
3492
+ "title": "vstatus.usrmodif",
3493
+ "type": "text",
3494
+ "isPk": false,
3495
+ "visibility": "visible"
3496
+ },
3497
+ {
3498
+ "name": "fecmodif",
3499
+ "title": "vstatus.fecmodif",
3500
+ "type": "datetime",
3501
+ "isPk": false,
3502
+ "visibility": "visible"
3503
+ },
3504
+ {
3505
+ "name": "activo",
3506
+ "title": "vstatus.activo",
3507
+ "type": "text",
3508
+ "isPk": false,
3509
+ "visibility": "visible"
3510
+ }
3511
+ ],
3512
+ "userFilters": [],
3513
+ "modelFilters": [],
3514
+ "configurations": {}
3515
+ }
3516
+ }