@pepperi-addons/ngx-lib 0.2.51-beta.7 → 0.2.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/pepperi-addons-ngx-lib-form.umd.js +188 -3313
- package/bundles/pepperi-addons-ngx-lib-form.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib-image.umd.js +133 -72
- package/bundles/pepperi-addons-ngx-lib-image.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib-slider.umd.js +15 -4
- package/bundles/pepperi-addons-ngx-lib-slider.umd.js.map +1 -1
- package/bundles/pepperi-addons-ngx-lib.umd.js +5 -1
- package/bundles/pepperi-addons-ngx-lib.umd.js.map +1 -1
- package/core/common/model/wapi.model.d.ts +2 -0
- package/core/customization/customization.model.d.ts +1 -0
- package/esm2015/core/common/model/wapi.model.js +1 -1
- package/esm2015/core/customization/customization.model.js +5 -1
- package/esm2015/form/field-generator.component.js +16 -10
- package/esm2015/form/form.component.js +53 -84
- package/esm2015/form/internal-carusel.component.js +39 -3147
- package/esm2015/form/internal-carusel.service.js +13 -13
- package/esm2015/form/internal-page.component.js +7 -7
- package/esm2015/image/image.component.js +20 -36
- package/esm2015/image/image.module.js +3 -1
- package/esm2015/image/image.service.js +55 -0
- package/esm2015/image/public-api.js +2 -1
- package/esm2015/slider/slider.component.js +16 -5
- package/fesm2015/pepperi-addons-ngx-lib-form.js +123 -3257
- package/fesm2015/pepperi-addons-ngx-lib-form.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-image.js +73 -36
- package/fesm2015/pepperi-addons-ngx-lib-image.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-slider.js +15 -4
- package/fesm2015/pepperi-addons-ngx-lib-slider.js.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib.js +4 -0
- package/fesm2015/pepperi-addons-ngx-lib.js.map +1 -1
- package/form/field-generator.component.d.ts +7 -5
- package/form/form.component.d.ts +10 -4
- package/form/internal-carusel.component.d.ts +5 -3
- package/form/internal-carusel.service.d.ts +2 -7
- package/form/internal-page.component.d.ts +2 -2
- package/form/pepperi-addons-ngx-lib-form.metadata.json +1 -1
- package/image/image.component.d.ts +5 -5
- package/image/image.service.d.ts +11 -0
- package/image/pepperi-addons-ngx-lib-image.metadata.json +1 -1
- package/image/public-api.d.ts +1 -0
- package/package.json +1 -1
- package/pepperi-addons-ngx-lib.metadata.json +1 -1
- package/slider/pepperi-addons-ngx-lib-slider.metadata.json +1 -1
- package/slider/slider.component.d.ts +2 -0
- package/src/core/style/base/typography.scss +28 -0
|
@@ -340,13 +340,14 @@
|
|
|
340
340
|
this.checkForChanges = null;
|
|
341
341
|
this.valueChange = new core.EventEmitter();
|
|
342
342
|
this.formValidationChange = new core.EventEmitter();
|
|
343
|
-
this.childClick = new core.EventEmitter();
|
|
344
|
-
this.childChange = new core.EventEmitter();
|
|
345
343
|
this.fieldClick = new core.EventEmitter();
|
|
344
|
+
this.internalFormFieldClick = new core.EventEmitter();
|
|
345
|
+
this.internalFormFieldChange = new core.EventEmitter();
|
|
346
346
|
this.isLocked = false;
|
|
347
347
|
// payLoad = '';
|
|
348
348
|
this.rows = [];
|
|
349
349
|
this.fields = [];
|
|
350
|
+
this._fieldsSubject = new rxjs.BehaviorSubject([]);
|
|
350
351
|
this.columns = 1;
|
|
351
352
|
this.hasMenuFloatingOnOtherField = false;
|
|
352
353
|
this.indicatorsDataField = null;
|
|
@@ -372,6 +373,13 @@
|
|
|
372
373
|
enumerable: false,
|
|
373
374
|
configurable: true
|
|
374
375
|
});
|
|
376
|
+
Object.defineProperty(PepFormComponent.prototype, "fields$", {
|
|
377
|
+
get: function () {
|
|
378
|
+
return this._fieldsSubject.asObservable();
|
|
379
|
+
},
|
|
380
|
+
enumerable: false,
|
|
381
|
+
configurable: true
|
|
382
|
+
});
|
|
375
383
|
Object.defineProperty(PepFormComponent.prototype, "shouldReloadForm", {
|
|
376
384
|
get: function () {
|
|
377
385
|
return this._shouldReloadForm;
|
|
@@ -912,6 +920,10 @@
|
|
|
912
920
|
}
|
|
913
921
|
return this.fb.group(group);
|
|
914
922
|
};
|
|
923
|
+
PepFormComponent.prototype.createBaseField = function (uiControlField, dataField) {
|
|
924
|
+
var customField = this.convertToCustomField(uiControlField, dataField, this.canEditObject, this.menuDataField, this.hasCampaignDataField, this.indicatorsDataField, this.objectId, this.parentId, this.searchCode);
|
|
925
|
+
return customField;
|
|
926
|
+
};
|
|
915
927
|
PepFormComponent.prototype.showFormValidationMessage = function () {
|
|
916
928
|
var e_1, _b;
|
|
917
929
|
var fields = this.fields;
|
|
@@ -1003,21 +1015,6 @@
|
|
|
1003
1015
|
// }
|
|
1004
1016
|
};
|
|
1005
1017
|
PepFormComponent.prototype.ngOnDestroy = function () {
|
|
1006
|
-
// if (this.valueChange) {
|
|
1007
|
-
// this.valueChange.unsubscribe();
|
|
1008
|
-
// }
|
|
1009
|
-
// if (this.formValidationChange) {
|
|
1010
|
-
// this.formValidationChange.unsubscribe();
|
|
1011
|
-
// }
|
|
1012
|
-
// if (this.childClick) {
|
|
1013
|
-
// this.childClick.unsubscribe();
|
|
1014
|
-
// }
|
|
1015
|
-
// if (this.childChange) {
|
|
1016
|
-
// this.childChange.unsubscribe();
|
|
1017
|
-
// }
|
|
1018
|
-
// if (this.fieldClick) {
|
|
1019
|
-
// this.fieldClick.unsubscribe();
|
|
1020
|
-
// }
|
|
1021
1018
|
};
|
|
1022
1019
|
PepFormComponent.prototype.getUiControlFields = function () {
|
|
1023
1020
|
return this.layout ? this.layout.ControlFields : [];
|
|
@@ -1042,6 +1039,7 @@
|
|
|
1042
1039
|
// this.layoutType === 'form' ||
|
|
1043
1040
|
this.layoutType === 'table') {
|
|
1044
1041
|
this.fields = fields;
|
|
1042
|
+
this._fieldsSubject.next(fields);
|
|
1045
1043
|
this.rows = [];
|
|
1046
1044
|
for (var i = 0; i <= maxRow; i++) {
|
|
1047
1045
|
this.rows[i] = [];
|
|
@@ -1153,22 +1151,22 @@
|
|
|
1153
1151
|
: f1.col < f2.col
|
|
1154
1152
|
? -1
|
|
1155
1153
|
: 0; });
|
|
1154
|
+
this._fieldsSubject.next(fields);
|
|
1156
1155
|
}
|
|
1157
1156
|
}
|
|
1158
1157
|
};
|
|
1159
1158
|
PepFormComponent.prototype.setForm = function (isForUpdate) {
|
|
1160
|
-
var e_4, _b
|
|
1159
|
+
var e_4, _b;
|
|
1161
1160
|
if (isForUpdate === void 0) { isForUpdate = false; }
|
|
1162
1161
|
var _a;
|
|
1163
1162
|
var allFieldsAreReadOnly = true;
|
|
1164
1163
|
if (!isForUpdate) {
|
|
1165
1164
|
var fields = [];
|
|
1166
1165
|
try {
|
|
1167
|
-
for (var
|
|
1168
|
-
var currentField =
|
|
1169
|
-
// Add all fields except 'internalPage'
|
|
1170
|
-
if (currentField.controlType !== 'internalPage'
|
|
1171
|
-
currentField.controlType !== 'internalCarusel') {
|
|
1166
|
+
for (var _c = __values(this.fields), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
1167
|
+
var currentField = _d.value;
|
|
1168
|
+
// Add all fields except 'internalPage' (for children).
|
|
1169
|
+
if (currentField.controlType !== 'internalPage') {
|
|
1172
1170
|
fields.push(currentField);
|
|
1173
1171
|
}
|
|
1174
1172
|
if (!currentField.readonly) {
|
|
@@ -1179,55 +1177,57 @@
|
|
|
1179
1177
|
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
1180
1178
|
finally {
|
|
1181
1179
|
try {
|
|
1182
|
-
if (
|
|
1180
|
+
if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
|
|
1183
1181
|
}
|
|
1184
1182
|
finally { if (e_4) throw e_4.error; }
|
|
1185
1183
|
}
|
|
1186
1184
|
this.form = this.toControlGroup(fields);
|
|
1187
1185
|
}
|
|
1188
1186
|
else {
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
if (_k && !_k.done && (_d = _j.return)) _d.call(_j);
|
|
1210
|
-
}
|
|
1211
|
-
finally { if (e_6) throw e_6.error; }
|
|
1187
|
+
var _loop_1 = function (i) {
|
|
1188
|
+
var e_5, _e;
|
|
1189
|
+
var currentField = this_1.fields[i];
|
|
1190
|
+
if (currentField.controlType === 'internalCarusel') {
|
|
1191
|
+
// Hack to override (update) the field.
|
|
1192
|
+
var uiControlField = this_1.getUiControlFields().find(function (cf) { return cf.ApiName === currentField.key; });
|
|
1193
|
+
var dataField = this_1.data.Fields.find(function (df) { return df.ApiName === currentField.key; });
|
|
1194
|
+
currentField = this_1.createBaseField(uiControlField, dataField);
|
|
1195
|
+
this_1._fieldsSubject.value[i] = currentField;
|
|
1196
|
+
}
|
|
1197
|
+
else if (currentField.controlType !== 'internalPage') {
|
|
1198
|
+
if (currentField.groupFields &&
|
|
1199
|
+
currentField.groupFields.length > 0) {
|
|
1200
|
+
try {
|
|
1201
|
+
// for (let j = 0; j < currentField.groupFields.length; j++) {
|
|
1202
|
+
// let currentGroupField = currentField.groupFields[j];
|
|
1203
|
+
for (var _f = (e_5 = void 0, __values(currentField.groupFields)), _g = _f.next(); !_g.done; _g = _f.next()) {
|
|
1204
|
+
var currentGroupField = _g.value;
|
|
1205
|
+
var fieldFormattedValue = this_1.getFieldFormattedValue(currentGroupField);
|
|
1206
|
+
this_1.customizationService.updateFormField(this_1.form, currentGroupField, fieldFormattedValue, currentField);
|
|
1212
1207
|
}
|
|
1213
1208
|
}
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1209
|
+
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
1210
|
+
finally {
|
|
1211
|
+
try {
|
|
1212
|
+
if (_g && !_g.done && (_e = _f.return)) _e.call(_f);
|
|
1213
|
+
}
|
|
1214
|
+
finally { if (e_5) throw e_5.error; }
|
|
1218
1215
|
}
|
|
1219
1216
|
}
|
|
1220
|
-
|
|
1221
|
-
|
|
1217
|
+
else {
|
|
1218
|
+
var fieldFormattedValue = this_1.getFieldFormattedValue(currentField);
|
|
1219
|
+
// this.form.controls[currentField.key].setValue(fieldFormattedValue);
|
|
1220
|
+
this_1.customizationService.updateFormField(this_1.form, currentField, fieldFormattedValue);
|
|
1222
1221
|
}
|
|
1223
1222
|
}
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
finally {
|
|
1227
|
-
try {
|
|
1228
|
-
if (_h && !_h.done && (_c = _g.return)) _c.call(_g);
|
|
1223
|
+
if (!currentField.readonly) {
|
|
1224
|
+
allFieldsAreReadOnly = false;
|
|
1229
1225
|
}
|
|
1230
|
-
|
|
1226
|
+
};
|
|
1227
|
+
var this_1 = this;
|
|
1228
|
+
// Update form values if changed by calculated fields.
|
|
1229
|
+
for (var i = 0; i < this.fields.length; i++) {
|
|
1230
|
+
_loop_1(i);
|
|
1231
1231
|
}
|
|
1232
1232
|
}
|
|
1233
1233
|
var isFormValid = (_a = this.form) === null || _a === void 0 ? void 0 : _a.valid;
|
|
@@ -1275,58 +1275,61 @@
|
|
|
1275
1275
|
});
|
|
1276
1276
|
}
|
|
1277
1277
|
}
|
|
1278
|
+
else if (customField instanceof ngxLib.PepInternalCaruselField) {
|
|
1279
|
+
options.pageInfo = updatedField.UIPageInfo;
|
|
1280
|
+
}
|
|
1278
1281
|
customField.update(options);
|
|
1279
1282
|
};
|
|
1280
1283
|
PepFormComponent.prototype.updateForm = function () {
|
|
1281
|
-
var
|
|
1284
|
+
var e_6, _b;
|
|
1282
1285
|
if (this.data && this.data.Fields) {
|
|
1283
|
-
var
|
|
1284
|
-
var
|
|
1285
|
-
var customField =
|
|
1286
|
+
var _loop_2 = function (currentField) {
|
|
1287
|
+
var e_7, _e;
|
|
1288
|
+
var customField = this_2.fields.filter(function (f) { return f.key === currentField.ApiName; })[0];
|
|
1286
1289
|
// Update all fields except 'internalPage' type (for children).
|
|
1287
|
-
if (customField &&
|
|
1288
|
-
|
|
1290
|
+
if (customField && customField.controlType !== 'internalPage') {
|
|
1291
|
+
this_2.updateField(customField, currentField);
|
|
1289
1292
|
// Update the group fields.
|
|
1290
1293
|
if (customField.controlType === 'address' &&
|
|
1291
1294
|
currentField.GroupFields) {
|
|
1292
|
-
var
|
|
1295
|
+
var _loop_3 = function (currentGroupField) {
|
|
1293
1296
|
currentGroupField.Enabled = !currentField.Enabled
|
|
1294
1297
|
? false
|
|
1295
1298
|
: currentGroupField.Enabled;
|
|
1296
1299
|
var customGroupField = customField.groupFields.filter(function (f) { return f.key === currentGroupField.ApiName; })[0];
|
|
1297
|
-
|
|
1300
|
+
this_2.updateField(customGroupField, currentGroupField);
|
|
1298
1301
|
};
|
|
1299
1302
|
try {
|
|
1300
1303
|
// for (let j = 0; j < currentField.GroupFields.length; j++) {
|
|
1301
1304
|
// let currentGroupField = currentField.GroupFields[j];
|
|
1302
|
-
for (var _f = (
|
|
1305
|
+
for (var _f = (e_7 = void 0, __values(currentField.GroupFields)), _g = _f.next(); !_g.done; _g = _f.next()) {
|
|
1303
1306
|
var currentGroupField = _g.value;
|
|
1304
|
-
|
|
1307
|
+
_loop_3(currentGroupField);
|
|
1305
1308
|
}
|
|
1306
1309
|
}
|
|
1307
|
-
catch (
|
|
1310
|
+
catch (e_7_1) { e_7 = { error: e_7_1 }; }
|
|
1308
1311
|
finally {
|
|
1309
1312
|
try {
|
|
1310
1313
|
if (_g && !_g.done && (_e = _f.return)) _e.call(_f);
|
|
1311
1314
|
}
|
|
1312
|
-
finally { if (
|
|
1315
|
+
finally { if (e_7) throw e_7.error; }
|
|
1313
1316
|
}
|
|
1314
1317
|
}
|
|
1315
1318
|
}
|
|
1316
1319
|
};
|
|
1317
|
-
var
|
|
1320
|
+
var this_2 = this;
|
|
1318
1321
|
try {
|
|
1319
1322
|
for (var _c = __values(this.data.Fields), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
1320
1323
|
var currentField = _d.value;
|
|
1321
|
-
|
|
1324
|
+
_loop_2(currentField);
|
|
1322
1325
|
}
|
|
1323
1326
|
}
|
|
1324
|
-
catch (
|
|
1327
|
+
catch (e_6_1) { e_6 = { error: e_6_1 }; }
|
|
1325
1328
|
finally {
|
|
1326
1329
|
try {
|
|
1327
1330
|
if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
|
|
1328
1331
|
}
|
|
1329
|
-
finally { if (
|
|
1332
|
+
finally { if (e_6) throw e_6.error; }
|
|
1330
1333
|
}
|
|
1331
1334
|
this.setForm(true);
|
|
1332
1335
|
}
|
|
@@ -1360,7 +1363,7 @@
|
|
|
1360
1363
|
return formControl;
|
|
1361
1364
|
};
|
|
1362
1365
|
PepFormComponent.prototype.setSpecialFields = function (controlFields, dataFields) {
|
|
1363
|
-
var
|
|
1366
|
+
var e_8, _b, e_9, _c, e_10, _d;
|
|
1364
1367
|
try {
|
|
1365
1368
|
// let cf;
|
|
1366
1369
|
// for (let index = 0; index < controlFields.length; index++) {
|
|
@@ -1378,12 +1381,12 @@
|
|
|
1378
1381
|
}
|
|
1379
1382
|
}
|
|
1380
1383
|
}
|
|
1381
|
-
catch (
|
|
1384
|
+
catch (e_8_1) { e_8 = { error: e_8_1 }; }
|
|
1382
1385
|
finally {
|
|
1383
1386
|
try {
|
|
1384
1387
|
if (controlFields_1_1 && !controlFields_1_1.done && (_b = controlFields_1.return)) _b.call(controlFields_1);
|
|
1385
1388
|
}
|
|
1386
|
-
finally { if (
|
|
1389
|
+
finally { if (e_8) throw e_8.error; }
|
|
1387
1390
|
}
|
|
1388
1391
|
try {
|
|
1389
1392
|
// let df;
|
|
@@ -1402,12 +1405,12 @@
|
|
|
1402
1405
|
}
|
|
1403
1406
|
}
|
|
1404
1407
|
}
|
|
1405
|
-
catch (
|
|
1408
|
+
catch (e_9_1) { e_9 = { error: e_9_1 }; }
|
|
1406
1409
|
finally {
|
|
1407
1410
|
try {
|
|
1408
1411
|
if (dataFields_1_1 && !dataFields_1_1.done && (_c = dataFields_1.return)) _c.call(dataFields_1);
|
|
1409
1412
|
}
|
|
1410
|
-
finally { if (
|
|
1413
|
+
finally { if (e_9) throw e_9.error; }
|
|
1411
1414
|
}
|
|
1412
1415
|
if (this.menuField && this.menuDataField) {
|
|
1413
1416
|
this.menuDataField.Layout = this.menuField.Layout;
|
|
@@ -1432,12 +1435,12 @@
|
|
|
1432
1435
|
}
|
|
1433
1436
|
}
|
|
1434
1437
|
}
|
|
1435
|
-
catch (
|
|
1438
|
+
catch (e_10_1) { e_10 = { error: e_10_1 }; }
|
|
1436
1439
|
finally {
|
|
1437
1440
|
try {
|
|
1438
1441
|
if (controlFields_2_1 && !controlFields_2_1.done && (_d = controlFields_2.return)) _d.call(controlFields_2);
|
|
1439
1442
|
}
|
|
1440
|
-
finally { if (
|
|
1443
|
+
finally { if (e_10) throw e_10.error; }
|
|
1441
1444
|
}
|
|
1442
1445
|
};
|
|
1443
1446
|
PepFormComponent.prototype.convertCustomFields = function (controlFields, dataFields) {
|
|
@@ -1472,10 +1475,6 @@
|
|
|
1472
1475
|
});
|
|
1473
1476
|
}
|
|
1474
1477
|
var fields = [];
|
|
1475
|
-
// const matrixFields = controlFields.filter((cf) =>
|
|
1476
|
-
// this.isMatrixField(cf.ApiName)
|
|
1477
|
-
// ).length;
|
|
1478
|
-
// let matrixAlreadyPlaced = false;
|
|
1479
1478
|
controlFields.forEach(function (field, index) {
|
|
1480
1479
|
var dataField = dataFields.filter(function (df) { return df.ApiName === field.ApiName; })[0];
|
|
1481
1480
|
if (!dataField) {
|
|
@@ -1497,21 +1496,12 @@
|
|
|
1497
1496
|
dataField.FieldType = ngxLib.FIELD_TYPE.InternalLink;
|
|
1498
1497
|
// dataField.Value = this.getInternalLinkHref();
|
|
1499
1498
|
}
|
|
1500
|
-
else if (dataField.Value.length > 0 &&
|
|
1501
|
-
(field.FieldType === ngxLib.FIELD_TYPE.ReferenceType ||
|
|
1502
|
-
field.FieldType === ngxLib.FIELD_TYPE.GuidReferenceType)) {
|
|
1503
|
-
// const transactionUrl =
|
|
1504
|
-
// this.data.MainAction === '2'
|
|
1505
|
-
// ? 'transactions/scope_items/'
|
|
1506
|
-
// : 'transactions/cart/';
|
|
1507
|
-
// dataField.Value = transactionUrl + dataField.Value;
|
|
1508
|
-
}
|
|
1509
1499
|
if (field.ApiName === 'ObjectMenu') {
|
|
1510
1500
|
dataField.Enabled = true;
|
|
1511
1501
|
// HACK : Until "Enabled" returns from the server, we set PepMenu to be
|
|
1512
1502
|
// Disabled in cart on regular items and not campign items.
|
|
1513
1503
|
}
|
|
1514
|
-
var customField = _this.
|
|
1504
|
+
var customField = _this.createBaseField(field, dataField);
|
|
1515
1505
|
fields.push(customField);
|
|
1516
1506
|
});
|
|
1517
1507
|
return fields.sort(function (f1, f2) { return f1.row > f2.row
|
|
@@ -1544,6 +1534,7 @@
|
|
|
1544
1534
|
}
|
|
1545
1535
|
this.valueChange.emit({
|
|
1546
1536
|
id: this.data.UID.toString(),
|
|
1537
|
+
uiObjectKey: this.data.Key,
|
|
1547
1538
|
key: event.key,
|
|
1548
1539
|
value: event.value,
|
|
1549
1540
|
controlType: event.controlType,
|
|
@@ -1554,47 +1545,23 @@
|
|
|
1554
1545
|
var clickedUiControlField = this.data.Fields.filter(function (f) { return f.ApiName === fieldClickEvent.key; })[0];
|
|
1555
1546
|
var idType = this.data.Type ? this.data.Type.toString() : '';
|
|
1556
1547
|
if (clickedUiControlField) {
|
|
1557
|
-
|
|
1558
|
-
this.
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
}
|
|
1569
|
-
else if (clickedUiControlField.FieldType === ngxLib.FIELD_TYPE.ListOfObjects) {
|
|
1570
|
-
this.fieldClick.emit({
|
|
1571
|
-
id: this.data.UID.toString(),
|
|
1572
|
-
key: fieldClickEvent.key,
|
|
1573
|
-
idType: idType,
|
|
1574
|
-
which: fieldClickEvent.eventWhich,
|
|
1575
|
-
value: fieldClickEvent.value,
|
|
1576
|
-
controlType: fieldClickEvent.controlType,
|
|
1577
|
-
fieldType: clickedUiControlField.FieldType,
|
|
1578
|
-
otherData: fieldClickEvent.otherData,
|
|
1579
|
-
});
|
|
1580
|
-
}
|
|
1581
|
-
else {
|
|
1582
|
-
this.fieldClick.emit({
|
|
1583
|
-
id: this.data.UID.toString(),
|
|
1584
|
-
key: fieldClickEvent.key,
|
|
1585
|
-
idType: idType,
|
|
1586
|
-
which: fieldClickEvent.eventWhich,
|
|
1587
|
-
value: fieldClickEvent.value,
|
|
1588
|
-
controlType: fieldClickEvent.controlType,
|
|
1589
|
-
fieldType: clickedUiControlField.FieldType,
|
|
1590
|
-
otherData: fieldClickEvent.otherData,
|
|
1591
|
-
});
|
|
1592
|
-
}
|
|
1548
|
+
this.fieldClick.emit({
|
|
1549
|
+
id: this.data.UID.toString(),
|
|
1550
|
+
uiObjectKey: this.data.Key,
|
|
1551
|
+
key: fieldClickEvent.key,
|
|
1552
|
+
idType: idType,
|
|
1553
|
+
which: fieldClickEvent.eventWhich,
|
|
1554
|
+
value: fieldClickEvent.value,
|
|
1555
|
+
controlType: fieldClickEvent.controlType,
|
|
1556
|
+
fieldType: clickedUiControlField.FieldType,
|
|
1557
|
+
otherData: fieldClickEvent.otherData,
|
|
1558
|
+
});
|
|
1593
1559
|
}
|
|
1594
1560
|
else {
|
|
1595
1561
|
// For other api names (like enter children etc).
|
|
1596
1562
|
this.fieldClick.emit({
|
|
1597
1563
|
id: this.data.UID.toString(),
|
|
1564
|
+
uiObjectKey: this.data.Key,
|
|
1598
1565
|
key: fieldClickEvent.key,
|
|
1599
1566
|
idType: idType,
|
|
1600
1567
|
which: fieldClickEvent.eventWhich,
|
|
@@ -1605,16 +1572,16 @@
|
|
|
1605
1572
|
}
|
|
1606
1573
|
};
|
|
1607
1574
|
// This event is for handle the internal page events.
|
|
1608
|
-
PepFormComponent.prototype.
|
|
1609
|
-
this.
|
|
1575
|
+
PepFormComponent.prototype.onInternalFormFieldClicked = function (internalFormFieldClick) {
|
|
1576
|
+
this.internalFormFieldClick.emit(internalFormFieldClick);
|
|
1610
1577
|
};
|
|
1611
1578
|
// This event is for handle the internal page events.
|
|
1612
|
-
PepFormComponent.prototype.
|
|
1613
|
-
this.
|
|
1579
|
+
PepFormComponent.prototype.onInternalFormFieldChanged = function (internalFormFieldChange) {
|
|
1580
|
+
this.internalFormFieldChange.emit(internalFormFieldChange);
|
|
1614
1581
|
};
|
|
1615
1582
|
// This event is for handle the related items change events.
|
|
1616
1583
|
PepFormComponent.prototype.onFormValueChanged = function (event) {
|
|
1617
|
-
this.valueChange.emit(event);
|
|
1584
|
+
// this.valueChange.emit(event);
|
|
1618
1585
|
};
|
|
1619
1586
|
// This event is for handle the related items change events.
|
|
1620
1587
|
PepFormComponent.prototype.onFormFieldClick = function (event) {
|
|
@@ -1625,7 +1592,7 @@
|
|
|
1625
1592
|
PepFormComponent.decorators = [
|
|
1626
1593
|
{ type: core.Component, args: [{
|
|
1627
1594
|
selector: 'pep-form',
|
|
1628
|
-
template: "<fieldset *ngIf=\"form\" [formGroup]=\"form\" [disabled]=\"isLocked\" class=\"pep-form\"\n [ngStyle]=\"{ 'background-color': layoutType == 'card' && data?.BackgroundColor }\">\n <!-- New Form -->\n <mat-grid-list *ngIf=\"layoutType == 'form'\" [cols]=\"columns\" [rowHeight]=\"rowHeight + 'rem'\"\n [gutterSize]=\"formGutterSize\">\n <mat-grid-tile *ngFor=\"let field of fields\" [rowspan]=\"field.rowSpan\" [colspan]=\"field.colSpan\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [form]=\"form\" [layoutType]=\"layoutType\"\n [checkForChanges]=\"checkForChanges\" [uid]=\"data?.UID\" [field]=\"field\" [showTitle]=\"showTitle\"\n (valueChange)=\"onValueChanged($event)\" (elementClick)=\"onClick($event)\"\n (
|
|
1595
|
+
template: "<fieldset *ngIf=\"form\" [formGroup]=\"form\" [disabled]=\"isLocked\" class=\"pep-form\"\n [ngStyle]=\"{ 'background-color': layoutType == 'card' && data?.BackgroundColor }\">\n <!-- New Form -->\n <mat-grid-list *ngIf=\"layoutType == 'form'\" [cols]=\"columns\" [rowHeight]=\"rowHeight + 'rem'\"\n [gutterSize]=\"formGutterSize\">\n <mat-grid-tile *ngFor=\"let field of fields$ | async\" [rowspan]=\"field.rowSpan\" [colspan]=\"field.colSpan\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [form]=\"form\" [layoutType]=\"layoutType\"\n [checkForChanges]=\"checkForChanges\" [uid]=\"data?.UID\" [field]=\"field\" [showTitle]=\"showTitle\"\n (valueChange)=\"onValueChanged($event)\" (elementClick)=\"onClick($event)\"\n (internalFormFieldClick)=\"onInternalFormFieldClicked($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\"\n (formValueChange)=\"onFormValueChanged($event)\" (formFieldClick)=\"onFormFieldClick($event)\"\n (formValidationChange)=\"onFormValidationChanged($event)\">\n </pep-field-generator>\n </mat-grid-tile>\n </mat-grid-list>\n\n <!-- Thumbnails -->\n <mat-grid-list *ngIf=\"layoutType == 'card'\" [cols]=\"columns\" [rowHeight]=\"rowHeight + 'rem'\"\n [gutterSize]=\"cardGutterSize\" class=\"card-spacing\">\n <mat-grid-tile *ngFor=\"let field of fields$ | async\" [rowspan]=\"field.rowSpan\" [colspan]=\"field.colSpan\"\n [ngStyle]=\"{ overflow: field.type == 'qs' ? 'unset' : 'hidden' }\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [form]=\"form\" [layoutType]=\"layoutType\"\n [ngClass]=\"{ 'lock-events': lockEvents }\" [isActive]=\"isActive\" [checkForChanges]=\"checkForChanges\"\n [uid]=\"data?.UID\" [field]=\"field\" [showTitle]=\"showTitle\" (valueChange)=\"onValueChanged($event)\"\n (elementClick)=\"onClick($event)\" (internalFormFieldClick)=\"onInternalFormFieldClicked($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\"\n (formValueChange)=\"onFormValueChanged($event)\" (formFieldClick)=\"onFormFieldClick($event)\">\n </pep-field-generator>\n </mat-grid-tile>\n </mat-grid-list>\n\n <ng-container *ngIf=\"layoutType == 'table'\">\n <ng-container *ngIf=\"isReport; then reportBlock; else notReportBlock\"></ng-container>\n <ng-template #reportBlock>\n <ng-container *ngTemplateOutlet=\"report\"></ng-container>\n </ng-template>\n <ng-template #notReportBlock>\n <div *ngFor=\"let field of fields$ | async; let j = index\" class=\"pull-left flip table-cell \"\n [ngClass]=\"['text-align-' + field.xAlignment]\" style=\"height: 100%\"\n [ngStyle]=\"{ width: (layout?.ControlFields)[j]?.calcColumnWidthString}\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [checkForChanges]=\"checkForChanges\"\n [uid]=\"data?.UID\" [field]=\"field\" [form]=\"form\" [layoutType]=\"layoutType\" [showTitle]=\"false\"\n (elementClick)=\"onClick($event)\" (valueChange)=\"onValueChanged($event)\"\n (formValueChange)=\"onFormValueChanged($event)\" (formFieldClick)=\"onFormFieldClick($event)\"\n [isActive]=\"isActive\">\n </pep-field-generator>\n </div>\n </ng-template>\n </ng-container>\n\n <!------- For testing ------------\n {{ form.value | json }}\n {{ form.valid }}\n ---------------------------------->\n</fieldset>\n\n<ng-template #report>\n <div *ngFor=\"let field of fields$ | async; let j = index\" class=\"pull-left flip pep-report-fields\"\n [ngStyle]=\"{ width: (layout?.ControlFields)[j]?.calcColumnWidthString }\"\n [ngClass]=\"['text-align-' + field.xAlignment]\">\n <ng-container [ngSwitch]=\"field.controlType\">\n <pep-image *ngSwitchCase=\"'image'\" [uid]=\"data?.UID\" [form]=\"form\" [key]=\"field.key\"\n [src]=\"field.formattedValue\" [srcLarge]=\"field.value\" [options]=\"field.options\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [layoutType]=\"layoutType\"\n (elementClick)=\"onClick($event)\">\n </pep-image>\n\n <pep-signature *ngSwitchCase=\"'signature'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\">\n </pep-signature>\n\n <pep-checkbox *ngSwitchCase=\"'checkbox'\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"(field.value | lowercase) == 'true' || field.value == '1' ? true : false\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [additionalValue]=\"field.additionalValue\" [layoutType]=\"layoutType\">\n </pep-checkbox>\n\n <pep-date *ngSwitchCase=\"'date'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [minValue]=\"field.minValue\" [maxValue]=\"field.maxValue\" [layoutType]=\"layoutType\">\n </pep-date>\n\n <pep-internal-button *ngSwitchCase=\"'button'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [layoutType]=\"layoutType\" (elementClick)=\"onClick($event)\">\n </pep-internal-button>\n\n <pep-textarea *ngSwitchCase=\"'textarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [maxFieldCharacters]=\"field.maxFieldCharacters\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\">\n </pep-textarea>\n\n <pep-quantity-selector *ngSwitchCase=\"'qs'\" [id]=\"field.key\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"field.value\" [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\" (valueChange)=\"onValueChanged($event)\" (elementClick)=\"onClick($event)\">\n </pep-quantity-selector>\n\n <ng-container *ngSwitchDefault>\n <ng-container *ngIf=\"field.formattedValue?.length > 0; then notEmptyBlock; else emptyBlock\">\n </ng-container>\n <ng-template #notEmptyBlock>\n <ng-container\n *ngIf=\"field.controlType === 'attachment' || field.type === 'link'; then linkBlock; else notLinkBlock\">\n </ng-container>\n <ng-template #linkBlock>\n <a [id]=\"field.key\" class=\"color-link body-sm pep-report-input readonly\"\n *ngIf=\"field.formattedValue != null\" title=\"{{ field.formattedValue }}\" target=\"_blank\"\n href=\"{{ field.value }}\">{{ field.formattedValue }}</a>\n </ng-template>\n <ng-template #notLinkBlock>\n <span [id]=\"field.key\" class=\"body-sm pep-report-input readonly\"\n title=\"{{ field.formattedValue }}\" [ngStyle]=\"{ color: field.textColor }\">{{\n field.formattedValue }}</span>\n </ng-template>\n </ng-template>\n <ng-template #emptyBlock>\n <span> </span>\n </ng-template>\n </ng-container>\n </ng-container>\n </div>\n</ng-template>",
|
|
1629
1596
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
1630
1597
|
styles: [":host{display:grid}"]
|
|
1631
1598
|
},] }
|
|
@@ -1654,9 +1621,9 @@
|
|
|
1654
1621
|
checkForChanges: [{ type: core.Input }],
|
|
1655
1622
|
valueChange: [{ type: core.Output }],
|
|
1656
1623
|
formValidationChange: [{ type: core.Output }],
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1624
|
+
fieldClick: [{ type: core.Output }],
|
|
1625
|
+
internalFormFieldClick: [{ type: core.Output }],
|
|
1626
|
+
internalFormFieldChange: [{ type: core.Output }]
|
|
1660
1627
|
};
|
|
1661
1628
|
|
|
1662
1629
|
var PepFieldGeneratorComponent = /** @class */ (function () {
|
|
@@ -1667,13 +1634,23 @@
|
|
|
1667
1634
|
this.showTitle = true;
|
|
1668
1635
|
this.checkForChanges = null;
|
|
1669
1636
|
this.valueChange = new core.EventEmitter();
|
|
1670
|
-
this.childChange = new core.EventEmitter();
|
|
1671
1637
|
this.formValidationChange = new core.EventEmitter();
|
|
1672
1638
|
this.elementClick = new core.EventEmitter();
|
|
1673
|
-
this.
|
|
1639
|
+
this.internalFormFieldChange = new core.EventEmitter();
|
|
1640
|
+
this.internalFormFieldClick = new core.EventEmitter();
|
|
1674
1641
|
this.formValueChange = new core.EventEmitter();
|
|
1675
1642
|
this.formFieldClick = new core.EventEmitter();
|
|
1676
1643
|
}
|
|
1644
|
+
Object.defineProperty(PepFieldGeneratorComponent.prototype, "field", {
|
|
1645
|
+
get: function () {
|
|
1646
|
+
return this._field;
|
|
1647
|
+
},
|
|
1648
|
+
set: function (value) {
|
|
1649
|
+
this._field = value;
|
|
1650
|
+
},
|
|
1651
|
+
enumerable: false,
|
|
1652
|
+
configurable: true
|
|
1653
|
+
});
|
|
1677
1654
|
Object.defineProperty(PepFieldGeneratorComponent.prototype, "isValid", {
|
|
1678
1655
|
get: function () {
|
|
1679
1656
|
if (this.field.readonly || this.field.disabled) {
|
|
@@ -1736,8 +1713,8 @@
|
|
|
1736
1713
|
};
|
|
1737
1714
|
this.valueChange.emit(fieldValueChange);
|
|
1738
1715
|
};
|
|
1739
|
-
PepFieldGeneratorComponent.prototype.
|
|
1740
|
-
this.
|
|
1716
|
+
PepFieldGeneratorComponent.prototype.onInternalFormFieldChanged = function (internalFormFieldChange) {
|
|
1717
|
+
this.internalFormFieldChange.emit(internalFormFieldChange);
|
|
1741
1718
|
};
|
|
1742
1719
|
PepFieldGeneratorComponent.prototype.onFormValidationChanged = function (formValidationChange) {
|
|
1743
1720
|
this.formValidationChange.emit(formValidationChange);
|
|
@@ -1745,8 +1722,8 @@
|
|
|
1745
1722
|
PepFieldGeneratorComponent.prototype.onClick = function (fieldClicked) {
|
|
1746
1723
|
this.elementClick.emit(fieldClicked);
|
|
1747
1724
|
};
|
|
1748
|
-
PepFieldGeneratorComponent.prototype.
|
|
1749
|
-
this.
|
|
1725
|
+
PepFieldGeneratorComponent.prototype.onInternalFormFieldClick = function (internalFormFieldClick) {
|
|
1726
|
+
this.internalFormFieldClick.emit(internalFormFieldClick);
|
|
1750
1727
|
};
|
|
1751
1728
|
PepFieldGeneratorComponent.prototype.onFormValueChanged = function (event) {
|
|
1752
1729
|
this.formValueChange.emit(event);
|
|
@@ -1764,7 +1741,7 @@
|
|
|
1764
1741
|
PepFieldGeneratorComponent.decorators = [
|
|
1765
1742
|
{ type: core.Component, args: [{
|
|
1766
1743
|
selector: 'pep-field-generator',
|
|
1767
|
-
template: "<ng-container [ngSwitch]=\"field.controlType\" [formGroup]=\"form\">\n\n <pep-address *ngSwitchCase=\"'address'\" [form]=\"form\" [key]=\"field.key\" [formattedValue]=\"field.formattedValue\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [groupFields]=\"field.groupFields\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (addressValueChange)=\"onAddressValueChanged($event, field)\">\n </pep-address>\n\n <pep-attachment *ngSwitchCase=\"'attachment'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-attachment>\n\n <pep-checkbox *ngSwitchCase=\"'checkbox'\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"(field.value | lowercase) == 'true' || field.value == '1' ? true : false\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [additionalValue]=\"field.additionalValue\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-checkbox>\n\n <pep-date *ngSwitchCase=\"'date'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [minValue]=\"field.minValue\"\n [maxValue]=\"field.maxValue\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-date>\n\n <pep-images-filmstrip *ngSwitchCase=\"'images'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [showTitle]=\"showTitle\" [rowSpan]=\"field.rowSpan\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-images-filmstrip>\n\n <pep-image *ngSwitchCase=\"'image'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.formattedValue\"\n [srcLarge]=\"field.value\" [options]=\"field.options\" [label]=\"field.label\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [indicatorsField]=\"field.indicatorsField\" [menuField]=\"field.menuField\"\n [hasCampaignField]=\"field.hasCampaignField\" [sizeLimitMB]=\"field.sizeLimitMB\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-image>\n\n <pep-quantity-selector *ngSwitchCase=\"'qs'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [allowDecimal]=\"field.allowDecimal\"\n [additionalValue]=\"field.additionalValue\" [notificationInfo]=\"field.notificationInfo\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [showTitle]=\"showTitle\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n (elementClick)=\"onClick($event)\">\n </pep-quantity-selector>\n\n <pep-rich-html-textarea *ngSwitchCase=\"'richhtmltextarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-rich-html-textarea>\n\n <pep-select *ngSwitchCase=\"'select'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [options]=\"field.options\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (valueChange)=\"onValueChanged($event, field)\"\n (formValidationChange)=\"onFormValidationChanged($event)\" [isActive]=\"isActive\">\n </pep-select>\n\n <pep-separator *ngSwitchCase=\"'separator'\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [xAlignment]=\"field.xAlignment\" [layoutType]=\"layoutType\" [visible]=\"field.visible\">\n </pep-separator>\n\n <pep-signature *ngSwitchCase=\"'signature'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [layoutType]=\"layoutType\"\n [visible]=\"field.visible\" (fileChange)=\"onFileChanged($event, field)\">\n </pep-signature>\n\n <pep-textarea *ngSwitchCase=\"'textarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-textarea>\n\n <pep-textbox *ngSwitchCase=\"'textbox'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [placeholder]=\"field.placeholder\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n [isActive]=\"isActive\" [visible]=\"field.visible\">\n </pep-textbox>\n\n <pep-indicators *ngSwitchCase=\"'indicators'\" [key]=\"field.key\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-indicators>\n <pep-internal-button *ngSwitchCase=\"'button'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\"\n [referenceObjectInternalType]=\"field.referenceObjectInternalType\" [type]=\"field.type\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (valueChange)=\"onValueChanged($event, field)\">\n </pep-internal-button>\n <pep-internal-menu *ngSwitchCase=\"'menu'\" [key]=\"field.key\" [label]=\"field.label\" [disabled]=\"field.disabled\"\n [xAlignment]=\"field.xAlignment\" [options]=\"field.options\" [layoutType]=\"layoutType\"\n (elementClick)=\"onClick($event)\">\n </pep-internal-menu>\n <pep-internal-page *ngSwitchCase=\"'internalPage'\" [field]=\"field\" [layoutType]=\"layoutType\"\n (
|
|
1744
|
+
template: "<ng-container [ngSwitch]=\"field.controlType\" [formGroup]=\"form\">\n\n <pep-address *ngSwitchCase=\"'address'\" [form]=\"form\" [key]=\"field.key\" [formattedValue]=\"field.formattedValue\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [groupFields]=\"field.groupFields\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (addressValueChange)=\"onAddressValueChanged($event, field)\">\n </pep-address>\n\n <pep-attachment *ngSwitchCase=\"'attachment'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-attachment>\n\n <pep-checkbox *ngSwitchCase=\"'checkbox'\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"(field.value | lowercase) == 'true' || field.value == '1' ? true : false\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [additionalValue]=\"field.additionalValue\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-checkbox>\n\n <pep-date *ngSwitchCase=\"'date'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [minValue]=\"field.minValue\"\n [maxValue]=\"field.maxValue\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-date>\n\n <pep-images-filmstrip *ngSwitchCase=\"'images'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [showTitle]=\"showTitle\" [rowSpan]=\"field.rowSpan\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-images-filmstrip>\n\n <pep-image *ngSwitchCase=\"'image'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.formattedValue\"\n [srcLarge]=\"field.value\" [options]=\"field.options\" [label]=\"field.label\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [indicatorsField]=\"field.indicatorsField\" [menuField]=\"field.menuField\"\n [hasCampaignField]=\"field.hasCampaignField\" [sizeLimitMB]=\"field.sizeLimitMB\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-image>\n\n <pep-quantity-selector *ngSwitchCase=\"'qs'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [allowDecimal]=\"field.allowDecimal\"\n [additionalValue]=\"field.additionalValue\" [notificationInfo]=\"field.notificationInfo\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [showTitle]=\"showTitle\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n (elementClick)=\"onClick($event)\">\n </pep-quantity-selector>\n\n <pep-rich-html-textarea *ngSwitchCase=\"'richhtmltextarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-rich-html-textarea>\n\n <pep-select *ngSwitchCase=\"'select'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [options]=\"field.options\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (valueChange)=\"onValueChanged($event, field)\"\n (formValidationChange)=\"onFormValidationChanged($event)\" [isActive]=\"isActive\">\n </pep-select>\n\n <pep-separator *ngSwitchCase=\"'separator'\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [xAlignment]=\"field.xAlignment\" [layoutType]=\"layoutType\" [visible]=\"field.visible\">\n </pep-separator>\n\n <pep-signature *ngSwitchCase=\"'signature'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [layoutType]=\"layoutType\"\n [visible]=\"field.visible\" (fileChange)=\"onFileChanged($event, field)\">\n </pep-signature>\n\n <pep-textarea *ngSwitchCase=\"'textarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-textarea>\n\n <pep-textbox *ngSwitchCase=\"'textbox'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [placeholder]=\"field.placeholder\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n [isActive]=\"isActive\" [visible]=\"field.visible\">\n </pep-textbox>\n\n <pep-indicators *ngSwitchCase=\"'indicators'\" [key]=\"field.key\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-indicators>\n <pep-internal-button *ngSwitchCase=\"'button'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\"\n [referenceObjectInternalType]=\"field.referenceObjectInternalType\" [type]=\"field.type\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (valueChange)=\"onValueChanged($event, field)\">\n </pep-internal-button>\n <pep-internal-menu *ngSwitchCase=\"'menu'\" [key]=\"field.key\" [label]=\"field.label\" [disabled]=\"field.disabled\"\n [xAlignment]=\"field.xAlignment\" [options]=\"field.options\" [layoutType]=\"layoutType\"\n (elementClick)=\"onClick($event)\">\n </pep-internal-menu>\n <pep-internal-page *ngSwitchCase=\"'internalPage'\" [field]=\"field\" [layoutType]=\"layoutType\"\n (internalFormFieldClick)=\"onInternalFormFieldClick($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\">\n </pep-internal-page>\n\n <pep-internal-carusel *ngSwitchCase=\"'internalCarusel'\" [field]=\"field\"\n (internalFormFieldClick)=\"onInternalFormFieldClick($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\">\n </pep-internal-carusel>\n\n <ng-container *ngSwitchCase=\"'placeholder'\">\n </ng-container>\n</ng-container>",
|
|
1768
1745
|
encapsulation: core.ViewEncapsulation.Emulated,
|
|
1769
1746
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
1770
1747
|
styles: [":host{width:100%;height:100%}"]
|
|
@@ -1779,10 +1756,10 @@
|
|
|
1779
1756
|
showTitle: [{ type: core.Input }],
|
|
1780
1757
|
checkForChanges: [{ type: core.Input }],
|
|
1781
1758
|
valueChange: [{ type: core.Output }],
|
|
1782
|
-
childChange: [{ type: core.Output }],
|
|
1783
1759
|
formValidationChange: [{ type: core.Output }],
|
|
1784
1760
|
elementClick: [{ type: core.Output }],
|
|
1785
|
-
|
|
1761
|
+
internalFormFieldChange: [{ type: core.Output }],
|
|
1762
|
+
internalFormFieldClick: [{ type: core.Output }],
|
|
1786
1763
|
formValueChange: [{ type: core.Output }],
|
|
1787
1764
|
formFieldClick: [{ type: core.Output }]
|
|
1788
1765
|
};
|
|
@@ -2664,8 +2641,8 @@
|
|
|
2664
2641
|
this.changeDetectorRef = changeDetectorRef;
|
|
2665
2642
|
this.controlType = 'internalPage';
|
|
2666
2643
|
this.layoutType = 'form';
|
|
2667
|
-
this.
|
|
2668
|
-
this.
|
|
2644
|
+
this.internalFormFieldChange = new core.EventEmitter();
|
|
2645
|
+
this.internalFormFieldClick = new core.EventEmitter();
|
|
2669
2646
|
this.checkForChanges = null;
|
|
2670
2647
|
this.childData = null;
|
|
2671
2648
|
this.totalsRow = [];
|
|
@@ -2984,7 +2961,7 @@
|
|
|
2984
2961
|
this.setTotalsRow();
|
|
2985
2962
|
this.checkForChanges = new Date();
|
|
2986
2963
|
// DI-15985
|
|
2987
|
-
this.
|
|
2964
|
+
this.internalFormFieldChange.emit(res);
|
|
2988
2965
|
this.changeDetectorRef.markForCheck();
|
|
2989
2966
|
};
|
|
2990
2967
|
PepInternalPageComponent.prototype.onCustomizeObjectChanged = function (customizeObjectChangedData) {
|
|
@@ -3012,7 +2989,7 @@
|
|
|
3012
2989
|
}
|
|
3013
2990
|
}
|
|
3014
2991
|
if (!handledEvent) {
|
|
3015
|
-
this.
|
|
2992
|
+
this.internalFormFieldClick.emit(fieldClickEvent);
|
|
3016
2993
|
}
|
|
3017
2994
|
};
|
|
3018
2995
|
return PepInternalPageComponent;
|
|
@@ -3038,8 +3015,8 @@
|
|
|
3038
3015
|
PepInternalPageComponent.propDecorators = {
|
|
3039
3016
|
field: [{ type: core.Input }],
|
|
3040
3017
|
layoutType: [{ type: core.Input }],
|
|
3041
|
-
|
|
3042
|
-
|
|
3018
|
+
internalFormFieldChange: [{ type: core.Output }],
|
|
3019
|
+
internalFormFieldClick: [{ type: core.Output }],
|
|
3043
3020
|
my1mm: [{ type: core.ViewChild, args: ['my1mm',] }],
|
|
3044
3021
|
mainViewCont: [{ type: core.ViewChild, args: ['mainViewCont',] }],
|
|
3045
3022
|
orgCont: [{ type: core.ViewChild, args: ['orgCont', { read: core.ViewContainerRef },] }],
|
|
@@ -3052,19 +3029,19 @@
|
|
|
3052
3029
|
var PepInternalCaruselService = /** @class */ (function () {
|
|
3053
3030
|
function PepInternalCaruselService(httpService) {
|
|
3054
3031
|
this.httpService = httpService;
|
|
3055
|
-
this.
|
|
3056
|
-
this.additionalApiName = '';
|
|
3057
|
-
this.transactionUrl = 'Service1.svc/v1/OrderCenter/Transaction/';
|
|
3032
|
+
this.eventUrl = 'Service1.svc/v1/EmitEvent';
|
|
3058
3033
|
}
|
|
3059
|
-
PepInternalCaruselService.prototype.
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3034
|
+
PepInternalCaruselService.prototype.emitEvent = function (uiObjectKey, fieldKey, fieldValue, eventName, callbackFunc) {
|
|
3035
|
+
var body = {
|
|
3036
|
+
'EventKey': eventName,
|
|
3037
|
+
'EventData': JSON.stringify({
|
|
3038
|
+
UIObjectKey: uiObjectKey,
|
|
3039
|
+
FieldID: fieldKey,
|
|
3040
|
+
Value: fieldValue
|
|
3041
|
+
})
|
|
3042
|
+
};
|
|
3043
|
+
this.httpService.postWapiApiCall("" + this.eventUrl, body).subscribe(function (res) {
|
|
3044
|
+
console.log(res);
|
|
3068
3045
|
callbackFunc(res);
|
|
3069
3046
|
}
|
|
3070
3047
|
// (error) => {},
|
|
@@ -3086,8 +3063,8 @@
|
|
|
3086
3063
|
this.layoutService = layoutService;
|
|
3087
3064
|
this.internalCaruselService = internalCaruselService;
|
|
3088
3065
|
this.layoutType = 'form';
|
|
3089
|
-
this.
|
|
3090
|
-
this.
|
|
3066
|
+
this.internalFormFieldChange = new core.EventEmitter();
|
|
3067
|
+
this.internalFormFieldClick = new core.EventEmitter();
|
|
3091
3068
|
this._items = null;
|
|
3092
3069
|
this.layout = null;
|
|
3093
3070
|
this.duration = 1000;
|
|
@@ -3096,6 +3073,21 @@
|
|
|
3096
3073
|
this.nextDisabled = false;
|
|
3097
3074
|
this.PepScreenSizeType = ngxLib.PepScreenSizeType;
|
|
3098
3075
|
}
|
|
3076
|
+
Object.defineProperty(PepInternalCaruselComponent.prototype, "field", {
|
|
3077
|
+
get: function () {
|
|
3078
|
+
return this._field;
|
|
3079
|
+
},
|
|
3080
|
+
set: function (value) {
|
|
3081
|
+
this._field = value;
|
|
3082
|
+
var caruselField = this._field;
|
|
3083
|
+
if (caruselField && caruselField.pageInfo) {
|
|
3084
|
+
this.layout = caruselField.pageInfo.UIControl;
|
|
3085
|
+
this.items = caruselField.pageInfo.Rows;
|
|
3086
|
+
}
|
|
3087
|
+
},
|
|
3088
|
+
enumerable: false,
|
|
3089
|
+
configurable: true
|
|
3090
|
+
});
|
|
3099
3091
|
Object.defineProperty(PepInternalCaruselComponent.prototype, "items", {
|
|
3100
3092
|
get: function () {
|
|
3101
3093
|
return this._items;
|
|
@@ -3108,17 +3100,6 @@
|
|
|
3108
3100
|
configurable: true
|
|
3109
3101
|
});
|
|
3110
3102
|
PepInternalCaruselComponent.prototype.ngOnInit = function () {
|
|
3111
|
-
// this.internalCaruselService.initCarusel(
|
|
3112
|
-
// this.field.objectId,
|
|
3113
|
-
// this.field.searchCode,
|
|
3114
|
-
// (caruselItems: any) => {
|
|
3115
|
-
var caruselField = this.field;
|
|
3116
|
-
if (caruselField) {
|
|
3117
|
-
this.layout = caruselField.pageInfo.UIControl;
|
|
3118
|
-
this.items = caruselField.pageInfo.Rows;
|
|
3119
|
-
}
|
|
3120
|
-
// }
|
|
3121
|
-
// );
|
|
3122
3103
|
};
|
|
3123
3104
|
PepInternalCaruselComponent.prototype.ngAfterViewInit = function () {
|
|
3124
3105
|
var _this = this;
|
|
@@ -3127,10 +3108,32 @@
|
|
|
3127
3108
|
});
|
|
3128
3109
|
};
|
|
3129
3110
|
PepInternalCaruselComponent.prototype.onCustomizeObjectChanged = function (customizeObjectChangedData) {
|
|
3130
|
-
this
|
|
3111
|
+
var _this = this;
|
|
3112
|
+
this.internalCaruselService.emitEvent(customizeObjectChangedData.uiObjectKey, customizeObjectChangedData.key, customizeObjectChangedData.value, 'SetFieldValue', function () {
|
|
3113
|
+
_this.internalFormFieldChange.emit(customizeObjectChangedData);
|
|
3114
|
+
});
|
|
3131
3115
|
};
|
|
3132
3116
|
PepInternalCaruselComponent.prototype.onCustomizeFieldClick = function (fieldClickEvent) {
|
|
3133
|
-
this
|
|
3117
|
+
var _this = this;
|
|
3118
|
+
var handledEvent = false;
|
|
3119
|
+
// For the new custom form, the plus and minus events transform in the IPepFormFieldValueChangeEvent
|
|
3120
|
+
if (fieldClickEvent.controlType === 'qs') {
|
|
3121
|
+
if (fieldClickEvent.value === quantitySelector.PepQuantitySelectorComponent.PLUS) {
|
|
3122
|
+
handledEvent = true;
|
|
3123
|
+
this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'IncrementFieldValue', function () {
|
|
3124
|
+
_this.internalFormFieldChange.emit({});
|
|
3125
|
+
});
|
|
3126
|
+
}
|
|
3127
|
+
else if (fieldClickEvent.value === quantitySelector.PepQuantitySelectorComponent.MINUS) {
|
|
3128
|
+
handledEvent = true;
|
|
3129
|
+
this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'DecrementFieldValue', function () {
|
|
3130
|
+
_this.internalFormFieldChange.emit({});
|
|
3131
|
+
});
|
|
3132
|
+
}
|
|
3133
|
+
}
|
|
3134
|
+
if (!handledEvent) {
|
|
3135
|
+
this.internalFormFieldClick.emit(fieldClickEvent);
|
|
3136
|
+
}
|
|
3134
3137
|
};
|
|
3135
3138
|
PepInternalCaruselComponent.prototype.moveLeft = function () {
|
|
3136
3139
|
var indexToMove = Math.max(this.carousel.currIndex - this.itemsToMove, 0);
|
|
@@ -3171,3136 +3174,8 @@
|
|
|
3171
3174
|
carousel: [{ type: core.ViewChild, args: ['carousel', { read: carousel.PepCarouselComponent },] }],
|
|
3172
3175
|
field: [{ type: core.Input }],
|
|
3173
3176
|
layoutType: [{ type: core.Input }],
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
};
|
|
3177
|
-
var TempRelatedItems = {
|
|
3178
|
-
"Rows": [
|
|
3179
|
-
{
|
|
3180
|
-
"AdditionalData": null,
|
|
3181
|
-
"BackgroundColor": "",
|
|
3182
|
-
"Fields": [
|
|
3183
|
-
{
|
|
3184
|
-
"Accessory": "",
|
|
3185
|
-
"AdditionalValue": "",
|
|
3186
|
-
"ApiName": "ItemTSAType",
|
|
3187
|
-
"BackgroundColor": "",
|
|
3188
|
-
"Enabled": false,
|
|
3189
|
-
"EventsData": null,
|
|
3190
|
-
"FieldType": 1,
|
|
3191
|
-
"FormattedValue": "Accessories",
|
|
3192
|
-
"GroupFields": null,
|
|
3193
|
-
"Highlighted": false,
|
|
3194
|
-
"NotificationInfo": "",
|
|
3195
|
-
"OptionalValues": [],
|
|
3196
|
-
"ReferenceObjectInternalType": "",
|
|
3197
|
-
"ReferenceObjectSubType": "",
|
|
3198
|
-
"ReferenceObjectType": 2129893312,
|
|
3199
|
-
"TextColor": "",
|
|
3200
|
-
"UiPageKey": "",
|
|
3201
|
-
"Value": "Accessories",
|
|
3202
|
-
"Visible": true
|
|
3203
|
-
},
|
|
3204
|
-
{
|
|
3205
|
-
"Accessory": "",
|
|
3206
|
-
"AdditionalValue": "",
|
|
3207
|
-
"ApiName": "ObjectMenu",
|
|
3208
|
-
"BackgroundColor": "",
|
|
3209
|
-
"Enabled": true,
|
|
3210
|
-
"EventsData": null,
|
|
3211
|
-
"FieldType": 17,
|
|
3212
|
-
"FormattedValue": "",
|
|
3213
|
-
"GroupFields": null,
|
|
3214
|
-
"Highlighted": false,
|
|
3215
|
-
"NotificationInfo": "",
|
|
3216
|
-
"OptionalValues": [],
|
|
3217
|
-
"ReferenceObjectInternalType": "",
|
|
3218
|
-
"ReferenceObjectSubType": "",
|
|
3219
|
-
"ReferenceObjectType": 0,
|
|
3220
|
-
"TextColor": "",
|
|
3221
|
-
"UiPageKey": "",
|
|
3222
|
-
"Value": "",
|
|
3223
|
-
"Visible": true
|
|
3224
|
-
},
|
|
3225
|
-
{
|
|
3226
|
-
"Accessory": "",
|
|
3227
|
-
"AdditionalValue": "",
|
|
3228
|
-
"ApiName": "TSARelteadItems",
|
|
3229
|
-
"BackgroundColor": "",
|
|
3230
|
-
"Enabled": true,
|
|
3231
|
-
"EventsData": null,
|
|
3232
|
-
"FieldType": 1,
|
|
3233
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3234
|
-
"GroupFields": null,
|
|
3235
|
-
"Highlighted": false,
|
|
3236
|
-
"NotificationInfo": "",
|
|
3237
|
-
"OptionalValues": [],
|
|
3238
|
-
"ReferenceObjectInternalType": "",
|
|
3239
|
-
"ReferenceObjectSubType": "",
|
|
3240
|
-
"ReferenceObjectType": 0,
|
|
3241
|
-
"TextColor": "",
|
|
3242
|
-
"UiPageKey": "",
|
|
3243
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3244
|
-
"Visible": true
|
|
3245
|
-
},
|
|
3246
|
-
{
|
|
3247
|
-
"Accessory": "",
|
|
3248
|
-
"AdditionalValue": "",
|
|
3249
|
-
"ApiName": "Image",
|
|
3250
|
-
"BackgroundColor": "",
|
|
3251
|
-
"Enabled": false,
|
|
3252
|
-
"EventsData": null,
|
|
3253
|
-
"FieldType": 27,
|
|
3254
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
|
|
3255
|
-
"GroupFields": null,
|
|
3256
|
-
"Highlighted": false,
|
|
3257
|
-
"NotificationInfo": "",
|
|
3258
|
-
"OptionalValues": [],
|
|
3259
|
-
"ReferenceObjectInternalType": "",
|
|
3260
|
-
"ReferenceObjectSubType": "",
|
|
3261
|
-
"ReferenceObjectType": -1,
|
|
3262
|
-
"TextColor": "",
|
|
3263
|
-
"UiPageKey": "",
|
|
3264
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
|
|
3265
|
-
"Visible": true
|
|
3266
|
-
},
|
|
3267
|
-
{
|
|
3268
|
-
"Accessory": "",
|
|
3269
|
-
"AdditionalValue": "",
|
|
3270
|
-
"ApiName": "ItemName",
|
|
3271
|
-
"BackgroundColor": "",
|
|
3272
|
-
"Enabled": false,
|
|
3273
|
-
"EventsData": null,
|
|
3274
|
-
"FieldType": 1,
|
|
3275
|
-
"FormattedValue": "Wool Hat",
|
|
3276
|
-
"GroupFields": null,
|
|
3277
|
-
"Highlighted": false,
|
|
3278
|
-
"NotificationInfo": "",
|
|
3279
|
-
"OptionalValues": [],
|
|
3280
|
-
"ReferenceObjectInternalType": "",
|
|
3281
|
-
"ReferenceObjectSubType": "",
|
|
3282
|
-
"ReferenceObjectType": 2129890288,
|
|
3283
|
-
"TextColor": "",
|
|
3284
|
-
"UiPageKey": "",
|
|
3285
|
-
"Value": "Wool Hat",
|
|
3286
|
-
"Visible": true
|
|
3287
|
-
},
|
|
3288
|
-
{
|
|
3289
|
-
"Accessory": "",
|
|
3290
|
-
"AdditionalValue": "",
|
|
3291
|
-
"ApiName": "ItemExternalID",
|
|
3292
|
-
"BackgroundColor": "",
|
|
3293
|
-
"Enabled": false,
|
|
3294
|
-
"EventsData": null,
|
|
3295
|
-
"FieldType": 1,
|
|
3296
|
-
"FormattedValue": "HT3002",
|
|
3297
|
-
"GroupFields": null,
|
|
3298
|
-
"Highlighted": false,
|
|
3299
|
-
"NotificationInfo": "",
|
|
3300
|
-
"OptionalValues": [],
|
|
3301
|
-
"ReferenceObjectInternalType": "",
|
|
3302
|
-
"ReferenceObjectSubType": "",
|
|
3303
|
-
"ReferenceObjectType": 0,
|
|
3304
|
-
"TextColor": "",
|
|
3305
|
-
"UiPageKey": "",
|
|
3306
|
-
"Value": "HT3002",
|
|
3307
|
-
"Visible": true
|
|
3308
|
-
},
|
|
3309
|
-
{
|
|
3310
|
-
"Accessory": "$",
|
|
3311
|
-
"AdditionalValue": "",
|
|
3312
|
-
"ApiName": "ItemPrice",
|
|
3313
|
-
"BackgroundColor": "",
|
|
3314
|
-
"Enabled": false,
|
|
3315
|
-
"EventsData": null,
|
|
3316
|
-
"FieldType": 9,
|
|
3317
|
-
"FormattedValue": "$23.00",
|
|
3318
|
-
"GroupFields": null,
|
|
3319
|
-
"Highlighted": false,
|
|
3320
|
-
"NotificationInfo": "",
|
|
3321
|
-
"OptionalValues": [],
|
|
3322
|
-
"ReferenceObjectInternalType": "",
|
|
3323
|
-
"ReferenceObjectSubType": "",
|
|
3324
|
-
"ReferenceObjectType": 2129896912,
|
|
3325
|
-
"TextColor": "",
|
|
3326
|
-
"UiPageKey": "",
|
|
3327
|
-
"Value": "23.0000",
|
|
3328
|
-
"Visible": true
|
|
3329
|
-
},
|
|
3330
|
-
{
|
|
3331
|
-
"Accessory": "",
|
|
3332
|
-
"AdditionalValue": "",
|
|
3333
|
-
"ApiName": "UnitsQuantity",
|
|
3334
|
-
"BackgroundColor": "",
|
|
3335
|
-
"Enabled": true,
|
|
3336
|
-
"EventsData": null,
|
|
3337
|
-
"FieldType": 28,
|
|
3338
|
-
"FormattedValue": "0",
|
|
3339
|
-
"GroupFields": null,
|
|
3340
|
-
"Highlighted": false,
|
|
3341
|
-
"NotificationInfo": "",
|
|
3342
|
-
"OptionalValues": [],
|
|
3343
|
-
"ReferenceObjectInternalType": "",
|
|
3344
|
-
"ReferenceObjectSubType": "",
|
|
3345
|
-
"ReferenceObjectType": 0,
|
|
3346
|
-
"TextColor": "",
|
|
3347
|
-
"UiPageKey": "",
|
|
3348
|
-
"Value": "0.0000",
|
|
3349
|
-
"Visible": true
|
|
3350
|
-
},
|
|
3351
|
-
{
|
|
3352
|
-
"Accessory": "",
|
|
3353
|
-
"AdditionalValue": "",
|
|
3354
|
-
"ApiName": "ItemTSASeason",
|
|
3355
|
-
"BackgroundColor": "",
|
|
3356
|
-
"Enabled": false,
|
|
3357
|
-
"EventsData": null,
|
|
3358
|
-
"FieldType": 1,
|
|
3359
|
-
"FormattedValue": "Fall",
|
|
3360
|
-
"GroupFields": null,
|
|
3361
|
-
"Highlighted": false,
|
|
3362
|
-
"NotificationInfo": "",
|
|
3363
|
-
"OptionalValues": [],
|
|
3364
|
-
"ReferenceObjectInternalType": "",
|
|
3365
|
-
"ReferenceObjectSubType": "",
|
|
3366
|
-
"ReferenceObjectType": 0,
|
|
3367
|
-
"TextColor": "",
|
|
3368
|
-
"UiPageKey": "",
|
|
3369
|
-
"Value": "Fall",
|
|
3370
|
-
"Visible": true
|
|
3371
|
-
},
|
|
3372
|
-
{
|
|
3373
|
-
"Accessory": "",
|
|
3374
|
-
"AdditionalValue": "",
|
|
3375
|
-
"ApiName": "ItemTSAPackaging",
|
|
3376
|
-
"BackgroundColor": "",
|
|
3377
|
-
"Enabled": false,
|
|
3378
|
-
"EventsData": null,
|
|
3379
|
-
"FieldType": 1,
|
|
3380
|
-
"FormattedValue": "B",
|
|
3381
|
-
"GroupFields": null,
|
|
3382
|
-
"Highlighted": false,
|
|
3383
|
-
"NotificationInfo": "",
|
|
3384
|
-
"OptionalValues": [],
|
|
3385
|
-
"ReferenceObjectInternalType": "",
|
|
3386
|
-
"ReferenceObjectSubType": "",
|
|
3387
|
-
"ReferenceObjectType": -1218391789,
|
|
3388
|
-
"TextColor": "",
|
|
3389
|
-
"UiPageKey": "",
|
|
3390
|
-
"Value": "B",
|
|
3391
|
-
"Visible": true
|
|
3392
|
-
}
|
|
3393
|
-
],
|
|
3394
|
-
"IsEditable": false,
|
|
3395
|
-
"IsSelectableForActions": false,
|
|
3396
|
-
"MainAction": null,
|
|
3397
|
-
"Profile": null,
|
|
3398
|
-
"Type": 0,
|
|
3399
|
-
"UID": "56d8015b-705c-4a1d-9db9-8926fad4bc48"
|
|
3400
|
-
},
|
|
3401
|
-
{
|
|
3402
|
-
"AdditionalData": null,
|
|
3403
|
-
"BackgroundColor": "",
|
|
3404
|
-
"Fields": [
|
|
3405
|
-
{
|
|
3406
|
-
"Accessory": "",
|
|
3407
|
-
"AdditionalValue": "",
|
|
3408
|
-
"ApiName": "ItemTSAType",
|
|
3409
|
-
"BackgroundColor": "",
|
|
3410
|
-
"Enabled": false,
|
|
3411
|
-
"EventsData": null,
|
|
3412
|
-
"FieldType": 1,
|
|
3413
|
-
"FormattedValue": "Accessories",
|
|
3414
|
-
"GroupFields": null,
|
|
3415
|
-
"Highlighted": false,
|
|
3416
|
-
"NotificationInfo": "",
|
|
3417
|
-
"OptionalValues": [],
|
|
3418
|
-
"ReferenceObjectInternalType": "",
|
|
3419
|
-
"ReferenceObjectSubType": "",
|
|
3420
|
-
"ReferenceObjectType": -1,
|
|
3421
|
-
"TextColor": "",
|
|
3422
|
-
"UiPageKey": "",
|
|
3423
|
-
"Value": "Accessories",
|
|
3424
|
-
"Visible": true
|
|
3425
|
-
},
|
|
3426
|
-
{
|
|
3427
|
-
"Accessory": "",
|
|
3428
|
-
"AdditionalValue": "",
|
|
3429
|
-
"ApiName": "ObjectMenu",
|
|
3430
|
-
"BackgroundColor": "",
|
|
3431
|
-
"Enabled": true,
|
|
3432
|
-
"EventsData": null,
|
|
3433
|
-
"FieldType": 17,
|
|
3434
|
-
"FormattedValue": "",
|
|
3435
|
-
"GroupFields": null,
|
|
3436
|
-
"Highlighted": false,
|
|
3437
|
-
"NotificationInfo": "",
|
|
3438
|
-
"OptionalValues": [],
|
|
3439
|
-
"ReferenceObjectInternalType": "",
|
|
3440
|
-
"ReferenceObjectSubType": "",
|
|
3441
|
-
"ReferenceObjectType": 0,
|
|
3442
|
-
"TextColor": "",
|
|
3443
|
-
"UiPageKey": "",
|
|
3444
|
-
"Value": "",
|
|
3445
|
-
"Visible": true
|
|
3446
|
-
},
|
|
3447
|
-
{
|
|
3448
|
-
"Accessory": "",
|
|
3449
|
-
"AdditionalValue": "",
|
|
3450
|
-
"ApiName": "TSARelteadItems",
|
|
3451
|
-
"BackgroundColor": "",
|
|
3452
|
-
"Enabled": true,
|
|
3453
|
-
"EventsData": null,
|
|
3454
|
-
"FieldType": 1,
|
|
3455
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3456
|
-
"GroupFields": null,
|
|
3457
|
-
"Highlighted": false,
|
|
3458
|
-
"NotificationInfo": "",
|
|
3459
|
-
"OptionalValues": [],
|
|
3460
|
-
"ReferenceObjectInternalType": "",
|
|
3461
|
-
"ReferenceObjectSubType": "",
|
|
3462
|
-
"ReferenceObjectType": 0,
|
|
3463
|
-
"TextColor": "",
|
|
3464
|
-
"UiPageKey": "",
|
|
3465
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3466
|
-
"Visible": true
|
|
3467
|
-
},
|
|
3468
|
-
{
|
|
3469
|
-
"Accessory": "",
|
|
3470
|
-
"AdditionalValue": "",
|
|
3471
|
-
"ApiName": "Image",
|
|
3472
|
-
"BackgroundColor": "",
|
|
3473
|
-
"Enabled": false,
|
|
3474
|
-
"EventsData": null,
|
|
3475
|
-
"FieldType": 27,
|
|
3476
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
|
|
3477
|
-
"GroupFields": null,
|
|
3478
|
-
"Highlighted": false,
|
|
3479
|
-
"NotificationInfo": "",
|
|
3480
|
-
"OptionalValues": [],
|
|
3481
|
-
"ReferenceObjectInternalType": "",
|
|
3482
|
-
"ReferenceObjectSubType": "",
|
|
3483
|
-
"ReferenceObjectType": -1,
|
|
3484
|
-
"TextColor": "",
|
|
3485
|
-
"UiPageKey": "",
|
|
3486
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
|
|
3487
|
-
"Visible": true
|
|
3488
|
-
},
|
|
3489
|
-
{
|
|
3490
|
-
"Accessory": "",
|
|
3491
|
-
"AdditionalValue": "",
|
|
3492
|
-
"ApiName": "ItemName",
|
|
3493
|
-
"BackgroundColor": "",
|
|
3494
|
-
"Enabled": false,
|
|
3495
|
-
"EventsData": null,
|
|
3496
|
-
"FieldType": 1,
|
|
3497
|
-
"FormattedValue": "Elegant Hat",
|
|
3498
|
-
"GroupFields": null,
|
|
3499
|
-
"Highlighted": false,
|
|
3500
|
-
"NotificationInfo": "",
|
|
3501
|
-
"OptionalValues": [],
|
|
3502
|
-
"ReferenceObjectInternalType": "",
|
|
3503
|
-
"ReferenceObjectSubType": "",
|
|
3504
|
-
"ReferenceObjectType": -1272524079,
|
|
3505
|
-
"TextColor": "",
|
|
3506
|
-
"UiPageKey": "",
|
|
3507
|
-
"Value": "Elegant Hat",
|
|
3508
|
-
"Visible": true
|
|
3509
|
-
},
|
|
3510
|
-
{
|
|
3511
|
-
"Accessory": "",
|
|
3512
|
-
"AdditionalValue": "",
|
|
3513
|
-
"ApiName": "ItemExternalID",
|
|
3514
|
-
"BackgroundColor": "",
|
|
3515
|
-
"Enabled": false,
|
|
3516
|
-
"EventsData": null,
|
|
3517
|
-
"FieldType": 1,
|
|
3518
|
-
"FormattedValue": "HT3003",
|
|
3519
|
-
"GroupFields": null,
|
|
3520
|
-
"Highlighted": false,
|
|
3521
|
-
"NotificationInfo": "",
|
|
3522
|
-
"OptionalValues": [],
|
|
3523
|
-
"ReferenceObjectInternalType": "",
|
|
3524
|
-
"ReferenceObjectSubType": "",
|
|
3525
|
-
"ReferenceObjectType": 2129893168,
|
|
3526
|
-
"TextColor": "",
|
|
3527
|
-
"UiPageKey": "",
|
|
3528
|
-
"Value": "HT3003",
|
|
3529
|
-
"Visible": true
|
|
3530
|
-
},
|
|
3531
|
-
{
|
|
3532
|
-
"Accessory": "$",
|
|
3533
|
-
"AdditionalValue": "",
|
|
3534
|
-
"ApiName": "ItemPrice",
|
|
3535
|
-
"BackgroundColor": "",
|
|
3536
|
-
"Enabled": false,
|
|
3537
|
-
"EventsData": null,
|
|
3538
|
-
"FieldType": 9,
|
|
3539
|
-
"FormattedValue": "$24.00",
|
|
3540
|
-
"GroupFields": null,
|
|
3541
|
-
"Highlighted": false,
|
|
3542
|
-
"NotificationInfo": "",
|
|
3543
|
-
"OptionalValues": [],
|
|
3544
|
-
"ReferenceObjectInternalType": "",
|
|
3545
|
-
"ReferenceObjectSubType": "",
|
|
3546
|
-
"ReferenceObjectType": -1230843819,
|
|
3547
|
-
"TextColor": "",
|
|
3548
|
-
"UiPageKey": "",
|
|
3549
|
-
"Value": "24.0000",
|
|
3550
|
-
"Visible": true
|
|
3551
|
-
},
|
|
3552
|
-
{
|
|
3553
|
-
"Accessory": "",
|
|
3554
|
-
"AdditionalValue": "",
|
|
3555
|
-
"ApiName": "UnitsQuantity",
|
|
3556
|
-
"BackgroundColor": "",
|
|
3557
|
-
"Enabled": true,
|
|
3558
|
-
"EventsData": null,
|
|
3559
|
-
"FieldType": 28,
|
|
3560
|
-
"FormattedValue": "0",
|
|
3561
|
-
"GroupFields": null,
|
|
3562
|
-
"Highlighted": false,
|
|
3563
|
-
"NotificationInfo": "",
|
|
3564
|
-
"OptionalValues": [],
|
|
3565
|
-
"ReferenceObjectInternalType": "",
|
|
3566
|
-
"ReferenceObjectSubType": "",
|
|
3567
|
-
"ReferenceObjectType": -1,
|
|
3568
|
-
"TextColor": "",
|
|
3569
|
-
"UiPageKey": "",
|
|
3570
|
-
"Value": "0.0000",
|
|
3571
|
-
"Visible": true
|
|
3572
|
-
},
|
|
3573
|
-
{
|
|
3574
|
-
"Accessory": "",
|
|
3575
|
-
"AdditionalValue": "",
|
|
3576
|
-
"ApiName": "ItemTSASeason",
|
|
3577
|
-
"BackgroundColor": "",
|
|
3578
|
-
"Enabled": false,
|
|
3579
|
-
"EventsData": null,
|
|
3580
|
-
"FieldType": 1,
|
|
3581
|
-
"FormattedValue": "Fall",
|
|
3582
|
-
"GroupFields": null,
|
|
3583
|
-
"Highlighted": false,
|
|
3584
|
-
"NotificationInfo": "",
|
|
3585
|
-
"OptionalValues": [],
|
|
3586
|
-
"ReferenceObjectInternalType": "",
|
|
3587
|
-
"ReferenceObjectSubType": "",
|
|
3588
|
-
"ReferenceObjectType": -1,
|
|
3589
|
-
"TextColor": "",
|
|
3590
|
-
"UiPageKey": "",
|
|
3591
|
-
"Value": "Fall",
|
|
3592
|
-
"Visible": true
|
|
3593
|
-
},
|
|
3594
|
-
{
|
|
3595
|
-
"Accessory": "",
|
|
3596
|
-
"AdditionalValue": "",
|
|
3597
|
-
"ApiName": "ItemTSAPackaging",
|
|
3598
|
-
"BackgroundColor": "",
|
|
3599
|
-
"Enabled": false,
|
|
3600
|
-
"EventsData": null,
|
|
3601
|
-
"FieldType": 1,
|
|
3602
|
-
"FormattedValue": "C",
|
|
3603
|
-
"GroupFields": null,
|
|
3604
|
-
"Highlighted": false,
|
|
3605
|
-
"NotificationInfo": "",
|
|
3606
|
-
"OptionalValues": [],
|
|
3607
|
-
"ReferenceObjectInternalType": "",
|
|
3608
|
-
"ReferenceObjectSubType": "",
|
|
3609
|
-
"ReferenceObjectType": 0,
|
|
3610
|
-
"TextColor": "",
|
|
3611
|
-
"UiPageKey": "",
|
|
3612
|
-
"Value": "C",
|
|
3613
|
-
"Visible": true
|
|
3614
|
-
}
|
|
3615
|
-
],
|
|
3616
|
-
"IsEditable": false,
|
|
3617
|
-
"IsSelectableForActions": false,
|
|
3618
|
-
"MainAction": null,
|
|
3619
|
-
"Profile": null,
|
|
3620
|
-
"Type": 0,
|
|
3621
|
-
"UID": "32fca2a8-9882-44e3-a9e2-fb98d4282529"
|
|
3622
|
-
},
|
|
3623
|
-
{
|
|
3624
|
-
"AdditionalData": null,
|
|
3625
|
-
"BackgroundColor": "",
|
|
3626
|
-
"Fields": [
|
|
3627
|
-
{
|
|
3628
|
-
"Accessory": "",
|
|
3629
|
-
"AdditionalValue": "",
|
|
3630
|
-
"ApiName": "ItemTSAType",
|
|
3631
|
-
"BackgroundColor": "",
|
|
3632
|
-
"Enabled": false,
|
|
3633
|
-
"EventsData": null,
|
|
3634
|
-
"FieldType": 1,
|
|
3635
|
-
"FormattedValue": "Accessories",
|
|
3636
|
-
"GroupFields": null,
|
|
3637
|
-
"Highlighted": false,
|
|
3638
|
-
"NotificationInfo": "",
|
|
3639
|
-
"OptionalValues": [],
|
|
3640
|
-
"ReferenceObjectInternalType": "",
|
|
3641
|
-
"ReferenceObjectSubType": "",
|
|
3642
|
-
"ReferenceObjectType": 14,
|
|
3643
|
-
"TextColor": "",
|
|
3644
|
-
"UiPageKey": "",
|
|
3645
|
-
"Value": "Accessories",
|
|
3646
|
-
"Visible": true
|
|
3647
|
-
},
|
|
3648
|
-
{
|
|
3649
|
-
"Accessory": "",
|
|
3650
|
-
"AdditionalValue": "",
|
|
3651
|
-
"ApiName": "ObjectMenu",
|
|
3652
|
-
"BackgroundColor": "",
|
|
3653
|
-
"Enabled": true,
|
|
3654
|
-
"EventsData": null,
|
|
3655
|
-
"FieldType": 17,
|
|
3656
|
-
"FormattedValue": "",
|
|
3657
|
-
"GroupFields": null,
|
|
3658
|
-
"Highlighted": false,
|
|
3659
|
-
"NotificationInfo": "",
|
|
3660
|
-
"OptionalValues": [],
|
|
3661
|
-
"ReferenceObjectInternalType": "",
|
|
3662
|
-
"ReferenceObjectSubType": "",
|
|
3663
|
-
"ReferenceObjectType": 2129897584,
|
|
3664
|
-
"TextColor": "",
|
|
3665
|
-
"UiPageKey": "",
|
|
3666
|
-
"Value": "",
|
|
3667
|
-
"Visible": true
|
|
3668
|
-
},
|
|
3669
|
-
{
|
|
3670
|
-
"Accessory": "",
|
|
3671
|
-
"AdditionalValue": "",
|
|
3672
|
-
"ApiName": "TSARelteadItems",
|
|
3673
|
-
"BackgroundColor": "",
|
|
3674
|
-
"Enabled": true,
|
|
3675
|
-
"EventsData": null,
|
|
3676
|
-
"FieldType": 1,
|
|
3677
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3678
|
-
"GroupFields": null,
|
|
3679
|
-
"Highlighted": false,
|
|
3680
|
-
"NotificationInfo": "",
|
|
3681
|
-
"OptionalValues": [],
|
|
3682
|
-
"ReferenceObjectInternalType": "",
|
|
3683
|
-
"ReferenceObjectSubType": "",
|
|
3684
|
-
"ReferenceObjectType": 0,
|
|
3685
|
-
"TextColor": "",
|
|
3686
|
-
"UiPageKey": "",
|
|
3687
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3688
|
-
"Visible": true
|
|
3689
|
-
},
|
|
3690
|
-
{
|
|
3691
|
-
"Accessory": "",
|
|
3692
|
-
"AdditionalValue": "",
|
|
3693
|
-
"ApiName": "Image",
|
|
3694
|
-
"BackgroundColor": "",
|
|
3695
|
-
"Enabled": false,
|
|
3696
|
-
"EventsData": null,
|
|
3697
|
-
"FieldType": 27,
|
|
3698
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
|
|
3699
|
-
"GroupFields": null,
|
|
3700
|
-
"Highlighted": false,
|
|
3701
|
-
"NotificationInfo": "",
|
|
3702
|
-
"OptionalValues": [],
|
|
3703
|
-
"ReferenceObjectInternalType": "",
|
|
3704
|
-
"ReferenceObjectSubType": "",
|
|
3705
|
-
"ReferenceObjectType": -1252338867,
|
|
3706
|
-
"TextColor": "",
|
|
3707
|
-
"UiPageKey": "",
|
|
3708
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
|
|
3709
|
-
"Visible": true
|
|
3710
|
-
},
|
|
3711
|
-
{
|
|
3712
|
-
"Accessory": "",
|
|
3713
|
-
"AdditionalValue": "",
|
|
3714
|
-
"ApiName": "ItemName",
|
|
3715
|
-
"BackgroundColor": "",
|
|
3716
|
-
"Enabled": false,
|
|
3717
|
-
"EventsData": null,
|
|
3718
|
-
"FieldType": 1,
|
|
3719
|
-
"FormattedValue": "Elegant Hat",
|
|
3720
|
-
"GroupFields": null,
|
|
3721
|
-
"Highlighted": false,
|
|
3722
|
-
"NotificationInfo": "",
|
|
3723
|
-
"OptionalValues": [],
|
|
3724
|
-
"ReferenceObjectInternalType": "",
|
|
3725
|
-
"ReferenceObjectSubType": "",
|
|
3726
|
-
"ReferenceObjectType": 2,
|
|
3727
|
-
"TextColor": "",
|
|
3728
|
-
"UiPageKey": "",
|
|
3729
|
-
"Value": "Elegant Hat",
|
|
3730
|
-
"Visible": true
|
|
3731
|
-
},
|
|
3732
|
-
{
|
|
3733
|
-
"Accessory": "",
|
|
3734
|
-
"AdditionalValue": "",
|
|
3735
|
-
"ApiName": "ItemExternalID",
|
|
3736
|
-
"BackgroundColor": "",
|
|
3737
|
-
"Enabled": false,
|
|
3738
|
-
"EventsData": null,
|
|
3739
|
-
"FieldType": 1,
|
|
3740
|
-
"FormattedValue": "HT3004",
|
|
3741
|
-
"GroupFields": null,
|
|
3742
|
-
"Highlighted": false,
|
|
3743
|
-
"NotificationInfo": "",
|
|
3744
|
-
"OptionalValues": [],
|
|
3745
|
-
"ReferenceObjectInternalType": "",
|
|
3746
|
-
"ReferenceObjectSubType": "",
|
|
3747
|
-
"ReferenceObjectType": 2125052912,
|
|
3748
|
-
"TextColor": "",
|
|
3749
|
-
"UiPageKey": "",
|
|
3750
|
-
"Value": "HT3004",
|
|
3751
|
-
"Visible": true
|
|
3752
|
-
},
|
|
3753
|
-
{
|
|
3754
|
-
"Accessory": "$",
|
|
3755
|
-
"AdditionalValue": "",
|
|
3756
|
-
"ApiName": "ItemPrice",
|
|
3757
|
-
"BackgroundColor": "",
|
|
3758
|
-
"Enabled": false,
|
|
3759
|
-
"EventsData": null,
|
|
3760
|
-
"FieldType": 9,
|
|
3761
|
-
"FormattedValue": "$21.00",
|
|
3762
|
-
"GroupFields": null,
|
|
3763
|
-
"Highlighted": false,
|
|
3764
|
-
"NotificationInfo": "",
|
|
3765
|
-
"OptionalValues": [],
|
|
3766
|
-
"ReferenceObjectInternalType": "",
|
|
3767
|
-
"ReferenceObjectSubType": "",
|
|
3768
|
-
"ReferenceObjectType": 0,
|
|
3769
|
-
"TextColor": "",
|
|
3770
|
-
"UiPageKey": "",
|
|
3771
|
-
"Value": "21.0000",
|
|
3772
|
-
"Visible": true
|
|
3773
|
-
},
|
|
3774
|
-
{
|
|
3775
|
-
"Accessory": "",
|
|
3776
|
-
"AdditionalValue": "",
|
|
3777
|
-
"ApiName": "UnitsQuantity",
|
|
3778
|
-
"BackgroundColor": "",
|
|
3779
|
-
"Enabled": true,
|
|
3780
|
-
"EventsData": null,
|
|
3781
|
-
"FieldType": 28,
|
|
3782
|
-
"FormattedValue": "0",
|
|
3783
|
-
"GroupFields": null,
|
|
3784
|
-
"Highlighted": false,
|
|
3785
|
-
"NotificationInfo": "",
|
|
3786
|
-
"OptionalValues": [],
|
|
3787
|
-
"ReferenceObjectInternalType": "",
|
|
3788
|
-
"ReferenceObjectSubType": "",
|
|
3789
|
-
"ReferenceObjectType": 8,
|
|
3790
|
-
"TextColor": "",
|
|
3791
|
-
"UiPageKey": "",
|
|
3792
|
-
"Value": "0.0000",
|
|
3793
|
-
"Visible": true
|
|
3794
|
-
},
|
|
3795
|
-
{
|
|
3796
|
-
"Accessory": "",
|
|
3797
|
-
"AdditionalValue": "",
|
|
3798
|
-
"ApiName": "ItemTSASeason",
|
|
3799
|
-
"BackgroundColor": "",
|
|
3800
|
-
"Enabled": false,
|
|
3801
|
-
"EventsData": null,
|
|
3802
|
-
"FieldType": 1,
|
|
3803
|
-
"FormattedValue": "Fall",
|
|
3804
|
-
"GroupFields": null,
|
|
3805
|
-
"Highlighted": false,
|
|
3806
|
-
"NotificationInfo": "",
|
|
3807
|
-
"OptionalValues": [],
|
|
3808
|
-
"ReferenceObjectInternalType": "",
|
|
3809
|
-
"ReferenceObjectSubType": "",
|
|
3810
|
-
"ReferenceObjectType": 2125050496,
|
|
3811
|
-
"TextColor": "",
|
|
3812
|
-
"UiPageKey": "",
|
|
3813
|
-
"Value": "Fall",
|
|
3814
|
-
"Visible": true
|
|
3815
|
-
},
|
|
3816
|
-
{
|
|
3817
|
-
"Accessory": "",
|
|
3818
|
-
"AdditionalValue": "",
|
|
3819
|
-
"ApiName": "ItemTSAPackaging",
|
|
3820
|
-
"BackgroundColor": "",
|
|
3821
|
-
"Enabled": false,
|
|
3822
|
-
"EventsData": null,
|
|
3823
|
-
"FieldType": 1,
|
|
3824
|
-
"FormattedValue": "C",
|
|
3825
|
-
"GroupFields": null,
|
|
3826
|
-
"Highlighted": false,
|
|
3827
|
-
"NotificationInfo": "",
|
|
3828
|
-
"OptionalValues": [],
|
|
3829
|
-
"ReferenceObjectInternalType": "",
|
|
3830
|
-
"ReferenceObjectSubType": "",
|
|
3831
|
-
"ReferenceObjectType": 2125051672,
|
|
3832
|
-
"TextColor": "",
|
|
3833
|
-
"UiPageKey": "",
|
|
3834
|
-
"Value": "C",
|
|
3835
|
-
"Visible": true
|
|
3836
|
-
}
|
|
3837
|
-
],
|
|
3838
|
-
"IsEditable": false,
|
|
3839
|
-
"IsSelectableForActions": false,
|
|
3840
|
-
"MainAction": null,
|
|
3841
|
-
"Profile": null,
|
|
3842
|
-
"Type": 0,
|
|
3843
|
-
"UID": "a76fad1a-0143-449f-9553-fa85a11d7e81"
|
|
3844
|
-
},
|
|
3845
|
-
{
|
|
3846
|
-
"AdditionalData": null,
|
|
3847
|
-
"BackgroundColor": "",
|
|
3848
|
-
"Fields": [
|
|
3849
|
-
{
|
|
3850
|
-
"Accessory": "",
|
|
3851
|
-
"AdditionalValue": "",
|
|
3852
|
-
"ApiName": "ItemTSAType",
|
|
3853
|
-
"BackgroundColor": "",
|
|
3854
|
-
"Enabled": false,
|
|
3855
|
-
"EventsData": null,
|
|
3856
|
-
"FieldType": 1,
|
|
3857
|
-
"FormattedValue": "Accessories",
|
|
3858
|
-
"GroupFields": null,
|
|
3859
|
-
"Highlighted": false,
|
|
3860
|
-
"NotificationInfo": "",
|
|
3861
|
-
"OptionalValues": [],
|
|
3862
|
-
"ReferenceObjectInternalType": "",
|
|
3863
|
-
"ReferenceObjectSubType": "",
|
|
3864
|
-
"ReferenceObjectType": 1660598050,
|
|
3865
|
-
"TextColor": "",
|
|
3866
|
-
"UiPageKey": "",
|
|
3867
|
-
"Value": "Accessories",
|
|
3868
|
-
"Visible": true
|
|
3869
|
-
},
|
|
3870
|
-
{
|
|
3871
|
-
"Accessory": "",
|
|
3872
|
-
"AdditionalValue": "",
|
|
3873
|
-
"ApiName": "ObjectMenu",
|
|
3874
|
-
"BackgroundColor": "",
|
|
3875
|
-
"Enabled": true,
|
|
3876
|
-
"EventsData": null,
|
|
3877
|
-
"FieldType": 17,
|
|
3878
|
-
"FormattedValue": "",
|
|
3879
|
-
"GroupFields": null,
|
|
3880
|
-
"Highlighted": false,
|
|
3881
|
-
"NotificationInfo": "",
|
|
3882
|
-
"OptionalValues": [],
|
|
3883
|
-
"ReferenceObjectInternalType": "",
|
|
3884
|
-
"ReferenceObjectSubType": "",
|
|
3885
|
-
"ReferenceObjectType": 0,
|
|
3886
|
-
"TextColor": "",
|
|
3887
|
-
"UiPageKey": "",
|
|
3888
|
-
"Value": "",
|
|
3889
|
-
"Visible": true
|
|
3890
|
-
},
|
|
3891
|
-
{
|
|
3892
|
-
"Accessory": "",
|
|
3893
|
-
"AdditionalValue": "",
|
|
3894
|
-
"ApiName": "TSARelteadItems",
|
|
3895
|
-
"BackgroundColor": "",
|
|
3896
|
-
"Enabled": true,
|
|
3897
|
-
"EventsData": null,
|
|
3898
|
-
"FieldType": 1,
|
|
3899
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3900
|
-
"GroupFields": null,
|
|
3901
|
-
"Highlighted": false,
|
|
3902
|
-
"NotificationInfo": "",
|
|
3903
|
-
"OptionalValues": [],
|
|
3904
|
-
"ReferenceObjectInternalType": "",
|
|
3905
|
-
"ReferenceObjectSubType": "",
|
|
3906
|
-
"ReferenceObjectType": -1591707634,
|
|
3907
|
-
"TextColor": "",
|
|
3908
|
-
"UiPageKey": "",
|
|
3909
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
3910
|
-
"Visible": true
|
|
3911
|
-
},
|
|
3912
|
-
{
|
|
3913
|
-
"Accessory": "",
|
|
3914
|
-
"AdditionalValue": "",
|
|
3915
|
-
"ApiName": "Image",
|
|
3916
|
-
"BackgroundColor": "",
|
|
3917
|
-
"Enabled": false,
|
|
3918
|
-
"EventsData": null,
|
|
3919
|
-
"FieldType": 27,
|
|
3920
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
|
|
3921
|
-
"GroupFields": null,
|
|
3922
|
-
"Highlighted": false,
|
|
3923
|
-
"NotificationInfo": "",
|
|
3924
|
-
"OptionalValues": [],
|
|
3925
|
-
"ReferenceObjectInternalType": "",
|
|
3926
|
-
"ReferenceObjectSubType": "",
|
|
3927
|
-
"ReferenceObjectType": 2125052176,
|
|
3928
|
-
"TextColor": "",
|
|
3929
|
-
"UiPageKey": "",
|
|
3930
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
|
|
3931
|
-
"Visible": true
|
|
3932
|
-
},
|
|
3933
|
-
{
|
|
3934
|
-
"Accessory": "",
|
|
3935
|
-
"AdditionalValue": "",
|
|
3936
|
-
"ApiName": "ItemName",
|
|
3937
|
-
"BackgroundColor": "",
|
|
3938
|
-
"Enabled": false,
|
|
3939
|
-
"EventsData": null,
|
|
3940
|
-
"FieldType": 1,
|
|
3941
|
-
"FormattedValue": "Outdoor Hat",
|
|
3942
|
-
"GroupFields": null,
|
|
3943
|
-
"Highlighted": false,
|
|
3944
|
-
"NotificationInfo": "",
|
|
3945
|
-
"OptionalValues": [],
|
|
3946
|
-
"ReferenceObjectInternalType": "",
|
|
3947
|
-
"ReferenceObjectSubType": "",
|
|
3948
|
-
"ReferenceObjectType": 2125040248,
|
|
3949
|
-
"TextColor": "",
|
|
3950
|
-
"UiPageKey": "",
|
|
3951
|
-
"Value": "Outdoor Hat",
|
|
3952
|
-
"Visible": true
|
|
3953
|
-
},
|
|
3954
|
-
{
|
|
3955
|
-
"Accessory": "",
|
|
3956
|
-
"AdditionalValue": "",
|
|
3957
|
-
"ApiName": "ItemExternalID",
|
|
3958
|
-
"BackgroundColor": "",
|
|
3959
|
-
"Enabled": false,
|
|
3960
|
-
"EventsData": null,
|
|
3961
|
-
"FieldType": 1,
|
|
3962
|
-
"FormattedValue": "HT3005",
|
|
3963
|
-
"GroupFields": null,
|
|
3964
|
-
"Highlighted": false,
|
|
3965
|
-
"NotificationInfo": "",
|
|
3966
|
-
"OptionalValues": [],
|
|
3967
|
-
"ReferenceObjectInternalType": "",
|
|
3968
|
-
"ReferenceObjectSubType": "",
|
|
3969
|
-
"ReferenceObjectType": 2125053472,
|
|
3970
|
-
"TextColor": "",
|
|
3971
|
-
"UiPageKey": "",
|
|
3972
|
-
"Value": "HT3005",
|
|
3973
|
-
"Visible": true
|
|
3974
|
-
},
|
|
3975
|
-
{
|
|
3976
|
-
"Accessory": "$",
|
|
3977
|
-
"AdditionalValue": "",
|
|
3978
|
-
"ApiName": "ItemPrice",
|
|
3979
|
-
"BackgroundColor": "",
|
|
3980
|
-
"Enabled": false,
|
|
3981
|
-
"EventsData": null,
|
|
3982
|
-
"FieldType": 9,
|
|
3983
|
-
"FormattedValue": "$23.00",
|
|
3984
|
-
"GroupFields": null,
|
|
3985
|
-
"Highlighted": false,
|
|
3986
|
-
"NotificationInfo": "",
|
|
3987
|
-
"OptionalValues": [],
|
|
3988
|
-
"ReferenceObjectInternalType": "",
|
|
3989
|
-
"ReferenceObjectSubType": "",
|
|
3990
|
-
"ReferenceObjectType": 2,
|
|
3991
|
-
"TextColor": "",
|
|
3992
|
-
"UiPageKey": "",
|
|
3993
|
-
"Value": "23.0000",
|
|
3994
|
-
"Visible": true
|
|
3995
|
-
},
|
|
3996
|
-
{
|
|
3997
|
-
"Accessory": "",
|
|
3998
|
-
"AdditionalValue": "",
|
|
3999
|
-
"ApiName": "UnitsQuantity",
|
|
4000
|
-
"BackgroundColor": "",
|
|
4001
|
-
"Enabled": true,
|
|
4002
|
-
"EventsData": null,
|
|
4003
|
-
"FieldType": 28,
|
|
4004
|
-
"FormattedValue": "0",
|
|
4005
|
-
"GroupFields": null,
|
|
4006
|
-
"Highlighted": false,
|
|
4007
|
-
"NotificationInfo": "",
|
|
4008
|
-
"OptionalValues": [],
|
|
4009
|
-
"ReferenceObjectInternalType": "",
|
|
4010
|
-
"ReferenceObjectSubType": "",
|
|
4011
|
-
"ReferenceObjectType": 2106867472,
|
|
4012
|
-
"TextColor": "",
|
|
4013
|
-
"UiPageKey": "",
|
|
4014
|
-
"Value": "0.0000",
|
|
4015
|
-
"Visible": true
|
|
4016
|
-
},
|
|
4017
|
-
{
|
|
4018
|
-
"Accessory": "",
|
|
4019
|
-
"AdditionalValue": "",
|
|
4020
|
-
"ApiName": "ItemTSASeason",
|
|
4021
|
-
"BackgroundColor": "",
|
|
4022
|
-
"Enabled": false,
|
|
4023
|
-
"EventsData": null,
|
|
4024
|
-
"FieldType": 1,
|
|
4025
|
-
"FormattedValue": "Fall",
|
|
4026
|
-
"GroupFields": null,
|
|
4027
|
-
"Highlighted": false,
|
|
4028
|
-
"NotificationInfo": "",
|
|
4029
|
-
"OptionalValues": [],
|
|
4030
|
-
"ReferenceObjectInternalType": "",
|
|
4031
|
-
"ReferenceObjectSubType": "",
|
|
4032
|
-
"ReferenceObjectType": 0,
|
|
4033
|
-
"TextColor": "",
|
|
4034
|
-
"UiPageKey": "",
|
|
4035
|
-
"Value": "Fall",
|
|
4036
|
-
"Visible": true
|
|
4037
|
-
},
|
|
4038
|
-
{
|
|
4039
|
-
"Accessory": "",
|
|
4040
|
-
"AdditionalValue": "",
|
|
4041
|
-
"ApiName": "ItemTSAPackaging",
|
|
4042
|
-
"BackgroundColor": "",
|
|
4043
|
-
"Enabled": false,
|
|
4044
|
-
"EventsData": null,
|
|
4045
|
-
"FieldType": 1,
|
|
4046
|
-
"FormattedValue": "D",
|
|
4047
|
-
"GroupFields": null,
|
|
4048
|
-
"Highlighted": false,
|
|
4049
|
-
"NotificationInfo": "",
|
|
4050
|
-
"OptionalValues": [],
|
|
4051
|
-
"ReferenceObjectInternalType": "",
|
|
4052
|
-
"ReferenceObjectSubType": "",
|
|
4053
|
-
"ReferenceObjectType": 0,
|
|
4054
|
-
"TextColor": "",
|
|
4055
|
-
"UiPageKey": "",
|
|
4056
|
-
"Value": "D",
|
|
4057
|
-
"Visible": true
|
|
4058
|
-
}
|
|
4059
|
-
],
|
|
4060
|
-
"IsEditable": false,
|
|
4061
|
-
"IsSelectableForActions": false,
|
|
4062
|
-
"MainAction": null,
|
|
4063
|
-
"Profile": null,
|
|
4064
|
-
"Type": 0,
|
|
4065
|
-
"UID": "f2c6c4c6-b33c-47e1-86a4-57ed5edb757a"
|
|
4066
|
-
},
|
|
4067
|
-
{
|
|
4068
|
-
"AdditionalData": null,
|
|
4069
|
-
"BackgroundColor": "",
|
|
4070
|
-
"Fields": [
|
|
4071
|
-
{
|
|
4072
|
-
"Accessory": "",
|
|
4073
|
-
"AdditionalValue": "",
|
|
4074
|
-
"ApiName": "ItemTSAType",
|
|
4075
|
-
"BackgroundColor": "",
|
|
4076
|
-
"Enabled": false,
|
|
4077
|
-
"EventsData": null,
|
|
4078
|
-
"FieldType": 1,
|
|
4079
|
-
"FormattedValue": "Accessories",
|
|
4080
|
-
"GroupFields": null,
|
|
4081
|
-
"Highlighted": false,
|
|
4082
|
-
"NotificationInfo": "",
|
|
4083
|
-
"OptionalValues": [],
|
|
4084
|
-
"ReferenceObjectInternalType": "",
|
|
4085
|
-
"ReferenceObjectSubType": "",
|
|
4086
|
-
"ReferenceObjectType": 5,
|
|
4087
|
-
"TextColor": "",
|
|
4088
|
-
"UiPageKey": "",
|
|
4089
|
-
"Value": "Accessories",
|
|
4090
|
-
"Visible": true
|
|
4091
|
-
},
|
|
4092
|
-
{
|
|
4093
|
-
"Accessory": "",
|
|
4094
|
-
"AdditionalValue": "",
|
|
4095
|
-
"ApiName": "ObjectMenu",
|
|
4096
|
-
"BackgroundColor": "",
|
|
4097
|
-
"Enabled": true,
|
|
4098
|
-
"EventsData": null,
|
|
4099
|
-
"FieldType": 17,
|
|
4100
|
-
"FormattedValue": "",
|
|
4101
|
-
"GroupFields": null,
|
|
4102
|
-
"Highlighted": false,
|
|
4103
|
-
"NotificationInfo": "",
|
|
4104
|
-
"OptionalValues": [],
|
|
4105
|
-
"ReferenceObjectInternalType": "",
|
|
4106
|
-
"ReferenceObjectSubType": "",
|
|
4107
|
-
"ReferenceObjectType": 5,
|
|
4108
|
-
"TextColor": "",
|
|
4109
|
-
"UiPageKey": "",
|
|
4110
|
-
"Value": "",
|
|
4111
|
-
"Visible": true
|
|
4112
|
-
},
|
|
4113
|
-
{
|
|
4114
|
-
"Accessory": "",
|
|
4115
|
-
"AdditionalValue": "",
|
|
4116
|
-
"ApiName": "TSARelteadItems",
|
|
4117
|
-
"BackgroundColor": "",
|
|
4118
|
-
"Enabled": true,
|
|
4119
|
-
"EventsData": null,
|
|
4120
|
-
"FieldType": 1,
|
|
4121
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4122
|
-
"GroupFields": null,
|
|
4123
|
-
"Highlighted": false,
|
|
4124
|
-
"NotificationInfo": "",
|
|
4125
|
-
"OptionalValues": [],
|
|
4126
|
-
"ReferenceObjectInternalType": "",
|
|
4127
|
-
"ReferenceObjectSubType": "",
|
|
4128
|
-
"ReferenceObjectType": 2123848360,
|
|
4129
|
-
"TextColor": "",
|
|
4130
|
-
"UiPageKey": "",
|
|
4131
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4132
|
-
"Visible": true
|
|
4133
|
-
},
|
|
4134
|
-
{
|
|
4135
|
-
"Accessory": "",
|
|
4136
|
-
"AdditionalValue": "",
|
|
4137
|
-
"ApiName": "Image",
|
|
4138
|
-
"BackgroundColor": "",
|
|
4139
|
-
"Enabled": false,
|
|
4140
|
-
"EventsData": null,
|
|
4141
|
-
"FieldType": 27,
|
|
4142
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
|
|
4143
|
-
"GroupFields": null,
|
|
4144
|
-
"Highlighted": false,
|
|
4145
|
-
"NotificationInfo": "",
|
|
4146
|
-
"OptionalValues": [],
|
|
4147
|
-
"ReferenceObjectInternalType": "",
|
|
4148
|
-
"ReferenceObjectSubType": "",
|
|
4149
|
-
"ReferenceObjectType": 0,
|
|
4150
|
-
"TextColor": "",
|
|
4151
|
-
"UiPageKey": "",
|
|
4152
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
|
|
4153
|
-
"Visible": true
|
|
4154
|
-
},
|
|
4155
|
-
{
|
|
4156
|
-
"Accessory": "",
|
|
4157
|
-
"AdditionalValue": "",
|
|
4158
|
-
"ApiName": "ItemName",
|
|
4159
|
-
"BackgroundColor": "",
|
|
4160
|
-
"Enabled": false,
|
|
4161
|
-
"EventsData": null,
|
|
4162
|
-
"FieldType": 1,
|
|
4163
|
-
"FormattedValue": "Outdoor Hat",
|
|
4164
|
-
"GroupFields": null,
|
|
4165
|
-
"Highlighted": false,
|
|
4166
|
-
"NotificationInfo": "",
|
|
4167
|
-
"OptionalValues": [],
|
|
4168
|
-
"ReferenceObjectInternalType": "",
|
|
4169
|
-
"ReferenceObjectSubType": "",
|
|
4170
|
-
"ReferenceObjectType": 2123341872,
|
|
4171
|
-
"TextColor": "",
|
|
4172
|
-
"UiPageKey": "",
|
|
4173
|
-
"Value": "Outdoor Hat",
|
|
4174
|
-
"Visible": true
|
|
4175
|
-
},
|
|
4176
|
-
{
|
|
4177
|
-
"Accessory": "",
|
|
4178
|
-
"AdditionalValue": "",
|
|
4179
|
-
"ApiName": "ItemExternalID",
|
|
4180
|
-
"BackgroundColor": "",
|
|
4181
|
-
"Enabled": false,
|
|
4182
|
-
"EventsData": null,
|
|
4183
|
-
"FieldType": 1,
|
|
4184
|
-
"FormattedValue": "HT3006",
|
|
4185
|
-
"GroupFields": null,
|
|
4186
|
-
"Highlighted": false,
|
|
4187
|
-
"NotificationInfo": "",
|
|
4188
|
-
"OptionalValues": [],
|
|
4189
|
-
"ReferenceObjectInternalType": "",
|
|
4190
|
-
"ReferenceObjectSubType": "",
|
|
4191
|
-
"ReferenceObjectType": -1,
|
|
4192
|
-
"TextColor": "",
|
|
4193
|
-
"UiPageKey": "",
|
|
4194
|
-
"Value": "HT3006",
|
|
4195
|
-
"Visible": true
|
|
4196
|
-
},
|
|
4197
|
-
{
|
|
4198
|
-
"Accessory": "$",
|
|
4199
|
-
"AdditionalValue": "",
|
|
4200
|
-
"ApiName": "ItemPrice",
|
|
4201
|
-
"BackgroundColor": "",
|
|
4202
|
-
"Enabled": false,
|
|
4203
|
-
"EventsData": null,
|
|
4204
|
-
"FieldType": 9,
|
|
4205
|
-
"FormattedValue": "$19.00",
|
|
4206
|
-
"GroupFields": null,
|
|
4207
|
-
"Highlighted": false,
|
|
4208
|
-
"NotificationInfo": "",
|
|
4209
|
-
"OptionalValues": [],
|
|
4210
|
-
"ReferenceObjectInternalType": "",
|
|
4211
|
-
"ReferenceObjectSubType": "",
|
|
4212
|
-
"ReferenceObjectType": 2123850704,
|
|
4213
|
-
"TextColor": "",
|
|
4214
|
-
"UiPageKey": "",
|
|
4215
|
-
"Value": "19.0000",
|
|
4216
|
-
"Visible": true
|
|
4217
|
-
},
|
|
4218
|
-
{
|
|
4219
|
-
"Accessory": "",
|
|
4220
|
-
"AdditionalValue": "",
|
|
4221
|
-
"ApiName": "UnitsQuantity",
|
|
4222
|
-
"BackgroundColor": "",
|
|
4223
|
-
"Enabled": true,
|
|
4224
|
-
"EventsData": null,
|
|
4225
|
-
"FieldType": 28,
|
|
4226
|
-
"FormattedValue": "0",
|
|
4227
|
-
"GroupFields": null,
|
|
4228
|
-
"Highlighted": false,
|
|
4229
|
-
"NotificationInfo": "",
|
|
4230
|
-
"OptionalValues": [],
|
|
4231
|
-
"ReferenceObjectInternalType": "",
|
|
4232
|
-
"ReferenceObjectSubType": "",
|
|
4233
|
-
"ReferenceObjectType": 2123860720,
|
|
4234
|
-
"TextColor": "",
|
|
4235
|
-
"UiPageKey": "",
|
|
4236
|
-
"Value": "0.0000",
|
|
4237
|
-
"Visible": true
|
|
4238
|
-
},
|
|
4239
|
-
{
|
|
4240
|
-
"Accessory": "",
|
|
4241
|
-
"AdditionalValue": "",
|
|
4242
|
-
"ApiName": "ItemTSASeason",
|
|
4243
|
-
"BackgroundColor": "",
|
|
4244
|
-
"Enabled": false,
|
|
4245
|
-
"EventsData": null,
|
|
4246
|
-
"FieldType": 1,
|
|
4247
|
-
"FormattedValue": "Fall",
|
|
4248
|
-
"GroupFields": null,
|
|
4249
|
-
"Highlighted": false,
|
|
4250
|
-
"NotificationInfo": "",
|
|
4251
|
-
"OptionalValues": [],
|
|
4252
|
-
"ReferenceObjectInternalType": "",
|
|
4253
|
-
"ReferenceObjectSubType": "",
|
|
4254
|
-
"ReferenceObjectType": 2123846016,
|
|
4255
|
-
"TextColor": "",
|
|
4256
|
-
"UiPageKey": "",
|
|
4257
|
-
"Value": "Fall",
|
|
4258
|
-
"Visible": true
|
|
4259
|
-
},
|
|
4260
|
-
{
|
|
4261
|
-
"Accessory": "",
|
|
4262
|
-
"AdditionalValue": "",
|
|
4263
|
-
"ApiName": "ItemTSAPackaging",
|
|
4264
|
-
"BackgroundColor": "",
|
|
4265
|
-
"Enabled": false,
|
|
4266
|
-
"EventsData": null,
|
|
4267
|
-
"FieldType": 1,
|
|
4268
|
-
"FormattedValue": "D",
|
|
4269
|
-
"GroupFields": null,
|
|
4270
|
-
"Highlighted": false,
|
|
4271
|
-
"NotificationInfo": "",
|
|
4272
|
-
"OptionalValues": [],
|
|
4273
|
-
"ReferenceObjectInternalType": "",
|
|
4274
|
-
"ReferenceObjectSubType": "",
|
|
4275
|
-
"ReferenceObjectType": 2123846016,
|
|
4276
|
-
"TextColor": "",
|
|
4277
|
-
"UiPageKey": "",
|
|
4278
|
-
"Value": "D",
|
|
4279
|
-
"Visible": true
|
|
4280
|
-
}
|
|
4281
|
-
],
|
|
4282
|
-
"IsEditable": false,
|
|
4283
|
-
"IsSelectableForActions": false,
|
|
4284
|
-
"MainAction": null,
|
|
4285
|
-
"Profile": null,
|
|
4286
|
-
"Type": 0,
|
|
4287
|
-
"UID": "e77f883f-92b0-41ef-80fb-806bfb375b6a"
|
|
4288
|
-
},
|
|
4289
|
-
{
|
|
4290
|
-
"AdditionalData": null,
|
|
4291
|
-
"BackgroundColor": "",
|
|
4292
|
-
"Fields": [
|
|
4293
|
-
{
|
|
4294
|
-
"Accessory": "",
|
|
4295
|
-
"AdditionalValue": "",
|
|
4296
|
-
"ApiName": "ItemTSAType",
|
|
4297
|
-
"BackgroundColor": "",
|
|
4298
|
-
"Enabled": false,
|
|
4299
|
-
"EventsData": null,
|
|
4300
|
-
"FieldType": 1,
|
|
4301
|
-
"FormattedValue": "Accessories",
|
|
4302
|
-
"GroupFields": null,
|
|
4303
|
-
"Highlighted": false,
|
|
4304
|
-
"NotificationInfo": "",
|
|
4305
|
-
"OptionalValues": [],
|
|
4306
|
-
"ReferenceObjectInternalType": "",
|
|
4307
|
-
"ReferenceObjectSubType": "",
|
|
4308
|
-
"ReferenceObjectType": 2123848360,
|
|
4309
|
-
"TextColor": "",
|
|
4310
|
-
"UiPageKey": "",
|
|
4311
|
-
"Value": "Accessories",
|
|
4312
|
-
"Visible": true
|
|
4313
|
-
},
|
|
4314
|
-
{
|
|
4315
|
-
"Accessory": "",
|
|
4316
|
-
"AdditionalValue": "",
|
|
4317
|
-
"ApiName": "ObjectMenu",
|
|
4318
|
-
"BackgroundColor": "",
|
|
4319
|
-
"Enabled": true,
|
|
4320
|
-
"EventsData": null,
|
|
4321
|
-
"FieldType": 17,
|
|
4322
|
-
"FormattedValue": "",
|
|
4323
|
-
"GroupFields": null,
|
|
4324
|
-
"Highlighted": false,
|
|
4325
|
-
"NotificationInfo": "",
|
|
4326
|
-
"OptionalValues": [],
|
|
4327
|
-
"ReferenceObjectInternalType": "",
|
|
4328
|
-
"ReferenceObjectSubType": "",
|
|
4329
|
-
"ReferenceObjectType": 2123850704,
|
|
4330
|
-
"TextColor": "",
|
|
4331
|
-
"UiPageKey": "",
|
|
4332
|
-
"Value": "",
|
|
4333
|
-
"Visible": true
|
|
4334
|
-
},
|
|
4335
|
-
{
|
|
4336
|
-
"Accessory": "",
|
|
4337
|
-
"AdditionalValue": "",
|
|
4338
|
-
"ApiName": "TSARelteadItems",
|
|
4339
|
-
"BackgroundColor": "",
|
|
4340
|
-
"Enabled": true,
|
|
4341
|
-
"EventsData": null,
|
|
4342
|
-
"FieldType": 1,
|
|
4343
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4344
|
-
"GroupFields": null,
|
|
4345
|
-
"Highlighted": false,
|
|
4346
|
-
"NotificationInfo": "",
|
|
4347
|
-
"OptionalValues": [],
|
|
4348
|
-
"ReferenceObjectInternalType": "",
|
|
4349
|
-
"ReferenceObjectSubType": "",
|
|
4350
|
-
"ReferenceObjectType": 5,
|
|
4351
|
-
"TextColor": "",
|
|
4352
|
-
"UiPageKey": "",
|
|
4353
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4354
|
-
"Visible": true
|
|
4355
|
-
},
|
|
4356
|
-
{
|
|
4357
|
-
"Accessory": "",
|
|
4358
|
-
"AdditionalValue": "",
|
|
4359
|
-
"ApiName": "Image",
|
|
4360
|
-
"BackgroundColor": "",
|
|
4361
|
-
"Enabled": false,
|
|
4362
|
-
"EventsData": null,
|
|
4363
|
-
"FieldType": 27,
|
|
4364
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
|
|
4365
|
-
"GroupFields": null,
|
|
4366
|
-
"Highlighted": false,
|
|
4367
|
-
"NotificationInfo": "",
|
|
4368
|
-
"OptionalValues": [],
|
|
4369
|
-
"ReferenceObjectInternalType": "",
|
|
4370
|
-
"ReferenceObjectSubType": "",
|
|
4371
|
-
"ReferenceObjectType": 2123853240,
|
|
4372
|
-
"TextColor": "",
|
|
4373
|
-
"UiPageKey": "",
|
|
4374
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
|
|
4375
|
-
"Visible": true
|
|
4376
|
-
},
|
|
4377
|
-
{
|
|
4378
|
-
"Accessory": "",
|
|
4379
|
-
"AdditionalValue": "",
|
|
4380
|
-
"ApiName": "ItemName",
|
|
4381
|
-
"BackgroundColor": "",
|
|
4382
|
-
"Enabled": false,
|
|
4383
|
-
"EventsData": null,
|
|
4384
|
-
"FieldType": 1,
|
|
4385
|
-
"FormattedValue": "Outdoor Hat",
|
|
4386
|
-
"GroupFields": null,
|
|
4387
|
-
"Highlighted": false,
|
|
4388
|
-
"NotificationInfo": "",
|
|
4389
|
-
"OptionalValues": [],
|
|
4390
|
-
"ReferenceObjectInternalType": "",
|
|
4391
|
-
"ReferenceObjectSubType": "",
|
|
4392
|
-
"ReferenceObjectType": 5,
|
|
4393
|
-
"TextColor": "",
|
|
4394
|
-
"UiPageKey": "",
|
|
4395
|
-
"Value": "Outdoor Hat",
|
|
4396
|
-
"Visible": true
|
|
4397
|
-
},
|
|
4398
|
-
{
|
|
4399
|
-
"Accessory": "",
|
|
4400
|
-
"AdditionalValue": "",
|
|
4401
|
-
"ApiName": "ItemExternalID",
|
|
4402
|
-
"BackgroundColor": "",
|
|
4403
|
-
"Enabled": false,
|
|
4404
|
-
"EventsData": null,
|
|
4405
|
-
"FieldType": 1,
|
|
4406
|
-
"FormattedValue": "HT3007",
|
|
4407
|
-
"GroupFields": null,
|
|
4408
|
-
"Highlighted": false,
|
|
4409
|
-
"NotificationInfo": "",
|
|
4410
|
-
"OptionalValues": [],
|
|
4411
|
-
"ReferenceObjectInternalType": "",
|
|
4412
|
-
"ReferenceObjectSubType": "",
|
|
4413
|
-
"ReferenceObjectType": 13,
|
|
4414
|
-
"TextColor": "",
|
|
4415
|
-
"UiPageKey": "",
|
|
4416
|
-
"Value": "HT3007",
|
|
4417
|
-
"Visible": true
|
|
4418
|
-
},
|
|
4419
|
-
{
|
|
4420
|
-
"Accessory": "$",
|
|
4421
|
-
"AdditionalValue": "",
|
|
4422
|
-
"ApiName": "ItemPrice",
|
|
4423
|
-
"BackgroundColor": "",
|
|
4424
|
-
"Enabled": false,
|
|
4425
|
-
"EventsData": null,
|
|
4426
|
-
"FieldType": 9,
|
|
4427
|
-
"FormattedValue": "$22.00",
|
|
4428
|
-
"GroupFields": null,
|
|
4429
|
-
"Highlighted": false,
|
|
4430
|
-
"NotificationInfo": "",
|
|
4431
|
-
"OptionalValues": [],
|
|
4432
|
-
"ReferenceObjectInternalType": "",
|
|
4433
|
-
"ReferenceObjectSubType": "",
|
|
4434
|
-
"ReferenceObjectType": 0,
|
|
4435
|
-
"TextColor": "",
|
|
4436
|
-
"UiPageKey": "",
|
|
4437
|
-
"Value": "22.0000",
|
|
4438
|
-
"Visible": true
|
|
4439
|
-
},
|
|
4440
|
-
{
|
|
4441
|
-
"Accessory": "",
|
|
4442
|
-
"AdditionalValue": "",
|
|
4443
|
-
"ApiName": "UnitsQuantity",
|
|
4444
|
-
"BackgroundColor": "",
|
|
4445
|
-
"Enabled": true,
|
|
4446
|
-
"EventsData": null,
|
|
4447
|
-
"FieldType": 28,
|
|
4448
|
-
"FormattedValue": "0",
|
|
4449
|
-
"GroupFields": null,
|
|
4450
|
-
"Highlighted": false,
|
|
4451
|
-
"NotificationInfo": "",
|
|
4452
|
-
"OptionalValues": [],
|
|
4453
|
-
"ReferenceObjectInternalType": "",
|
|
4454
|
-
"ReferenceObjectSubType": "",
|
|
4455
|
-
"ReferenceObjectType": 0,
|
|
4456
|
-
"TextColor": "",
|
|
4457
|
-
"UiPageKey": "",
|
|
4458
|
-
"Value": "0.0000",
|
|
4459
|
-
"Visible": true
|
|
4460
|
-
},
|
|
4461
|
-
{
|
|
4462
|
-
"Accessory": "",
|
|
4463
|
-
"AdditionalValue": "",
|
|
4464
|
-
"ApiName": "ItemTSASeason",
|
|
4465
|
-
"BackgroundColor": "",
|
|
4466
|
-
"Enabled": false,
|
|
4467
|
-
"EventsData": null,
|
|
4468
|
-
"FieldType": 1,
|
|
4469
|
-
"FormattedValue": "Fall",
|
|
4470
|
-
"GroupFields": null,
|
|
4471
|
-
"Highlighted": false,
|
|
4472
|
-
"NotificationInfo": "",
|
|
4473
|
-
"OptionalValues": [],
|
|
4474
|
-
"ReferenceObjectInternalType": "",
|
|
4475
|
-
"ReferenceObjectSubType": "",
|
|
4476
|
-
"ReferenceObjectType": 0,
|
|
4477
|
-
"TextColor": "",
|
|
4478
|
-
"UiPageKey": "",
|
|
4479
|
-
"Value": "Fall",
|
|
4480
|
-
"Visible": true
|
|
4481
|
-
},
|
|
4482
|
-
{
|
|
4483
|
-
"Accessory": "",
|
|
4484
|
-
"AdditionalValue": "",
|
|
4485
|
-
"ApiName": "ItemTSAPackaging",
|
|
4486
|
-
"BackgroundColor": "",
|
|
4487
|
-
"Enabled": false,
|
|
4488
|
-
"EventsData": null,
|
|
4489
|
-
"FieldType": 1,
|
|
4490
|
-
"FormattedValue": "D",
|
|
4491
|
-
"GroupFields": null,
|
|
4492
|
-
"Highlighted": false,
|
|
4493
|
-
"NotificationInfo": "",
|
|
4494
|
-
"OptionalValues": [],
|
|
4495
|
-
"ReferenceObjectInternalType": "",
|
|
4496
|
-
"ReferenceObjectSubType": "",
|
|
4497
|
-
"ReferenceObjectType": 0,
|
|
4498
|
-
"TextColor": "",
|
|
4499
|
-
"UiPageKey": "",
|
|
4500
|
-
"Value": "D",
|
|
4501
|
-
"Visible": true
|
|
4502
|
-
}
|
|
4503
|
-
],
|
|
4504
|
-
"IsEditable": false,
|
|
4505
|
-
"IsSelectableForActions": false,
|
|
4506
|
-
"MainAction": null,
|
|
4507
|
-
"Profile": null,
|
|
4508
|
-
"Type": 0,
|
|
4509
|
-
"UID": "0b91c165-1ca4-4bb5-ba69-a877948a7a2d"
|
|
4510
|
-
},
|
|
4511
|
-
{
|
|
4512
|
-
"AdditionalData": null,
|
|
4513
|
-
"BackgroundColor": "",
|
|
4514
|
-
"Fields": [
|
|
4515
|
-
{
|
|
4516
|
-
"Accessory": "",
|
|
4517
|
-
"AdditionalValue": "",
|
|
4518
|
-
"ApiName": "ItemTSAType",
|
|
4519
|
-
"BackgroundColor": "",
|
|
4520
|
-
"Enabled": false,
|
|
4521
|
-
"EventsData": null,
|
|
4522
|
-
"FieldType": 1,
|
|
4523
|
-
"FormattedValue": "Accessories",
|
|
4524
|
-
"GroupFields": null,
|
|
4525
|
-
"Highlighted": false,
|
|
4526
|
-
"NotificationInfo": "",
|
|
4527
|
-
"OptionalValues": [],
|
|
4528
|
-
"ReferenceObjectInternalType": "",
|
|
4529
|
-
"ReferenceObjectSubType": "",
|
|
4530
|
-
"ReferenceObjectType": 0,
|
|
4531
|
-
"TextColor": "",
|
|
4532
|
-
"UiPageKey": "",
|
|
4533
|
-
"Value": "Accessories",
|
|
4534
|
-
"Visible": true
|
|
4535
|
-
},
|
|
4536
|
-
{
|
|
4537
|
-
"Accessory": "",
|
|
4538
|
-
"AdditionalValue": "",
|
|
4539
|
-
"ApiName": "ObjectMenu",
|
|
4540
|
-
"BackgroundColor": "",
|
|
4541
|
-
"Enabled": true,
|
|
4542
|
-
"EventsData": null,
|
|
4543
|
-
"FieldType": 17,
|
|
4544
|
-
"FormattedValue": "",
|
|
4545
|
-
"GroupFields": null,
|
|
4546
|
-
"Highlighted": false,
|
|
4547
|
-
"NotificationInfo": "",
|
|
4548
|
-
"OptionalValues": [],
|
|
4549
|
-
"ReferenceObjectInternalType": "",
|
|
4550
|
-
"ReferenceObjectSubType": "",
|
|
4551
|
-
"ReferenceObjectType": 0,
|
|
4552
|
-
"TextColor": "",
|
|
4553
|
-
"UiPageKey": "",
|
|
4554
|
-
"Value": "",
|
|
4555
|
-
"Visible": true
|
|
4556
|
-
},
|
|
4557
|
-
{
|
|
4558
|
-
"Accessory": "",
|
|
4559
|
-
"AdditionalValue": "",
|
|
4560
|
-
"ApiName": "TSARelteadItems",
|
|
4561
|
-
"BackgroundColor": "",
|
|
4562
|
-
"Enabled": true,
|
|
4563
|
-
"EventsData": null,
|
|
4564
|
-
"FieldType": 1,
|
|
4565
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4566
|
-
"GroupFields": null,
|
|
4567
|
-
"Highlighted": false,
|
|
4568
|
-
"NotificationInfo": "",
|
|
4569
|
-
"OptionalValues": [],
|
|
4570
|
-
"ReferenceObjectInternalType": "",
|
|
4571
|
-
"ReferenceObjectSubType": "",
|
|
4572
|
-
"ReferenceObjectType": 0,
|
|
4573
|
-
"TextColor": "",
|
|
4574
|
-
"UiPageKey": "",
|
|
4575
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4576
|
-
"Visible": true
|
|
4577
|
-
},
|
|
4578
|
-
{
|
|
4579
|
-
"Accessory": "",
|
|
4580
|
-
"AdditionalValue": "",
|
|
4581
|
-
"ApiName": "Image",
|
|
4582
|
-
"BackgroundColor": "",
|
|
4583
|
-
"Enabled": false,
|
|
4584
|
-
"EventsData": null,
|
|
4585
|
-
"FieldType": 27,
|
|
4586
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
|
|
4587
|
-
"GroupFields": null,
|
|
4588
|
-
"Highlighted": false,
|
|
4589
|
-
"NotificationInfo": "",
|
|
4590
|
-
"OptionalValues": [],
|
|
4591
|
-
"ReferenceObjectInternalType": "",
|
|
4592
|
-
"ReferenceObjectSubType": "",
|
|
4593
|
-
"ReferenceObjectType": 0,
|
|
4594
|
-
"TextColor": "",
|
|
4595
|
-
"UiPageKey": "",
|
|
4596
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
|
|
4597
|
-
"Visible": true
|
|
4598
|
-
},
|
|
4599
|
-
{
|
|
4600
|
-
"Accessory": "",
|
|
4601
|
-
"AdditionalValue": "",
|
|
4602
|
-
"ApiName": "ItemName",
|
|
4603
|
-
"BackgroundColor": "",
|
|
4604
|
-
"Enabled": false,
|
|
4605
|
-
"EventsData": null,
|
|
4606
|
-
"FieldType": 1,
|
|
4607
|
-
"FormattedValue": "Outdoor Hat",
|
|
4608
|
-
"GroupFields": null,
|
|
4609
|
-
"Highlighted": false,
|
|
4610
|
-
"NotificationInfo": "",
|
|
4611
|
-
"OptionalValues": [],
|
|
4612
|
-
"ReferenceObjectInternalType": "",
|
|
4613
|
-
"ReferenceObjectSubType": "",
|
|
4614
|
-
"ReferenceObjectType": 0,
|
|
4615
|
-
"TextColor": "",
|
|
4616
|
-
"UiPageKey": "",
|
|
4617
|
-
"Value": "Outdoor Hat",
|
|
4618
|
-
"Visible": true
|
|
4619
|
-
},
|
|
4620
|
-
{
|
|
4621
|
-
"Accessory": "",
|
|
4622
|
-
"AdditionalValue": "",
|
|
4623
|
-
"ApiName": "ItemExternalID",
|
|
4624
|
-
"BackgroundColor": "",
|
|
4625
|
-
"Enabled": false,
|
|
4626
|
-
"EventsData": null,
|
|
4627
|
-
"FieldType": 1,
|
|
4628
|
-
"FormattedValue": "HT3008",
|
|
4629
|
-
"GroupFields": null,
|
|
4630
|
-
"Highlighted": false,
|
|
4631
|
-
"NotificationInfo": "",
|
|
4632
|
-
"OptionalValues": [],
|
|
4633
|
-
"ReferenceObjectInternalType": "",
|
|
4634
|
-
"ReferenceObjectSubType": "",
|
|
4635
|
-
"ReferenceObjectType": 0,
|
|
4636
|
-
"TextColor": "",
|
|
4637
|
-
"UiPageKey": "",
|
|
4638
|
-
"Value": "HT3008",
|
|
4639
|
-
"Visible": true
|
|
4640
|
-
},
|
|
4641
|
-
{
|
|
4642
|
-
"Accessory": "$",
|
|
4643
|
-
"AdditionalValue": "",
|
|
4644
|
-
"ApiName": "ItemPrice",
|
|
4645
|
-
"BackgroundColor": "",
|
|
4646
|
-
"Enabled": false,
|
|
4647
|
-
"EventsData": null,
|
|
4648
|
-
"FieldType": 9,
|
|
4649
|
-
"FormattedValue": "$22.00",
|
|
4650
|
-
"GroupFields": null,
|
|
4651
|
-
"Highlighted": false,
|
|
4652
|
-
"NotificationInfo": "",
|
|
4653
|
-
"OptionalValues": [],
|
|
4654
|
-
"ReferenceObjectInternalType": "",
|
|
4655
|
-
"ReferenceObjectSubType": "",
|
|
4656
|
-
"ReferenceObjectType": 0,
|
|
4657
|
-
"TextColor": "",
|
|
4658
|
-
"UiPageKey": "",
|
|
4659
|
-
"Value": "22.0000",
|
|
4660
|
-
"Visible": true
|
|
4661
|
-
},
|
|
4662
|
-
{
|
|
4663
|
-
"Accessory": "",
|
|
4664
|
-
"AdditionalValue": "",
|
|
4665
|
-
"ApiName": "UnitsQuantity",
|
|
4666
|
-
"BackgroundColor": "",
|
|
4667
|
-
"Enabled": true,
|
|
4668
|
-
"EventsData": null,
|
|
4669
|
-
"FieldType": 28,
|
|
4670
|
-
"FormattedValue": "0",
|
|
4671
|
-
"GroupFields": null,
|
|
4672
|
-
"Highlighted": false,
|
|
4673
|
-
"NotificationInfo": "",
|
|
4674
|
-
"OptionalValues": [],
|
|
4675
|
-
"ReferenceObjectInternalType": "",
|
|
4676
|
-
"ReferenceObjectSubType": "",
|
|
4677
|
-
"ReferenceObjectType": 0,
|
|
4678
|
-
"TextColor": "",
|
|
4679
|
-
"UiPageKey": "",
|
|
4680
|
-
"Value": "0.0000",
|
|
4681
|
-
"Visible": true
|
|
4682
|
-
},
|
|
4683
|
-
{
|
|
4684
|
-
"Accessory": "",
|
|
4685
|
-
"AdditionalValue": "",
|
|
4686
|
-
"ApiName": "ItemTSASeason",
|
|
4687
|
-
"BackgroundColor": "",
|
|
4688
|
-
"Enabled": false,
|
|
4689
|
-
"EventsData": null,
|
|
4690
|
-
"FieldType": 1,
|
|
4691
|
-
"FormattedValue": "Winter",
|
|
4692
|
-
"GroupFields": null,
|
|
4693
|
-
"Highlighted": false,
|
|
4694
|
-
"NotificationInfo": "",
|
|
4695
|
-
"OptionalValues": [],
|
|
4696
|
-
"ReferenceObjectInternalType": "",
|
|
4697
|
-
"ReferenceObjectSubType": "",
|
|
4698
|
-
"ReferenceObjectType": 0,
|
|
4699
|
-
"TextColor": "",
|
|
4700
|
-
"UiPageKey": "",
|
|
4701
|
-
"Value": "Winter",
|
|
4702
|
-
"Visible": true
|
|
4703
|
-
},
|
|
4704
|
-
{
|
|
4705
|
-
"Accessory": "",
|
|
4706
|
-
"AdditionalValue": "",
|
|
4707
|
-
"ApiName": "ItemTSAPackaging",
|
|
4708
|
-
"BackgroundColor": "",
|
|
4709
|
-
"Enabled": false,
|
|
4710
|
-
"EventsData": null,
|
|
4711
|
-
"FieldType": 1,
|
|
4712
|
-
"FormattedValue": "A",
|
|
4713
|
-
"GroupFields": null,
|
|
4714
|
-
"Highlighted": false,
|
|
4715
|
-
"NotificationInfo": "",
|
|
4716
|
-
"OptionalValues": [],
|
|
4717
|
-
"ReferenceObjectInternalType": "",
|
|
4718
|
-
"ReferenceObjectSubType": "",
|
|
4719
|
-
"ReferenceObjectType": 0,
|
|
4720
|
-
"TextColor": "",
|
|
4721
|
-
"UiPageKey": "",
|
|
4722
|
-
"Value": "A",
|
|
4723
|
-
"Visible": true
|
|
4724
|
-
}
|
|
4725
|
-
],
|
|
4726
|
-
"IsEditable": false,
|
|
4727
|
-
"IsSelectableForActions": false,
|
|
4728
|
-
"MainAction": null,
|
|
4729
|
-
"Profile": null,
|
|
4730
|
-
"Type": 0,
|
|
4731
|
-
"UID": "bd8b13ae-2a5c-4689-8488-32f6cb722ba9"
|
|
4732
|
-
},
|
|
4733
|
-
{
|
|
4734
|
-
"AdditionalData": null,
|
|
4735
|
-
"BackgroundColor": "",
|
|
4736
|
-
"Fields": [
|
|
4737
|
-
{
|
|
4738
|
-
"Accessory": "",
|
|
4739
|
-
"AdditionalValue": "",
|
|
4740
|
-
"ApiName": "ItemTSAType",
|
|
4741
|
-
"BackgroundColor": "",
|
|
4742
|
-
"Enabled": false,
|
|
4743
|
-
"EventsData": null,
|
|
4744
|
-
"FieldType": 1,
|
|
4745
|
-
"FormattedValue": "Accessories",
|
|
4746
|
-
"GroupFields": null,
|
|
4747
|
-
"Highlighted": false,
|
|
4748
|
-
"NotificationInfo": "",
|
|
4749
|
-
"OptionalValues": [],
|
|
4750
|
-
"ReferenceObjectInternalType": "",
|
|
4751
|
-
"ReferenceObjectSubType": "",
|
|
4752
|
-
"ReferenceObjectType": 0,
|
|
4753
|
-
"TextColor": "",
|
|
4754
|
-
"UiPageKey": "",
|
|
4755
|
-
"Value": "Accessories",
|
|
4756
|
-
"Visible": true
|
|
4757
|
-
},
|
|
4758
|
-
{
|
|
4759
|
-
"Accessory": "",
|
|
4760
|
-
"AdditionalValue": "",
|
|
4761
|
-
"ApiName": "ObjectMenu",
|
|
4762
|
-
"BackgroundColor": "",
|
|
4763
|
-
"Enabled": true,
|
|
4764
|
-
"EventsData": null,
|
|
4765
|
-
"FieldType": 17,
|
|
4766
|
-
"FormattedValue": "",
|
|
4767
|
-
"GroupFields": null,
|
|
4768
|
-
"Highlighted": false,
|
|
4769
|
-
"NotificationInfo": "",
|
|
4770
|
-
"OptionalValues": [],
|
|
4771
|
-
"ReferenceObjectInternalType": "",
|
|
4772
|
-
"ReferenceObjectSubType": "",
|
|
4773
|
-
"ReferenceObjectType": 0,
|
|
4774
|
-
"TextColor": "",
|
|
4775
|
-
"UiPageKey": "",
|
|
4776
|
-
"Value": "",
|
|
4777
|
-
"Visible": true
|
|
4778
|
-
},
|
|
4779
|
-
{
|
|
4780
|
-
"Accessory": "",
|
|
4781
|
-
"AdditionalValue": "",
|
|
4782
|
-
"ApiName": "TSARelteadItems",
|
|
4783
|
-
"BackgroundColor": "",
|
|
4784
|
-
"Enabled": true,
|
|
4785
|
-
"EventsData": null,
|
|
4786
|
-
"FieldType": 1,
|
|
4787
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4788
|
-
"GroupFields": null,
|
|
4789
|
-
"Highlighted": false,
|
|
4790
|
-
"NotificationInfo": "",
|
|
4791
|
-
"OptionalValues": [],
|
|
4792
|
-
"ReferenceObjectInternalType": "",
|
|
4793
|
-
"ReferenceObjectSubType": "",
|
|
4794
|
-
"ReferenceObjectType": 0,
|
|
4795
|
-
"TextColor": "",
|
|
4796
|
-
"UiPageKey": "",
|
|
4797
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
4798
|
-
"Visible": true
|
|
4799
|
-
},
|
|
4800
|
-
{
|
|
4801
|
-
"Accessory": "",
|
|
4802
|
-
"AdditionalValue": "",
|
|
4803
|
-
"ApiName": "Image",
|
|
4804
|
-
"BackgroundColor": "",
|
|
4805
|
-
"Enabled": false,
|
|
4806
|
-
"EventsData": null,
|
|
4807
|
-
"FieldType": 27,
|
|
4808
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
|
|
4809
|
-
"GroupFields": null,
|
|
4810
|
-
"Highlighted": false,
|
|
4811
|
-
"NotificationInfo": "",
|
|
4812
|
-
"OptionalValues": [],
|
|
4813
|
-
"ReferenceObjectInternalType": "",
|
|
4814
|
-
"ReferenceObjectSubType": "",
|
|
4815
|
-
"ReferenceObjectType": 0,
|
|
4816
|
-
"TextColor": "",
|
|
4817
|
-
"UiPageKey": "",
|
|
4818
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
|
|
4819
|
-
"Visible": true
|
|
4820
|
-
},
|
|
4821
|
-
{
|
|
4822
|
-
"Accessory": "",
|
|
4823
|
-
"AdditionalValue": "",
|
|
4824
|
-
"ApiName": "ItemName",
|
|
4825
|
-
"BackgroundColor": "",
|
|
4826
|
-
"Enabled": false,
|
|
4827
|
-
"EventsData": null,
|
|
4828
|
-
"FieldType": 1,
|
|
4829
|
-
"FormattedValue": "Outdoor Hat",
|
|
4830
|
-
"GroupFields": null,
|
|
4831
|
-
"Highlighted": false,
|
|
4832
|
-
"NotificationInfo": "",
|
|
4833
|
-
"OptionalValues": [],
|
|
4834
|
-
"ReferenceObjectInternalType": "",
|
|
4835
|
-
"ReferenceObjectSubType": "",
|
|
4836
|
-
"ReferenceObjectType": 0,
|
|
4837
|
-
"TextColor": "",
|
|
4838
|
-
"UiPageKey": "",
|
|
4839
|
-
"Value": "Outdoor Hat",
|
|
4840
|
-
"Visible": true
|
|
4841
|
-
},
|
|
4842
|
-
{
|
|
4843
|
-
"Accessory": "",
|
|
4844
|
-
"AdditionalValue": "",
|
|
4845
|
-
"ApiName": "ItemExternalID",
|
|
4846
|
-
"BackgroundColor": "",
|
|
4847
|
-
"Enabled": false,
|
|
4848
|
-
"EventsData": null,
|
|
4849
|
-
"FieldType": 1,
|
|
4850
|
-
"FormattedValue": "HT3009",
|
|
4851
|
-
"GroupFields": null,
|
|
4852
|
-
"Highlighted": false,
|
|
4853
|
-
"NotificationInfo": "",
|
|
4854
|
-
"OptionalValues": [],
|
|
4855
|
-
"ReferenceObjectInternalType": "",
|
|
4856
|
-
"ReferenceObjectSubType": "",
|
|
4857
|
-
"ReferenceObjectType": 0,
|
|
4858
|
-
"TextColor": "",
|
|
4859
|
-
"UiPageKey": "",
|
|
4860
|
-
"Value": "HT3009",
|
|
4861
|
-
"Visible": true
|
|
4862
|
-
},
|
|
4863
|
-
{
|
|
4864
|
-
"Accessory": "$",
|
|
4865
|
-
"AdditionalValue": "",
|
|
4866
|
-
"ApiName": "ItemPrice",
|
|
4867
|
-
"BackgroundColor": "",
|
|
4868
|
-
"Enabled": false,
|
|
4869
|
-
"EventsData": null,
|
|
4870
|
-
"FieldType": 9,
|
|
4871
|
-
"FormattedValue": "$23.00",
|
|
4872
|
-
"GroupFields": null,
|
|
4873
|
-
"Highlighted": false,
|
|
4874
|
-
"NotificationInfo": "",
|
|
4875
|
-
"OptionalValues": [],
|
|
4876
|
-
"ReferenceObjectInternalType": "",
|
|
4877
|
-
"ReferenceObjectSubType": "",
|
|
4878
|
-
"ReferenceObjectType": 0,
|
|
4879
|
-
"TextColor": "",
|
|
4880
|
-
"UiPageKey": "",
|
|
4881
|
-
"Value": "23.0000",
|
|
4882
|
-
"Visible": true
|
|
4883
|
-
},
|
|
4884
|
-
{
|
|
4885
|
-
"Accessory": "",
|
|
4886
|
-
"AdditionalValue": "",
|
|
4887
|
-
"ApiName": "UnitsQuantity",
|
|
4888
|
-
"BackgroundColor": "",
|
|
4889
|
-
"Enabled": true,
|
|
4890
|
-
"EventsData": null,
|
|
4891
|
-
"FieldType": 28,
|
|
4892
|
-
"FormattedValue": "0",
|
|
4893
|
-
"GroupFields": null,
|
|
4894
|
-
"Highlighted": false,
|
|
4895
|
-
"NotificationInfo": "",
|
|
4896
|
-
"OptionalValues": [],
|
|
4897
|
-
"ReferenceObjectInternalType": "",
|
|
4898
|
-
"ReferenceObjectSubType": "",
|
|
4899
|
-
"ReferenceObjectType": 0,
|
|
4900
|
-
"TextColor": "",
|
|
4901
|
-
"UiPageKey": "",
|
|
4902
|
-
"Value": "0.0000",
|
|
4903
|
-
"Visible": true
|
|
4904
|
-
},
|
|
4905
|
-
{
|
|
4906
|
-
"Accessory": "",
|
|
4907
|
-
"AdditionalValue": "",
|
|
4908
|
-
"ApiName": "ItemTSASeason",
|
|
4909
|
-
"BackgroundColor": "",
|
|
4910
|
-
"Enabled": false,
|
|
4911
|
-
"EventsData": null,
|
|
4912
|
-
"FieldType": 1,
|
|
4913
|
-
"FormattedValue": "Winter",
|
|
4914
|
-
"GroupFields": null,
|
|
4915
|
-
"Highlighted": false,
|
|
4916
|
-
"NotificationInfo": "",
|
|
4917
|
-
"OptionalValues": [],
|
|
4918
|
-
"ReferenceObjectInternalType": "",
|
|
4919
|
-
"ReferenceObjectSubType": "",
|
|
4920
|
-
"ReferenceObjectType": 0,
|
|
4921
|
-
"TextColor": "",
|
|
4922
|
-
"UiPageKey": "",
|
|
4923
|
-
"Value": "Winter",
|
|
4924
|
-
"Visible": true
|
|
4925
|
-
},
|
|
4926
|
-
{
|
|
4927
|
-
"Accessory": "",
|
|
4928
|
-
"AdditionalValue": "",
|
|
4929
|
-
"ApiName": "ItemTSAPackaging",
|
|
4930
|
-
"BackgroundColor": "",
|
|
4931
|
-
"Enabled": false,
|
|
4932
|
-
"EventsData": null,
|
|
4933
|
-
"FieldType": 1,
|
|
4934
|
-
"FormattedValue": "A",
|
|
4935
|
-
"GroupFields": null,
|
|
4936
|
-
"Highlighted": false,
|
|
4937
|
-
"NotificationInfo": "",
|
|
4938
|
-
"OptionalValues": [],
|
|
4939
|
-
"ReferenceObjectInternalType": "",
|
|
4940
|
-
"ReferenceObjectSubType": "",
|
|
4941
|
-
"ReferenceObjectType": 0,
|
|
4942
|
-
"TextColor": "",
|
|
4943
|
-
"UiPageKey": "",
|
|
4944
|
-
"Value": "A",
|
|
4945
|
-
"Visible": true
|
|
4946
|
-
}
|
|
4947
|
-
],
|
|
4948
|
-
"IsEditable": false,
|
|
4949
|
-
"IsSelectableForActions": false,
|
|
4950
|
-
"MainAction": null,
|
|
4951
|
-
"Profile": null,
|
|
4952
|
-
"Type": 0,
|
|
4953
|
-
"UID": "27bfe67d-13f4-4982-b5d0-3ebf5d753e0f"
|
|
4954
|
-
},
|
|
4955
|
-
{
|
|
4956
|
-
"AdditionalData": null,
|
|
4957
|
-
"BackgroundColor": "",
|
|
4958
|
-
"Fields": [
|
|
4959
|
-
{
|
|
4960
|
-
"Accessory": "",
|
|
4961
|
-
"AdditionalValue": "",
|
|
4962
|
-
"ApiName": "ItemTSAType",
|
|
4963
|
-
"BackgroundColor": "",
|
|
4964
|
-
"Enabled": false,
|
|
4965
|
-
"EventsData": null,
|
|
4966
|
-
"FieldType": 1,
|
|
4967
|
-
"FormattedValue": "Accessories",
|
|
4968
|
-
"GroupFields": null,
|
|
4969
|
-
"Highlighted": false,
|
|
4970
|
-
"NotificationInfo": "",
|
|
4971
|
-
"OptionalValues": [],
|
|
4972
|
-
"ReferenceObjectInternalType": "",
|
|
4973
|
-
"ReferenceObjectSubType": "",
|
|
4974
|
-
"ReferenceObjectType": 0,
|
|
4975
|
-
"TextColor": "",
|
|
4976
|
-
"UiPageKey": "",
|
|
4977
|
-
"Value": "Accessories",
|
|
4978
|
-
"Visible": true
|
|
4979
|
-
},
|
|
4980
|
-
{
|
|
4981
|
-
"Accessory": "",
|
|
4982
|
-
"AdditionalValue": "",
|
|
4983
|
-
"ApiName": "ObjectMenu",
|
|
4984
|
-
"BackgroundColor": "",
|
|
4985
|
-
"Enabled": true,
|
|
4986
|
-
"EventsData": null,
|
|
4987
|
-
"FieldType": 17,
|
|
4988
|
-
"FormattedValue": "",
|
|
4989
|
-
"GroupFields": null,
|
|
4990
|
-
"Highlighted": false,
|
|
4991
|
-
"NotificationInfo": "",
|
|
4992
|
-
"OptionalValues": [],
|
|
4993
|
-
"ReferenceObjectInternalType": "",
|
|
4994
|
-
"ReferenceObjectSubType": "",
|
|
4995
|
-
"ReferenceObjectType": 0,
|
|
4996
|
-
"TextColor": "",
|
|
4997
|
-
"UiPageKey": "",
|
|
4998
|
-
"Value": "",
|
|
4999
|
-
"Visible": true
|
|
5000
|
-
},
|
|
5001
|
-
{
|
|
5002
|
-
"Accessory": "",
|
|
5003
|
-
"AdditionalValue": "",
|
|
5004
|
-
"ApiName": "TSARelteadItems",
|
|
5005
|
-
"BackgroundColor": "",
|
|
5006
|
-
"Enabled": true,
|
|
5007
|
-
"EventsData": null,
|
|
5008
|
-
"FieldType": 1,
|
|
5009
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5010
|
-
"GroupFields": null,
|
|
5011
|
-
"Highlighted": false,
|
|
5012
|
-
"NotificationInfo": "",
|
|
5013
|
-
"OptionalValues": [],
|
|
5014
|
-
"ReferenceObjectInternalType": "",
|
|
5015
|
-
"ReferenceObjectSubType": "",
|
|
5016
|
-
"ReferenceObjectType": 0,
|
|
5017
|
-
"TextColor": "",
|
|
5018
|
-
"UiPageKey": "",
|
|
5019
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5020
|
-
"Visible": true
|
|
5021
|
-
},
|
|
5022
|
-
{
|
|
5023
|
-
"Accessory": "",
|
|
5024
|
-
"AdditionalValue": "",
|
|
5025
|
-
"ApiName": "Image",
|
|
5026
|
-
"BackgroundColor": "",
|
|
5027
|
-
"Enabled": false,
|
|
5028
|
-
"EventsData": null,
|
|
5029
|
-
"FieldType": 27,
|
|
5030
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
|
|
5031
|
-
"GroupFields": null,
|
|
5032
|
-
"Highlighted": false,
|
|
5033
|
-
"NotificationInfo": "",
|
|
5034
|
-
"OptionalValues": [],
|
|
5035
|
-
"ReferenceObjectInternalType": "",
|
|
5036
|
-
"ReferenceObjectSubType": "",
|
|
5037
|
-
"ReferenceObjectType": 0,
|
|
5038
|
-
"TextColor": "",
|
|
5039
|
-
"UiPageKey": "",
|
|
5040
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
|
|
5041
|
-
"Visible": true
|
|
5042
|
-
},
|
|
5043
|
-
{
|
|
5044
|
-
"Accessory": "",
|
|
5045
|
-
"AdditionalValue": "",
|
|
5046
|
-
"ApiName": "ItemName",
|
|
5047
|
-
"BackgroundColor": "",
|
|
5048
|
-
"Enabled": false,
|
|
5049
|
-
"EventsData": null,
|
|
5050
|
-
"FieldType": 1,
|
|
5051
|
-
"FormattedValue": "Sport Hat",
|
|
5052
|
-
"GroupFields": null,
|
|
5053
|
-
"Highlighted": false,
|
|
5054
|
-
"NotificationInfo": "",
|
|
5055
|
-
"OptionalValues": [],
|
|
5056
|
-
"ReferenceObjectInternalType": "",
|
|
5057
|
-
"ReferenceObjectSubType": "",
|
|
5058
|
-
"ReferenceObjectType": 3473458,
|
|
5059
|
-
"TextColor": "",
|
|
5060
|
-
"UiPageKey": "",
|
|
5061
|
-
"Value": "Sport Hat",
|
|
5062
|
-
"Visible": true
|
|
5063
|
-
},
|
|
5064
|
-
{
|
|
5065
|
-
"Accessory": "",
|
|
5066
|
-
"AdditionalValue": "",
|
|
5067
|
-
"ApiName": "ItemExternalID",
|
|
5068
|
-
"BackgroundColor": "",
|
|
5069
|
-
"Enabled": false,
|
|
5070
|
-
"EventsData": null,
|
|
5071
|
-
"FieldType": 1,
|
|
5072
|
-
"FormattedValue": "HT3010",
|
|
5073
|
-
"GroupFields": null,
|
|
5074
|
-
"Highlighted": false,
|
|
5075
|
-
"NotificationInfo": "",
|
|
5076
|
-
"OptionalValues": [],
|
|
5077
|
-
"ReferenceObjectInternalType": "",
|
|
5078
|
-
"ReferenceObjectSubType": "",
|
|
5079
|
-
"ReferenceObjectType": 0,
|
|
5080
|
-
"TextColor": "",
|
|
5081
|
-
"UiPageKey": "",
|
|
5082
|
-
"Value": "HT3010",
|
|
5083
|
-
"Visible": true
|
|
5084
|
-
},
|
|
5085
|
-
{
|
|
5086
|
-
"Accessory": "$",
|
|
5087
|
-
"AdditionalValue": "",
|
|
5088
|
-
"ApiName": "ItemPrice",
|
|
5089
|
-
"BackgroundColor": "",
|
|
5090
|
-
"Enabled": false,
|
|
5091
|
-
"EventsData": null,
|
|
5092
|
-
"FieldType": 9,
|
|
5093
|
-
"FormattedValue": "$24.00",
|
|
5094
|
-
"GroupFields": null,
|
|
5095
|
-
"Highlighted": false,
|
|
5096
|
-
"NotificationInfo": "",
|
|
5097
|
-
"OptionalValues": [],
|
|
5098
|
-
"ReferenceObjectInternalType": "",
|
|
5099
|
-
"ReferenceObjectSubType": "",
|
|
5100
|
-
"ReferenceObjectType": 0,
|
|
5101
|
-
"TextColor": "",
|
|
5102
|
-
"UiPageKey": "",
|
|
5103
|
-
"Value": "24.0000",
|
|
5104
|
-
"Visible": true
|
|
5105
|
-
},
|
|
5106
|
-
{
|
|
5107
|
-
"Accessory": "",
|
|
5108
|
-
"AdditionalValue": "",
|
|
5109
|
-
"ApiName": "UnitsQuantity",
|
|
5110
|
-
"BackgroundColor": "",
|
|
5111
|
-
"Enabled": true,
|
|
5112
|
-
"EventsData": null,
|
|
5113
|
-
"FieldType": 28,
|
|
5114
|
-
"FormattedValue": "0",
|
|
5115
|
-
"GroupFields": null,
|
|
5116
|
-
"Highlighted": false,
|
|
5117
|
-
"NotificationInfo": "",
|
|
5118
|
-
"OptionalValues": [],
|
|
5119
|
-
"ReferenceObjectInternalType": "",
|
|
5120
|
-
"ReferenceObjectSubType": "",
|
|
5121
|
-
"ReferenceObjectType": 0,
|
|
5122
|
-
"TextColor": "",
|
|
5123
|
-
"UiPageKey": "",
|
|
5124
|
-
"Value": "0.0000",
|
|
5125
|
-
"Visible": true
|
|
5126
|
-
},
|
|
5127
|
-
{
|
|
5128
|
-
"Accessory": "",
|
|
5129
|
-
"AdditionalValue": "",
|
|
5130
|
-
"ApiName": "ItemTSASeason",
|
|
5131
|
-
"BackgroundColor": "",
|
|
5132
|
-
"Enabled": false,
|
|
5133
|
-
"EventsData": null,
|
|
5134
|
-
"FieldType": 1,
|
|
5135
|
-
"FormattedValue": "Winter",
|
|
5136
|
-
"GroupFields": null,
|
|
5137
|
-
"Highlighted": false,
|
|
5138
|
-
"NotificationInfo": "",
|
|
5139
|
-
"OptionalValues": [],
|
|
5140
|
-
"ReferenceObjectInternalType": "",
|
|
5141
|
-
"ReferenceObjectSubType": "",
|
|
5142
|
-
"ReferenceObjectType": 0,
|
|
5143
|
-
"TextColor": "",
|
|
5144
|
-
"UiPageKey": "",
|
|
5145
|
-
"Value": "Winter",
|
|
5146
|
-
"Visible": true
|
|
5147
|
-
},
|
|
5148
|
-
{
|
|
5149
|
-
"Accessory": "",
|
|
5150
|
-
"AdditionalValue": "",
|
|
5151
|
-
"ApiName": "ItemTSAPackaging",
|
|
5152
|
-
"BackgroundColor": "",
|
|
5153
|
-
"Enabled": false,
|
|
5154
|
-
"EventsData": null,
|
|
5155
|
-
"FieldType": 1,
|
|
5156
|
-
"FormattedValue": "A",
|
|
5157
|
-
"GroupFields": null,
|
|
5158
|
-
"Highlighted": false,
|
|
5159
|
-
"NotificationInfo": "",
|
|
5160
|
-
"OptionalValues": [],
|
|
5161
|
-
"ReferenceObjectInternalType": "",
|
|
5162
|
-
"ReferenceObjectSubType": "",
|
|
5163
|
-
"ReferenceObjectType": 0,
|
|
5164
|
-
"TextColor": "",
|
|
5165
|
-
"UiPageKey": "",
|
|
5166
|
-
"Value": "A",
|
|
5167
|
-
"Visible": true
|
|
5168
|
-
}
|
|
5169
|
-
],
|
|
5170
|
-
"IsEditable": false,
|
|
5171
|
-
"IsSelectableForActions": false,
|
|
5172
|
-
"MainAction": null,
|
|
5173
|
-
"Profile": null,
|
|
5174
|
-
"Type": 0,
|
|
5175
|
-
"UID": "f04e0fd3-7832-432d-ae27-1820ba9a9c85"
|
|
5176
|
-
},
|
|
5177
|
-
{
|
|
5178
|
-
"AdditionalData": null,
|
|
5179
|
-
"BackgroundColor": "",
|
|
5180
|
-
"Fields": [
|
|
5181
|
-
{
|
|
5182
|
-
"Accessory": "",
|
|
5183
|
-
"AdditionalValue": "",
|
|
5184
|
-
"ApiName": "ItemTSAType",
|
|
5185
|
-
"BackgroundColor": "",
|
|
5186
|
-
"Enabled": false,
|
|
5187
|
-
"EventsData": null,
|
|
5188
|
-
"FieldType": 1,
|
|
5189
|
-
"FormattedValue": "Accessories",
|
|
5190
|
-
"GroupFields": null,
|
|
5191
|
-
"Highlighted": false,
|
|
5192
|
-
"NotificationInfo": "",
|
|
5193
|
-
"OptionalValues": [],
|
|
5194
|
-
"ReferenceObjectInternalType": "",
|
|
5195
|
-
"ReferenceObjectSubType": "",
|
|
5196
|
-
"ReferenceObjectType": 2106973712,
|
|
5197
|
-
"TextColor": "",
|
|
5198
|
-
"UiPageKey": "",
|
|
5199
|
-
"Value": "Accessories",
|
|
5200
|
-
"Visible": true
|
|
5201
|
-
},
|
|
5202
|
-
{
|
|
5203
|
-
"Accessory": "",
|
|
5204
|
-
"AdditionalValue": "",
|
|
5205
|
-
"ApiName": "ObjectMenu",
|
|
5206
|
-
"BackgroundColor": "",
|
|
5207
|
-
"Enabled": true,
|
|
5208
|
-
"EventsData": null,
|
|
5209
|
-
"FieldType": 17,
|
|
5210
|
-
"FormattedValue": "",
|
|
5211
|
-
"GroupFields": null,
|
|
5212
|
-
"Highlighted": false,
|
|
5213
|
-
"NotificationInfo": "",
|
|
5214
|
-
"OptionalValues": [],
|
|
5215
|
-
"ReferenceObjectInternalType": "",
|
|
5216
|
-
"ReferenceObjectSubType": "",
|
|
5217
|
-
"ReferenceObjectType": 0,
|
|
5218
|
-
"TextColor": "",
|
|
5219
|
-
"UiPageKey": "",
|
|
5220
|
-
"Value": "",
|
|
5221
|
-
"Visible": true
|
|
5222
|
-
},
|
|
5223
|
-
{
|
|
5224
|
-
"Accessory": "",
|
|
5225
|
-
"AdditionalValue": "",
|
|
5226
|
-
"ApiName": "TSARelteadItems",
|
|
5227
|
-
"BackgroundColor": "",
|
|
5228
|
-
"Enabled": true,
|
|
5229
|
-
"EventsData": null,
|
|
5230
|
-
"FieldType": 1,
|
|
5231
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5232
|
-
"GroupFields": null,
|
|
5233
|
-
"Highlighted": false,
|
|
5234
|
-
"NotificationInfo": "",
|
|
5235
|
-
"OptionalValues": [],
|
|
5236
|
-
"ReferenceObjectInternalType": "",
|
|
5237
|
-
"ReferenceObjectSubType": "",
|
|
5238
|
-
"ReferenceObjectType": 13,
|
|
5239
|
-
"TextColor": "",
|
|
5240
|
-
"UiPageKey": "",
|
|
5241
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5242
|
-
"Visible": true
|
|
5243
|
-
},
|
|
5244
|
-
{
|
|
5245
|
-
"Accessory": "",
|
|
5246
|
-
"AdditionalValue": "",
|
|
5247
|
-
"ApiName": "Image",
|
|
5248
|
-
"BackgroundColor": "",
|
|
5249
|
-
"Enabled": false,
|
|
5250
|
-
"EventsData": null,
|
|
5251
|
-
"FieldType": 27,
|
|
5252
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
|
|
5253
|
-
"GroupFields": null,
|
|
5254
|
-
"Highlighted": false,
|
|
5255
|
-
"NotificationInfo": "",
|
|
5256
|
-
"OptionalValues": [],
|
|
5257
|
-
"ReferenceObjectInternalType": "",
|
|
5258
|
-
"ReferenceObjectSubType": "",
|
|
5259
|
-
"ReferenceObjectType": 0,
|
|
5260
|
-
"TextColor": "",
|
|
5261
|
-
"UiPageKey": "",
|
|
5262
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
|
|
5263
|
-
"Visible": true
|
|
5264
|
-
},
|
|
5265
|
-
{
|
|
5266
|
-
"Accessory": "",
|
|
5267
|
-
"AdditionalValue": "",
|
|
5268
|
-
"ApiName": "ItemName",
|
|
5269
|
-
"BackgroundColor": "",
|
|
5270
|
-
"Enabled": false,
|
|
5271
|
-
"EventsData": null,
|
|
5272
|
-
"FieldType": 1,
|
|
5273
|
-
"FormattedValue": "Wool Hat",
|
|
5274
|
-
"GroupFields": null,
|
|
5275
|
-
"Highlighted": false,
|
|
5276
|
-
"NotificationInfo": "",
|
|
5277
|
-
"OptionalValues": [],
|
|
5278
|
-
"ReferenceObjectInternalType": "",
|
|
5279
|
-
"ReferenceObjectSubType": "",
|
|
5280
|
-
"ReferenceObjectType": 0,
|
|
5281
|
-
"TextColor": "",
|
|
5282
|
-
"UiPageKey": "",
|
|
5283
|
-
"Value": "Wool Hat",
|
|
5284
|
-
"Visible": true
|
|
5285
|
-
},
|
|
5286
|
-
{
|
|
5287
|
-
"Accessory": "",
|
|
5288
|
-
"AdditionalValue": "",
|
|
5289
|
-
"ApiName": "ItemExternalID",
|
|
5290
|
-
"BackgroundColor": "",
|
|
5291
|
-
"Enabled": false,
|
|
5292
|
-
"EventsData": null,
|
|
5293
|
-
"FieldType": 1,
|
|
5294
|
-
"FormattedValue": "HT3001",
|
|
5295
|
-
"GroupFields": null,
|
|
5296
|
-
"Highlighted": false,
|
|
5297
|
-
"NotificationInfo": "",
|
|
5298
|
-
"OptionalValues": [],
|
|
5299
|
-
"ReferenceObjectInternalType": "",
|
|
5300
|
-
"ReferenceObjectSubType": "",
|
|
5301
|
-
"ReferenceObjectType": 0,
|
|
5302
|
-
"TextColor": "",
|
|
5303
|
-
"UiPageKey": "",
|
|
5304
|
-
"Value": "HT3001",
|
|
5305
|
-
"Visible": true
|
|
5306
|
-
},
|
|
5307
|
-
{
|
|
5308
|
-
"Accessory": "$",
|
|
5309
|
-
"AdditionalValue": "",
|
|
5310
|
-
"ApiName": "ItemPrice",
|
|
5311
|
-
"BackgroundColor": "",
|
|
5312
|
-
"Enabled": false,
|
|
5313
|
-
"EventsData": null,
|
|
5314
|
-
"FieldType": 9,
|
|
5315
|
-
"FormattedValue": "$23.00",
|
|
5316
|
-
"GroupFields": null,
|
|
5317
|
-
"Highlighted": false,
|
|
5318
|
-
"NotificationInfo": "",
|
|
5319
|
-
"OptionalValues": [],
|
|
5320
|
-
"ReferenceObjectInternalType": "",
|
|
5321
|
-
"ReferenceObjectSubType": "",
|
|
5322
|
-
"ReferenceObjectType": 4980834,
|
|
5323
|
-
"TextColor": "",
|
|
5324
|
-
"UiPageKey": "",
|
|
5325
|
-
"Value": "23.0000",
|
|
5326
|
-
"Visible": true
|
|
5327
|
-
},
|
|
5328
|
-
{
|
|
5329
|
-
"Accessory": "",
|
|
5330
|
-
"AdditionalValue": "",
|
|
5331
|
-
"ApiName": "UnitsQuantity",
|
|
5332
|
-
"BackgroundColor": "",
|
|
5333
|
-
"Enabled": true,
|
|
5334
|
-
"EventsData": null,
|
|
5335
|
-
"FieldType": 28,
|
|
5336
|
-
"FormattedValue": "1",
|
|
5337
|
-
"GroupFields": null,
|
|
5338
|
-
"Highlighted": false,
|
|
5339
|
-
"NotificationInfo": "",
|
|
5340
|
-
"OptionalValues": [],
|
|
5341
|
-
"ReferenceObjectInternalType": "",
|
|
5342
|
-
"ReferenceObjectSubType": "",
|
|
5343
|
-
"ReferenceObjectType": 0,
|
|
5344
|
-
"TextColor": "#FF0000",
|
|
5345
|
-
"UiPageKey": "",
|
|
5346
|
-
"Value": "1.0000",
|
|
5347
|
-
"Visible": true
|
|
5348
|
-
},
|
|
5349
|
-
{
|
|
5350
|
-
"Accessory": "",
|
|
5351
|
-
"AdditionalValue": "",
|
|
5352
|
-
"ApiName": "ItemTSASeason",
|
|
5353
|
-
"BackgroundColor": "",
|
|
5354
|
-
"Enabled": false,
|
|
5355
|
-
"EventsData": null,
|
|
5356
|
-
"FieldType": 1,
|
|
5357
|
-
"FormattedValue": "Fall",
|
|
5358
|
-
"GroupFields": null,
|
|
5359
|
-
"Highlighted": false,
|
|
5360
|
-
"NotificationInfo": "",
|
|
5361
|
-
"OptionalValues": [],
|
|
5362
|
-
"ReferenceObjectInternalType": "",
|
|
5363
|
-
"ReferenceObjectSubType": "",
|
|
5364
|
-
"ReferenceObjectType": 0,
|
|
5365
|
-
"TextColor": "",
|
|
5366
|
-
"UiPageKey": "",
|
|
5367
|
-
"Value": "Fall",
|
|
5368
|
-
"Visible": true
|
|
5369
|
-
},
|
|
5370
|
-
{
|
|
5371
|
-
"Accessory": "",
|
|
5372
|
-
"AdditionalValue": "",
|
|
5373
|
-
"ApiName": "ItemTSAPackaging",
|
|
5374
|
-
"BackgroundColor": "",
|
|
5375
|
-
"Enabled": false,
|
|
5376
|
-
"EventsData": null,
|
|
5377
|
-
"FieldType": 1,
|
|
5378
|
-
"FormattedValue": "A",
|
|
5379
|
-
"GroupFields": null,
|
|
5380
|
-
"Highlighted": false,
|
|
5381
|
-
"NotificationInfo": "",
|
|
5382
|
-
"OptionalValues": [],
|
|
5383
|
-
"ReferenceObjectInternalType": "",
|
|
5384
|
-
"ReferenceObjectSubType": "",
|
|
5385
|
-
"ReferenceObjectType": 0,
|
|
5386
|
-
"TextColor": "",
|
|
5387
|
-
"UiPageKey": "",
|
|
5388
|
-
"Value": "A",
|
|
5389
|
-
"Visible": true
|
|
5390
|
-
}
|
|
5391
|
-
],
|
|
5392
|
-
"IsEditable": false,
|
|
5393
|
-
"IsSelectableForActions": false,
|
|
5394
|
-
"MainAction": null,
|
|
5395
|
-
"Profile": null,
|
|
5396
|
-
"Type": 0,
|
|
5397
|
-
"UID": "040f35a5-c35f-4099-9ddf-717d346194b0"
|
|
5398
|
-
},
|
|
5399
|
-
{
|
|
5400
|
-
"AdditionalData": null,
|
|
5401
|
-
"BackgroundColor": "",
|
|
5402
|
-
"Fields": [
|
|
5403
|
-
{
|
|
5404
|
-
"Accessory": "",
|
|
5405
|
-
"AdditionalValue": "",
|
|
5406
|
-
"ApiName": "ItemTSAType",
|
|
5407
|
-
"BackgroundColor": "",
|
|
5408
|
-
"Enabled": false,
|
|
5409
|
-
"EventsData": null,
|
|
5410
|
-
"FieldType": 1,
|
|
5411
|
-
"FormattedValue": "Bottoms",
|
|
5412
|
-
"GroupFields": null,
|
|
5413
|
-
"Highlighted": false,
|
|
5414
|
-
"NotificationInfo": "",
|
|
5415
|
-
"OptionalValues": [],
|
|
5416
|
-
"ReferenceObjectInternalType": "",
|
|
5417
|
-
"ReferenceObjectSubType": "",
|
|
5418
|
-
"ReferenceObjectType": 7012437,
|
|
5419
|
-
"TextColor": "",
|
|
5420
|
-
"UiPageKey": "",
|
|
5421
|
-
"Value": "Bottoms",
|
|
5422
|
-
"Visible": true
|
|
5423
|
-
},
|
|
5424
|
-
{
|
|
5425
|
-
"Accessory": "",
|
|
5426
|
-
"AdditionalValue": "",
|
|
5427
|
-
"ApiName": "ObjectMenu",
|
|
5428
|
-
"BackgroundColor": "",
|
|
5429
|
-
"Enabled": true,
|
|
5430
|
-
"EventsData": null,
|
|
5431
|
-
"FieldType": 17,
|
|
5432
|
-
"FormattedValue": "",
|
|
5433
|
-
"GroupFields": null,
|
|
5434
|
-
"Highlighted": false,
|
|
5435
|
-
"NotificationInfo": "",
|
|
5436
|
-
"OptionalValues": [],
|
|
5437
|
-
"ReferenceObjectInternalType": "",
|
|
5438
|
-
"ReferenceObjectSubType": "",
|
|
5439
|
-
"ReferenceObjectType": 0,
|
|
5440
|
-
"TextColor": "",
|
|
5441
|
-
"UiPageKey": "",
|
|
5442
|
-
"Value": "",
|
|
5443
|
-
"Visible": true
|
|
5444
|
-
},
|
|
5445
|
-
{
|
|
5446
|
-
"Accessory": "",
|
|
5447
|
-
"AdditionalValue": "",
|
|
5448
|
-
"ApiName": "TSARelteadItems",
|
|
5449
|
-
"BackgroundColor": "",
|
|
5450
|
-
"Enabled": true,
|
|
5451
|
-
"EventsData": null,
|
|
5452
|
-
"FieldType": 1,
|
|
5453
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5454
|
-
"GroupFields": null,
|
|
5455
|
-
"Highlighted": false,
|
|
5456
|
-
"NotificationInfo": "",
|
|
5457
|
-
"OptionalValues": [],
|
|
5458
|
-
"ReferenceObjectInternalType": "",
|
|
5459
|
-
"ReferenceObjectSubType": "",
|
|
5460
|
-
"ReferenceObjectType": 3604586,
|
|
5461
|
-
"TextColor": "",
|
|
5462
|
-
"UiPageKey": "",
|
|
5463
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5464
|
-
"Visible": true
|
|
5465
|
-
},
|
|
5466
|
-
{
|
|
5467
|
-
"Accessory": "",
|
|
5468
|
-
"AdditionalValue": "",
|
|
5469
|
-
"ApiName": "Image",
|
|
5470
|
-
"BackgroundColor": "",
|
|
5471
|
-
"Enabled": false,
|
|
5472
|
-
"EventsData": null,
|
|
5473
|
-
"FieldType": 27,
|
|
5474
|
-
"FormattedValue": "",
|
|
5475
|
-
"GroupFields": null,
|
|
5476
|
-
"Highlighted": false,
|
|
5477
|
-
"NotificationInfo": "",
|
|
5478
|
-
"OptionalValues": [],
|
|
5479
|
-
"ReferenceObjectInternalType": "",
|
|
5480
|
-
"ReferenceObjectSubType": "",
|
|
5481
|
-
"ReferenceObjectType": 0,
|
|
5482
|
-
"TextColor": "",
|
|
5483
|
-
"UiPageKey": "",
|
|
5484
|
-
"Value": "",
|
|
5485
|
-
"Visible": true
|
|
5486
|
-
},
|
|
5487
|
-
{
|
|
5488
|
-
"Accessory": "",
|
|
5489
|
-
"AdditionalValue": "",
|
|
5490
|
-
"ApiName": "ItemName",
|
|
5491
|
-
"BackgroundColor": "",
|
|
5492
|
-
"Enabled": false,
|
|
5493
|
-
"EventsData": null,
|
|
5494
|
-
"FieldType": 1,
|
|
5495
|
-
"FormattedValue": "Loose fit",
|
|
5496
|
-
"GroupFields": null,
|
|
5497
|
-
"Highlighted": false,
|
|
5498
|
-
"NotificationInfo": "",
|
|
5499
|
-
"OptionalValues": [],
|
|
5500
|
-
"ReferenceObjectInternalType": "",
|
|
5501
|
-
"ReferenceObjectSubType": "",
|
|
5502
|
-
"ReferenceObjectType": 0,
|
|
5503
|
-
"TextColor": "",
|
|
5504
|
-
"UiPageKey": "",
|
|
5505
|
-
"Value": "Loose fit",
|
|
5506
|
-
"Visible": true
|
|
5507
|
-
},
|
|
5508
|
-
{
|
|
5509
|
-
"Accessory": "",
|
|
5510
|
-
"AdditionalValue": "",
|
|
5511
|
-
"ApiName": "ItemExternalID",
|
|
5512
|
-
"BackgroundColor": "",
|
|
5513
|
-
"Enabled": false,
|
|
5514
|
-
"EventsData": null,
|
|
5515
|
-
"FieldType": 1,
|
|
5516
|
-
"FormattedValue": "WJS32",
|
|
5517
|
-
"GroupFields": null,
|
|
5518
|
-
"Highlighted": false,
|
|
5519
|
-
"NotificationInfo": "",
|
|
5520
|
-
"OptionalValues": [],
|
|
5521
|
-
"ReferenceObjectInternalType": "",
|
|
5522
|
-
"ReferenceObjectSubType": "",
|
|
5523
|
-
"ReferenceObjectType": 0,
|
|
5524
|
-
"TextColor": "",
|
|
5525
|
-
"UiPageKey": "",
|
|
5526
|
-
"Value": "WJS32",
|
|
5527
|
-
"Visible": true
|
|
5528
|
-
},
|
|
5529
|
-
{
|
|
5530
|
-
"Accessory": "$",
|
|
5531
|
-
"AdditionalValue": "",
|
|
5532
|
-
"ApiName": "ItemPrice",
|
|
5533
|
-
"BackgroundColor": "",
|
|
5534
|
-
"Enabled": false,
|
|
5535
|
-
"EventsData": null,
|
|
5536
|
-
"FieldType": 9,
|
|
5537
|
-
"FormattedValue": "$123.00",
|
|
5538
|
-
"GroupFields": null,
|
|
5539
|
-
"Highlighted": false,
|
|
5540
|
-
"NotificationInfo": "",
|
|
5541
|
-
"OptionalValues": [],
|
|
5542
|
-
"ReferenceObjectInternalType": "",
|
|
5543
|
-
"ReferenceObjectSubType": "",
|
|
5544
|
-
"ReferenceObjectType": 0,
|
|
5545
|
-
"TextColor": "",
|
|
5546
|
-
"UiPageKey": "",
|
|
5547
|
-
"Value": "123.0000",
|
|
5548
|
-
"Visible": true
|
|
5549
|
-
},
|
|
5550
|
-
{
|
|
5551
|
-
"Accessory": "",
|
|
5552
|
-
"AdditionalValue": "",
|
|
5553
|
-
"ApiName": "UnitsQuantity",
|
|
5554
|
-
"BackgroundColor": "",
|
|
5555
|
-
"Enabled": true,
|
|
5556
|
-
"EventsData": null,
|
|
5557
|
-
"FieldType": 17,
|
|
5558
|
-
"FormattedValue": "0",
|
|
5559
|
-
"GroupFields": null,
|
|
5560
|
-
"Highlighted": false,
|
|
5561
|
-
"NotificationInfo": "",
|
|
5562
|
-
"OptionalValues": [],
|
|
5563
|
-
"ReferenceObjectInternalType": "",
|
|
5564
|
-
"ReferenceObjectSubType": "",
|
|
5565
|
-
"ReferenceObjectType": 0,
|
|
5566
|
-
"TextColor": "",
|
|
5567
|
-
"UiPageKey": "",
|
|
5568
|
-
"Value": "0.0000",
|
|
5569
|
-
"Visible": true
|
|
5570
|
-
},
|
|
5571
|
-
{
|
|
5572
|
-
"Accessory": "",
|
|
5573
|
-
"AdditionalValue": "",
|
|
5574
|
-
"ApiName": "ItemTSASeason",
|
|
5575
|
-
"BackgroundColor": "",
|
|
5576
|
-
"Enabled": false,
|
|
5577
|
-
"EventsData": null,
|
|
5578
|
-
"FieldType": 1,
|
|
5579
|
-
"FormattedValue": "Summer",
|
|
5580
|
-
"GroupFields": null,
|
|
5581
|
-
"Highlighted": false,
|
|
5582
|
-
"NotificationInfo": "",
|
|
5583
|
-
"OptionalValues": [],
|
|
5584
|
-
"ReferenceObjectInternalType": "",
|
|
5585
|
-
"ReferenceObjectSubType": "",
|
|
5586
|
-
"ReferenceObjectType": 0,
|
|
5587
|
-
"TextColor": "",
|
|
5588
|
-
"UiPageKey": "",
|
|
5589
|
-
"Value": "Summer",
|
|
5590
|
-
"Visible": true
|
|
5591
|
-
},
|
|
5592
|
-
{
|
|
5593
|
-
"Accessory": "",
|
|
5594
|
-
"AdditionalValue": "",
|
|
5595
|
-
"ApiName": "ItemTSAPackaging",
|
|
5596
|
-
"BackgroundColor": "",
|
|
5597
|
-
"Enabled": false,
|
|
5598
|
-
"EventsData": null,
|
|
5599
|
-
"FieldType": 1,
|
|
5600
|
-
"FormattedValue": "D",
|
|
5601
|
-
"GroupFields": null,
|
|
5602
|
-
"Highlighted": false,
|
|
5603
|
-
"NotificationInfo": "",
|
|
5604
|
-
"OptionalValues": [],
|
|
5605
|
-
"ReferenceObjectInternalType": "",
|
|
5606
|
-
"ReferenceObjectSubType": "",
|
|
5607
|
-
"ReferenceObjectType": 2123301536,
|
|
5608
|
-
"TextColor": "",
|
|
5609
|
-
"UiPageKey": "",
|
|
5610
|
-
"Value": "D",
|
|
5611
|
-
"Visible": true
|
|
5612
|
-
}
|
|
5613
|
-
],
|
|
5614
|
-
"IsEditable": false,
|
|
5615
|
-
"IsSelectableForActions": false,
|
|
5616
|
-
"MainAction": null,
|
|
5617
|
-
"Profile": null,
|
|
5618
|
-
"Type": 0,
|
|
5619
|
-
"UID": "777aecb5-6fed-4fa4-890f-71d9dd77205c"
|
|
5620
|
-
},
|
|
5621
|
-
{
|
|
5622
|
-
"AdditionalData": null,
|
|
5623
|
-
"BackgroundColor": "",
|
|
5624
|
-
"Fields": [
|
|
5625
|
-
{
|
|
5626
|
-
"Accessory": "",
|
|
5627
|
-
"AdditionalValue": "",
|
|
5628
|
-
"ApiName": "ItemTSAType",
|
|
5629
|
-
"BackgroundColor": "",
|
|
5630
|
-
"Enabled": false,
|
|
5631
|
-
"EventsData": null,
|
|
5632
|
-
"FieldType": 1,
|
|
5633
|
-
"FormattedValue": "Bottoms",
|
|
5634
|
-
"GroupFields": null,
|
|
5635
|
-
"Highlighted": false,
|
|
5636
|
-
"NotificationInfo": "",
|
|
5637
|
-
"OptionalValues": [],
|
|
5638
|
-
"ReferenceObjectInternalType": "",
|
|
5639
|
-
"ReferenceObjectSubType": "",
|
|
5640
|
-
"ReferenceObjectType": 2123301536,
|
|
5641
|
-
"TextColor": "",
|
|
5642
|
-
"UiPageKey": "",
|
|
5643
|
-
"Value": "Bottoms",
|
|
5644
|
-
"Visible": true
|
|
5645
|
-
},
|
|
5646
|
-
{
|
|
5647
|
-
"Accessory": "",
|
|
5648
|
-
"AdditionalValue": "",
|
|
5649
|
-
"ApiName": "ObjectMenu",
|
|
5650
|
-
"BackgroundColor": "",
|
|
5651
|
-
"Enabled": true,
|
|
5652
|
-
"EventsData": null,
|
|
5653
|
-
"FieldType": 17,
|
|
5654
|
-
"FormattedValue": "",
|
|
5655
|
-
"GroupFields": null,
|
|
5656
|
-
"Highlighted": false,
|
|
5657
|
-
"NotificationInfo": "",
|
|
5658
|
-
"OptionalValues": [],
|
|
5659
|
-
"ReferenceObjectInternalType": "",
|
|
5660
|
-
"ReferenceObjectSubType": "",
|
|
5661
|
-
"ReferenceObjectType": 0,
|
|
5662
|
-
"TextColor": "",
|
|
5663
|
-
"UiPageKey": "",
|
|
5664
|
-
"Value": "",
|
|
5665
|
-
"Visible": true
|
|
5666
|
-
},
|
|
5667
|
-
{
|
|
5668
|
-
"Accessory": "",
|
|
5669
|
-
"AdditionalValue": "",
|
|
5670
|
-
"ApiName": "TSARelteadItems",
|
|
5671
|
-
"BackgroundColor": "",
|
|
5672
|
-
"Enabled": true,
|
|
5673
|
-
"EventsData": null,
|
|
5674
|
-
"FieldType": 1,
|
|
5675
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5676
|
-
"GroupFields": null,
|
|
5677
|
-
"Highlighted": false,
|
|
5678
|
-
"NotificationInfo": "",
|
|
5679
|
-
"OptionalValues": [],
|
|
5680
|
-
"ReferenceObjectInternalType": "",
|
|
5681
|
-
"ReferenceObjectSubType": "",
|
|
5682
|
-
"ReferenceObjectType": 168635513,
|
|
5683
|
-
"TextColor": "",
|
|
5684
|
-
"UiPageKey": "",
|
|
5685
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5686
|
-
"Visible": true
|
|
5687
|
-
},
|
|
5688
|
-
{
|
|
5689
|
-
"Accessory": "",
|
|
5690
|
-
"AdditionalValue": "",
|
|
5691
|
-
"ApiName": "Image",
|
|
5692
|
-
"BackgroundColor": "",
|
|
5693
|
-
"Enabled": false,
|
|
5694
|
-
"EventsData": null,
|
|
5695
|
-
"FieldType": 27,
|
|
5696
|
-
"FormattedValue": "",
|
|
5697
|
-
"GroupFields": null,
|
|
5698
|
-
"Highlighted": false,
|
|
5699
|
-
"NotificationInfo": "",
|
|
5700
|
-
"OptionalValues": [],
|
|
5701
|
-
"ReferenceObjectInternalType": "",
|
|
5702
|
-
"ReferenceObjectSubType": "",
|
|
5703
|
-
"ReferenceObjectType": 602522121,
|
|
5704
|
-
"TextColor": "",
|
|
5705
|
-
"UiPageKey": "",
|
|
5706
|
-
"Value": "",
|
|
5707
|
-
"Visible": true
|
|
5708
|
-
},
|
|
5709
|
-
{
|
|
5710
|
-
"Accessory": "",
|
|
5711
|
-
"AdditionalValue": "",
|
|
5712
|
-
"ApiName": "ItemName",
|
|
5713
|
-
"BackgroundColor": "",
|
|
5714
|
-
"Enabled": false,
|
|
5715
|
-
"EventsData": null,
|
|
5716
|
-
"FieldType": 1,
|
|
5717
|
-
"FormattedValue": "Skinny jeans",
|
|
5718
|
-
"GroupFields": null,
|
|
5719
|
-
"Highlighted": false,
|
|
5720
|
-
"NotificationInfo": "",
|
|
5721
|
-
"OptionalValues": [],
|
|
5722
|
-
"ReferenceObjectInternalType": "",
|
|
5723
|
-
"ReferenceObjectSubType": "",
|
|
5724
|
-
"ReferenceObjectType": 0,
|
|
5725
|
-
"TextColor": "",
|
|
5726
|
-
"UiPageKey": "",
|
|
5727
|
-
"Value": "Skinny jeans",
|
|
5728
|
-
"Visible": true
|
|
5729
|
-
},
|
|
5730
|
-
{
|
|
5731
|
-
"Accessory": "",
|
|
5732
|
-
"AdditionalValue": "",
|
|
5733
|
-
"ApiName": "ItemExternalID",
|
|
5734
|
-
"BackgroundColor": "",
|
|
5735
|
-
"Enabled": false,
|
|
5736
|
-
"EventsData": null,
|
|
5737
|
-
"FieldType": 1,
|
|
5738
|
-
"FormattedValue": "WJS33",
|
|
5739
|
-
"GroupFields": null,
|
|
5740
|
-
"Highlighted": false,
|
|
5741
|
-
"NotificationInfo": "",
|
|
5742
|
-
"OptionalValues": [],
|
|
5743
|
-
"ReferenceObjectInternalType": "",
|
|
5744
|
-
"ReferenceObjectSubType": "",
|
|
5745
|
-
"ReferenceObjectType": 0,
|
|
5746
|
-
"TextColor": "",
|
|
5747
|
-
"UiPageKey": "",
|
|
5748
|
-
"Value": "WJS33",
|
|
5749
|
-
"Visible": true
|
|
5750
|
-
},
|
|
5751
|
-
{
|
|
5752
|
-
"Accessory": "$",
|
|
5753
|
-
"AdditionalValue": "",
|
|
5754
|
-
"ApiName": "ItemPrice",
|
|
5755
|
-
"BackgroundColor": "",
|
|
5756
|
-
"Enabled": false,
|
|
5757
|
-
"EventsData": null,
|
|
5758
|
-
"FieldType": 9,
|
|
5759
|
-
"FormattedValue": "$56.00",
|
|
5760
|
-
"GroupFields": null,
|
|
5761
|
-
"Highlighted": false,
|
|
5762
|
-
"NotificationInfo": "",
|
|
5763
|
-
"OptionalValues": [],
|
|
5764
|
-
"ReferenceObjectInternalType": "",
|
|
5765
|
-
"ReferenceObjectSubType": "",
|
|
5766
|
-
"ReferenceObjectType": 0,
|
|
5767
|
-
"TextColor": "",
|
|
5768
|
-
"UiPageKey": "",
|
|
5769
|
-
"Value": "56.0000",
|
|
5770
|
-
"Visible": true
|
|
5771
|
-
},
|
|
5772
|
-
{
|
|
5773
|
-
"Accessory": "",
|
|
5774
|
-
"AdditionalValue": "",
|
|
5775
|
-
"ApiName": "UnitsQuantity",
|
|
5776
|
-
"BackgroundColor": "",
|
|
5777
|
-
"Enabled": true,
|
|
5778
|
-
"EventsData": null,
|
|
5779
|
-
"FieldType": 17,
|
|
5780
|
-
"FormattedValue": "0",
|
|
5781
|
-
"GroupFields": null,
|
|
5782
|
-
"Highlighted": false,
|
|
5783
|
-
"NotificationInfo": "",
|
|
5784
|
-
"OptionalValues": [],
|
|
5785
|
-
"ReferenceObjectInternalType": "",
|
|
5786
|
-
"ReferenceObjectSubType": "",
|
|
5787
|
-
"ReferenceObjectType": 0,
|
|
5788
|
-
"TextColor": "",
|
|
5789
|
-
"UiPageKey": "",
|
|
5790
|
-
"Value": "0.0000",
|
|
5791
|
-
"Visible": true
|
|
5792
|
-
},
|
|
5793
|
-
{
|
|
5794
|
-
"Accessory": "",
|
|
5795
|
-
"AdditionalValue": "",
|
|
5796
|
-
"ApiName": "ItemTSASeason",
|
|
5797
|
-
"BackgroundColor": "",
|
|
5798
|
-
"Enabled": false,
|
|
5799
|
-
"EventsData": null,
|
|
5800
|
-
"FieldType": 1,
|
|
5801
|
-
"FormattedValue": "Winter",
|
|
5802
|
-
"GroupFields": null,
|
|
5803
|
-
"Highlighted": false,
|
|
5804
|
-
"NotificationInfo": "",
|
|
5805
|
-
"OptionalValues": [],
|
|
5806
|
-
"ReferenceObjectInternalType": "",
|
|
5807
|
-
"ReferenceObjectSubType": "",
|
|
5808
|
-
"ReferenceObjectType": 2123302832,
|
|
5809
|
-
"TextColor": "",
|
|
5810
|
-
"UiPageKey": "",
|
|
5811
|
-
"Value": "Winter",
|
|
5812
|
-
"Visible": true
|
|
5813
|
-
},
|
|
5814
|
-
{
|
|
5815
|
-
"Accessory": "",
|
|
5816
|
-
"AdditionalValue": "",
|
|
5817
|
-
"ApiName": "ItemTSAPackaging",
|
|
5818
|
-
"BackgroundColor": "",
|
|
5819
|
-
"Enabled": false,
|
|
5820
|
-
"EventsData": null,
|
|
5821
|
-
"FieldType": 1,
|
|
5822
|
-
"FormattedValue": "B",
|
|
5823
|
-
"GroupFields": null,
|
|
5824
|
-
"Highlighted": false,
|
|
5825
|
-
"NotificationInfo": "",
|
|
5826
|
-
"OptionalValues": [],
|
|
5827
|
-
"ReferenceObjectInternalType": "",
|
|
5828
|
-
"ReferenceObjectSubType": "",
|
|
5829
|
-
"ReferenceObjectType": 2123302832,
|
|
5830
|
-
"TextColor": "",
|
|
5831
|
-
"UiPageKey": "",
|
|
5832
|
-
"Value": "B",
|
|
5833
|
-
"Visible": true
|
|
5834
|
-
}
|
|
5835
|
-
],
|
|
5836
|
-
"IsEditable": false,
|
|
5837
|
-
"IsSelectableForActions": false,
|
|
5838
|
-
"MainAction": null,
|
|
5839
|
-
"Profile": null,
|
|
5840
|
-
"Type": 0,
|
|
5841
|
-
"UID": "7fac686e-3ec5-4b95-ba70-c109c8778b63"
|
|
5842
|
-
},
|
|
5843
|
-
{
|
|
5844
|
-
"AdditionalData": null,
|
|
5845
|
-
"BackgroundColor": "",
|
|
5846
|
-
"Fields": [
|
|
5847
|
-
{
|
|
5848
|
-
"Accessory": "",
|
|
5849
|
-
"AdditionalValue": "",
|
|
5850
|
-
"ApiName": "ItemTSAType",
|
|
5851
|
-
"BackgroundColor": "",
|
|
5852
|
-
"Enabled": false,
|
|
5853
|
-
"EventsData": null,
|
|
5854
|
-
"FieldType": 1,
|
|
5855
|
-
"FormattedValue": "Bottoms",
|
|
5856
|
-
"GroupFields": null,
|
|
5857
|
-
"Highlighted": false,
|
|
5858
|
-
"NotificationInfo": "",
|
|
5859
|
-
"OptionalValues": [],
|
|
5860
|
-
"ReferenceObjectInternalType": "",
|
|
5861
|
-
"ReferenceObjectSubType": "",
|
|
5862
|
-
"ReferenceObjectType": -1225808615,
|
|
5863
|
-
"TextColor": "",
|
|
5864
|
-
"UiPageKey": "",
|
|
5865
|
-
"Value": "Bottoms",
|
|
5866
|
-
"Visible": true
|
|
5867
|
-
},
|
|
5868
|
-
{
|
|
5869
|
-
"Accessory": "",
|
|
5870
|
-
"AdditionalValue": "",
|
|
5871
|
-
"ApiName": "ObjectMenu",
|
|
5872
|
-
"BackgroundColor": "",
|
|
5873
|
-
"Enabled": true,
|
|
5874
|
-
"EventsData": null,
|
|
5875
|
-
"FieldType": 17,
|
|
5876
|
-
"FormattedValue": "",
|
|
5877
|
-
"GroupFields": null,
|
|
5878
|
-
"Highlighted": false,
|
|
5879
|
-
"NotificationInfo": "",
|
|
5880
|
-
"OptionalValues": [],
|
|
5881
|
-
"ReferenceObjectInternalType": "",
|
|
5882
|
-
"ReferenceObjectSubType": "",
|
|
5883
|
-
"ReferenceObjectType": 602519433,
|
|
5884
|
-
"TextColor": "",
|
|
5885
|
-
"UiPageKey": "",
|
|
5886
|
-
"Value": "",
|
|
5887
|
-
"Visible": true
|
|
5888
|
-
},
|
|
5889
|
-
{
|
|
5890
|
-
"Accessory": "",
|
|
5891
|
-
"AdditionalValue": "",
|
|
5892
|
-
"ApiName": "TSARelteadItems",
|
|
5893
|
-
"BackgroundColor": "",
|
|
5894
|
-
"Enabled": true,
|
|
5895
|
-
"EventsData": null,
|
|
5896
|
-
"FieldType": 1,
|
|
5897
|
-
"FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5898
|
-
"GroupFields": null,
|
|
5899
|
-
"Highlighted": false,
|
|
5900
|
-
"NotificationInfo": "",
|
|
5901
|
-
"OptionalValues": [],
|
|
5902
|
-
"ReferenceObjectInternalType": "",
|
|
5903
|
-
"ReferenceObjectSubType": "",
|
|
5904
|
-
"ReferenceObjectType": 602528137,
|
|
5905
|
-
"TextColor": "",
|
|
5906
|
-
"UiPageKey": "",
|
|
5907
|
-
"Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
|
|
5908
|
-
"Visible": true
|
|
5909
|
-
},
|
|
5910
|
-
{
|
|
5911
|
-
"Accessory": "",
|
|
5912
|
-
"AdditionalValue": "",
|
|
5913
|
-
"ApiName": "Image",
|
|
5914
|
-
"BackgroundColor": "",
|
|
5915
|
-
"Enabled": false,
|
|
5916
|
-
"EventsData": null,
|
|
5917
|
-
"FieldType": 27,
|
|
5918
|
-
"FormattedValue": "",
|
|
5919
|
-
"GroupFields": null,
|
|
5920
|
-
"Highlighted": false,
|
|
5921
|
-
"NotificationInfo": "",
|
|
5922
|
-
"OptionalValues": [],
|
|
5923
|
-
"ReferenceObjectInternalType": "",
|
|
5924
|
-
"ReferenceObjectSubType": "",
|
|
5925
|
-
"ReferenceObjectType": 2123301536,
|
|
5926
|
-
"TextColor": "",
|
|
5927
|
-
"UiPageKey": "",
|
|
5928
|
-
"Value": "",
|
|
5929
|
-
"Visible": true
|
|
5930
|
-
},
|
|
5931
|
-
{
|
|
5932
|
-
"Accessory": "",
|
|
5933
|
-
"AdditionalValue": "",
|
|
5934
|
-
"ApiName": "ItemName",
|
|
5935
|
-
"BackgroundColor": "",
|
|
5936
|
-
"Enabled": false,
|
|
5937
|
-
"EventsData": null,
|
|
5938
|
-
"FieldType": 1,
|
|
5939
|
-
"FormattedValue": "Skinny jeans",
|
|
5940
|
-
"GroupFields": null,
|
|
5941
|
-
"Highlighted": false,
|
|
5942
|
-
"NotificationInfo": "",
|
|
5943
|
-
"OptionalValues": [],
|
|
5944
|
-
"ReferenceObjectInternalType": "",
|
|
5945
|
-
"ReferenceObjectSubType": "",
|
|
5946
|
-
"ReferenceObjectType": 2123302832,
|
|
5947
|
-
"TextColor": "",
|
|
5948
|
-
"UiPageKey": "",
|
|
5949
|
-
"Value": "Skinny jeans",
|
|
5950
|
-
"Visible": true
|
|
5951
|
-
},
|
|
5952
|
-
{
|
|
5953
|
-
"Accessory": "",
|
|
5954
|
-
"AdditionalValue": "",
|
|
5955
|
-
"ApiName": "ItemExternalID",
|
|
5956
|
-
"BackgroundColor": "",
|
|
5957
|
-
"Enabled": false,
|
|
5958
|
-
"EventsData": null,
|
|
5959
|
-
"FieldType": 1,
|
|
5960
|
-
"FormattedValue": "WJS31",
|
|
5961
|
-
"GroupFields": null,
|
|
5962
|
-
"Highlighted": false,
|
|
5963
|
-
"NotificationInfo": "",
|
|
5964
|
-
"OptionalValues": [],
|
|
5965
|
-
"ReferenceObjectInternalType": "",
|
|
5966
|
-
"ReferenceObjectSubType": "",
|
|
5967
|
-
"ReferenceObjectType": 0,
|
|
5968
|
-
"TextColor": "",
|
|
5969
|
-
"UiPageKey": "",
|
|
5970
|
-
"Value": "WJS31",
|
|
5971
|
-
"Visible": true
|
|
5972
|
-
},
|
|
5973
|
-
{
|
|
5974
|
-
"Accessory": "$",
|
|
5975
|
-
"AdditionalValue": "",
|
|
5976
|
-
"ApiName": "ItemPrice",
|
|
5977
|
-
"BackgroundColor": "",
|
|
5978
|
-
"Enabled": false,
|
|
5979
|
-
"EventsData": null,
|
|
5980
|
-
"FieldType": 9,
|
|
5981
|
-
"FormattedValue": "$118.00",
|
|
5982
|
-
"GroupFields": null,
|
|
5983
|
-
"Highlighted": false,
|
|
5984
|
-
"NotificationInfo": "",
|
|
5985
|
-
"OptionalValues": [],
|
|
5986
|
-
"ReferenceObjectInternalType": "",
|
|
5987
|
-
"ReferenceObjectSubType": "",
|
|
5988
|
-
"ReferenceObjectType": 0,
|
|
5989
|
-
"TextColor": "",
|
|
5990
|
-
"UiPageKey": "",
|
|
5991
|
-
"Value": "118.0000",
|
|
5992
|
-
"Visible": true
|
|
5993
|
-
},
|
|
5994
|
-
{
|
|
5995
|
-
"Accessory": "",
|
|
5996
|
-
"AdditionalValue": "",
|
|
5997
|
-
"ApiName": "UnitsQuantity",
|
|
5998
|
-
"BackgroundColor": "",
|
|
5999
|
-
"Enabled": true,
|
|
6000
|
-
"EventsData": null,
|
|
6001
|
-
"FieldType": 17,
|
|
6002
|
-
"FormattedValue": "0",
|
|
6003
|
-
"GroupFields": null,
|
|
6004
|
-
"Highlighted": false,
|
|
6005
|
-
"NotificationInfo": "",
|
|
6006
|
-
"OptionalValues": [],
|
|
6007
|
-
"ReferenceObjectInternalType": "",
|
|
6008
|
-
"ReferenceObjectSubType": "",
|
|
6009
|
-
"ReferenceObjectType": 2123302832,
|
|
6010
|
-
"TextColor": "",
|
|
6011
|
-
"UiPageKey": "",
|
|
6012
|
-
"Value": "0.0000",
|
|
6013
|
-
"Visible": true
|
|
6014
|
-
},
|
|
6015
|
-
{
|
|
6016
|
-
"Accessory": "",
|
|
6017
|
-
"AdditionalValue": "",
|
|
6018
|
-
"ApiName": "ItemTSASeason",
|
|
6019
|
-
"BackgroundColor": "",
|
|
6020
|
-
"Enabled": false,
|
|
6021
|
-
"EventsData": null,
|
|
6022
|
-
"FieldType": 1,
|
|
6023
|
-
"FormattedValue": "Summer",
|
|
6024
|
-
"GroupFields": null,
|
|
6025
|
-
"Highlighted": false,
|
|
6026
|
-
"NotificationInfo": "",
|
|
6027
|
-
"OptionalValues": [],
|
|
6028
|
-
"ReferenceObjectInternalType": "",
|
|
6029
|
-
"ReferenceObjectSubType": "",
|
|
6030
|
-
"ReferenceObjectType": 2123302832,
|
|
6031
|
-
"TextColor": "",
|
|
6032
|
-
"UiPageKey": "",
|
|
6033
|
-
"Value": "Summer",
|
|
6034
|
-
"Visible": true
|
|
6035
|
-
},
|
|
6036
|
-
{
|
|
6037
|
-
"Accessory": "",
|
|
6038
|
-
"AdditionalValue": "",
|
|
6039
|
-
"ApiName": "ItemTSAPackaging",
|
|
6040
|
-
"BackgroundColor": "",
|
|
6041
|
-
"Enabled": false,
|
|
6042
|
-
"EventsData": null,
|
|
6043
|
-
"FieldType": 1,
|
|
6044
|
-
"FormattedValue": "A",
|
|
6045
|
-
"GroupFields": null,
|
|
6046
|
-
"Highlighted": false,
|
|
6047
|
-
"NotificationInfo": "",
|
|
6048
|
-
"OptionalValues": [],
|
|
6049
|
-
"ReferenceObjectInternalType": "",
|
|
6050
|
-
"ReferenceObjectSubType": "",
|
|
6051
|
-
"ReferenceObjectType": 2123302832,
|
|
6052
|
-
"TextColor": "",
|
|
6053
|
-
"UiPageKey": "",
|
|
6054
|
-
"Value": "A",
|
|
6055
|
-
"Visible": true
|
|
6056
|
-
}
|
|
6057
|
-
],
|
|
6058
|
-
"IsEditable": false,
|
|
6059
|
-
"IsSelectableForActions": false,
|
|
6060
|
-
"MainAction": null,
|
|
6061
|
-
"Profile": null,
|
|
6062
|
-
"Type": 0,
|
|
6063
|
-
"UID": "10ef7ace-0086-4151-b075-f009fd20a01c"
|
|
6064
|
-
}
|
|
6065
|
-
],
|
|
6066
|
-
"UIControl": {
|
|
6067
|
-
"ObjectID": "",
|
|
6068
|
-
"Type": "",
|
|
6069
|
-
"DisplayName": "",
|
|
6070
|
-
"Columns": 10,
|
|
6071
|
-
"ControlFields": [
|
|
6072
|
-
{
|
|
6073
|
-
"ApiName": "ItemTSAType",
|
|
6074
|
-
"ColumnWidth": 10,
|
|
6075
|
-
"ColumnWidthType": 0,
|
|
6076
|
-
"FieldName": "Item Type",
|
|
6077
|
-
"FieldType": 1,
|
|
6078
|
-
"Layout": {
|
|
6079
|
-
"Height": 1,
|
|
6080
|
-
"LineNumber": 0,
|
|
6081
|
-
"Width": 1,
|
|
6082
|
-
"X": 0,
|
|
6083
|
-
"XAlignment": 1,
|
|
6084
|
-
"Y": 0,
|
|
6085
|
-
"YAlignment": 3
|
|
6086
|
-
},
|
|
6087
|
-
"Mandatory": false,
|
|
6088
|
-
"MaxFieldCharacters": 0,
|
|
6089
|
-
"MaxFieldLines": 0,
|
|
6090
|
-
"MaxValue": 1000000000,
|
|
6091
|
-
"MinValue": -1000000000,
|
|
6092
|
-
"ReadOnly": true,
|
|
6093
|
-
"Title": "Item Type"
|
|
6094
|
-
},
|
|
6095
|
-
{
|
|
6096
|
-
"ApiName": "ObjectMenu",
|
|
6097
|
-
"ColumnWidth": 10,
|
|
6098
|
-
"ColumnWidthType": 0,
|
|
6099
|
-
"FieldName": "",
|
|
6100
|
-
"FieldType": 17,
|
|
6101
|
-
"Layout": {
|
|
6102
|
-
"Height": 2,
|
|
6103
|
-
"LineNumber": 1,
|
|
6104
|
-
"Width": 2,
|
|
6105
|
-
"X": 8,
|
|
6106
|
-
"XAlignment": 1,
|
|
6107
|
-
"Y": 0,
|
|
6108
|
-
"YAlignment": 3
|
|
6109
|
-
},
|
|
6110
|
-
"Mandatory": false,
|
|
6111
|
-
"MaxFieldCharacters": 0,
|
|
6112
|
-
"MaxFieldLines": 0,
|
|
6113
|
-
"MaxValue": 1000000000,
|
|
6114
|
-
"MinValue": -1000000000,
|
|
6115
|
-
"ReadOnly": false,
|
|
6116
|
-
"Title": ""
|
|
6117
|
-
},
|
|
6118
|
-
{
|
|
6119
|
-
"ApiName": "TSARelteadItems",
|
|
6120
|
-
"ColumnWidth": 10,
|
|
6121
|
-
"ColumnWidthType": 0,
|
|
6122
|
-
"FieldName": "RelteadItems",
|
|
6123
|
-
"FieldType": 1,
|
|
6124
|
-
"Layout": {
|
|
6125
|
-
"Height": 8,
|
|
6126
|
-
"LineNumber": 2,
|
|
6127
|
-
"Width": 10,
|
|
6128
|
-
"X": 0,
|
|
6129
|
-
"XAlignment": 1,
|
|
6130
|
-
"Y": 2,
|
|
6131
|
-
"YAlignment": 3
|
|
6132
|
-
},
|
|
6133
|
-
"Mandatory": false,
|
|
6134
|
-
"MaxFieldCharacters": 0,
|
|
6135
|
-
"MaxFieldLines": 0,
|
|
6136
|
-
"MaxValue": 1000000000,
|
|
6137
|
-
"MinValue": -1000000000,
|
|
6138
|
-
"ReadOnly": false,
|
|
6139
|
-
"Title": "RelteadItems"
|
|
6140
|
-
},
|
|
6141
|
-
{
|
|
6142
|
-
"ApiName": "Image",
|
|
6143
|
-
"ColumnWidth": 10,
|
|
6144
|
-
"ColumnWidthType": 0,
|
|
6145
|
-
"FieldName": "",
|
|
6146
|
-
"FieldType": 20,
|
|
6147
|
-
"Layout": {
|
|
6148
|
-
"Height": 8,
|
|
6149
|
-
"LineNumber": 3,
|
|
6150
|
-
"Width": 10,
|
|
6151
|
-
"X": 0,
|
|
6152
|
-
"XAlignment": 3,
|
|
6153
|
-
"Y": 10,
|
|
6154
|
-
"YAlignment": 3
|
|
6155
|
-
},
|
|
6156
|
-
"Mandatory": false,
|
|
6157
|
-
"MaxFieldCharacters": 0,
|
|
6158
|
-
"MaxFieldLines": 0,
|
|
6159
|
-
"MaxValue": 1000000000,
|
|
6160
|
-
"MinValue": -1000000000,
|
|
6161
|
-
"ReadOnly": true,
|
|
6162
|
-
"Title": ""
|
|
6163
|
-
},
|
|
6164
|
-
{
|
|
6165
|
-
"ApiName": "ItemName",
|
|
6166
|
-
"ColumnWidth": 10,
|
|
6167
|
-
"ColumnWidthType": 0,
|
|
6168
|
-
"FieldName": "",
|
|
6169
|
-
"FieldType": 1,
|
|
6170
|
-
"Layout": {
|
|
6171
|
-
"Height": 1,
|
|
6172
|
-
"LineNumber": 4,
|
|
6173
|
-
"Width": 10,
|
|
6174
|
-
"X": 0,
|
|
6175
|
-
"XAlignment": 3,
|
|
6176
|
-
"Y": 18,
|
|
6177
|
-
"YAlignment": 3
|
|
6178
|
-
},
|
|
6179
|
-
"Mandatory": false,
|
|
6180
|
-
"MaxFieldCharacters": 0,
|
|
6181
|
-
"MaxFieldLines": 0,
|
|
6182
|
-
"MaxValue": 1000000000,
|
|
6183
|
-
"MinValue": -1000000000,
|
|
6184
|
-
"ReadOnly": true,
|
|
6185
|
-
"Title": ""
|
|
6186
|
-
},
|
|
6187
|
-
{
|
|
6188
|
-
"ApiName": "ItemExternalID",
|
|
6189
|
-
"ColumnWidth": 10,
|
|
6190
|
-
"ColumnWidthType": 0,
|
|
6191
|
-
"FieldName": "",
|
|
6192
|
-
"FieldType": 1,
|
|
6193
|
-
"Layout": {
|
|
6194
|
-
"Height": 1,
|
|
6195
|
-
"LineNumber": 5,
|
|
6196
|
-
"Width": 10,
|
|
6197
|
-
"X": 0,
|
|
6198
|
-
"XAlignment": 3,
|
|
6199
|
-
"Y": 19,
|
|
6200
|
-
"YAlignment": 3
|
|
6201
|
-
},
|
|
6202
|
-
"Mandatory": false,
|
|
6203
|
-
"MaxFieldCharacters": 0,
|
|
6204
|
-
"MaxFieldLines": 0,
|
|
6205
|
-
"MaxValue": 1000000000,
|
|
6206
|
-
"MinValue": -1000000000,
|
|
6207
|
-
"ReadOnly": true,
|
|
6208
|
-
"Title": ""
|
|
6209
|
-
},
|
|
6210
|
-
{
|
|
6211
|
-
"ApiName": "ItemPrice",
|
|
6212
|
-
"ColumnWidth": 10,
|
|
6213
|
-
"ColumnWidthType": 0,
|
|
6214
|
-
"FieldName": "",
|
|
6215
|
-
"FieldType": 9,
|
|
6216
|
-
"Layout": {
|
|
6217
|
-
"Height": 1,
|
|
6218
|
-
"LineNumber": 6,
|
|
6219
|
-
"Width": 10,
|
|
6220
|
-
"X": 0,
|
|
6221
|
-
"XAlignment": 3,
|
|
6222
|
-
"Y": 20,
|
|
6223
|
-
"YAlignment": 3
|
|
6224
|
-
},
|
|
6225
|
-
"Mandatory": false,
|
|
6226
|
-
"MaxFieldCharacters": 0,
|
|
6227
|
-
"MaxFieldLines": 0,
|
|
6228
|
-
"MaxValue": 1000000000,
|
|
6229
|
-
"MinValue": -1000000000,
|
|
6230
|
-
"ReadOnly": true,
|
|
6231
|
-
"Title": ""
|
|
6232
|
-
},
|
|
6233
|
-
{
|
|
6234
|
-
"ApiName": "UnitsQuantity",
|
|
6235
|
-
"ColumnWidth": 10,
|
|
6236
|
-
"ColumnWidthType": 0,
|
|
6237
|
-
"FieldName": "",
|
|
6238
|
-
"FieldType": 8,
|
|
6239
|
-
"Layout": {
|
|
6240
|
-
"Height": 2,
|
|
6241
|
-
"LineNumber": 7,
|
|
6242
|
-
"Width": 10,
|
|
6243
|
-
"X": 0,
|
|
6244
|
-
"XAlignment": 3,
|
|
6245
|
-
"Y": 21,
|
|
6246
|
-
"YAlignment": 3
|
|
6247
|
-
},
|
|
6248
|
-
"Mandatory": false,
|
|
6249
|
-
"MaxFieldCharacters": 0,
|
|
6250
|
-
"MaxFieldLines": 0,
|
|
6251
|
-
"MaxValue": 1000000000,
|
|
6252
|
-
"MinValue": -1000000000,
|
|
6253
|
-
"ReadOnly": false,
|
|
6254
|
-
"Title": ""
|
|
6255
|
-
},
|
|
6256
|
-
{
|
|
6257
|
-
"ApiName": "ItemTSASeason",
|
|
6258
|
-
"ColumnWidth": 10,
|
|
6259
|
-
"ColumnWidthType": 0,
|
|
6260
|
-
"FieldName": "Item Season",
|
|
6261
|
-
"FieldType": 1,
|
|
6262
|
-
"Layout": {
|
|
6263
|
-
"Height": 1,
|
|
6264
|
-
"LineNumber": 8,
|
|
6265
|
-
"Width": 1,
|
|
6266
|
-
"X": 0,
|
|
6267
|
-
"XAlignment": 1,
|
|
6268
|
-
"Y": 23,
|
|
6269
|
-
"YAlignment": 3
|
|
6270
|
-
},
|
|
6271
|
-
"Mandatory": false,
|
|
6272
|
-
"MaxFieldCharacters": 0,
|
|
6273
|
-
"MaxFieldLines": 0,
|
|
6274
|
-
"MaxValue": 1000000000,
|
|
6275
|
-
"MinValue": -1000000000,
|
|
6276
|
-
"ReadOnly": true,
|
|
6277
|
-
"Title": "Item Season"
|
|
6278
|
-
},
|
|
6279
|
-
{
|
|
6280
|
-
"ApiName": "ItemTSAPackaging",
|
|
6281
|
-
"ColumnWidth": 10,
|
|
6282
|
-
"ColumnWidthType": 0,
|
|
6283
|
-
"FieldName": "Item Packaging",
|
|
6284
|
-
"FieldType": 1,
|
|
6285
|
-
"Layout": {
|
|
6286
|
-
"Height": 1,
|
|
6287
|
-
"LineNumber": 9,
|
|
6288
|
-
"Width": 1,
|
|
6289
|
-
"X": 0,
|
|
6290
|
-
"XAlignment": 1,
|
|
6291
|
-
"Y": 24,
|
|
6292
|
-
"YAlignment": 3
|
|
6293
|
-
},
|
|
6294
|
-
"Mandatory": false,
|
|
6295
|
-
"MaxFieldCharacters": 0,
|
|
6296
|
-
"MaxFieldLines": 0,
|
|
6297
|
-
"MaxValue": 1000000000,
|
|
6298
|
-
"MinValue": -1000000000,
|
|
6299
|
-
"ReadOnly": true,
|
|
6300
|
-
"Title": "Item Packaging"
|
|
6301
|
-
}
|
|
6302
|
-
]
|
|
6303
|
-
}
|
|
3177
|
+
internalFormFieldChange: [{ type: core.Output }],
|
|
3178
|
+
internalFormFieldClick: [{ type: core.Output }]
|
|
6304
3179
|
};
|
|
6305
3180
|
|
|
6306
3181
|
var pepComponentsModules = [
|