@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
|
@@ -29,7 +29,7 @@ import { PepTextboxModule } from '@pepperi-addons/ngx-lib/textbox';
|
|
|
29
29
|
import { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';
|
|
30
30
|
import { PepGroupButtonsModule } from '@pepperi-addons/ngx-lib/group-buttons';
|
|
31
31
|
import { TranslateService } from '@ngx-translate/core';
|
|
32
|
-
import { fromEvent } from 'rxjs';
|
|
32
|
+
import { BehaviorSubject, fromEvent } from 'rxjs';
|
|
33
33
|
import { debounceTime } from 'rxjs/operators';
|
|
34
34
|
|
|
35
35
|
class PepFormComponent {
|
|
@@ -56,13 +56,14 @@ class PepFormComponent {
|
|
|
56
56
|
this.checkForChanges = null;
|
|
57
57
|
this.valueChange = new EventEmitter();
|
|
58
58
|
this.formValidationChange = new EventEmitter();
|
|
59
|
-
this.childClick = new EventEmitter();
|
|
60
|
-
this.childChange = new EventEmitter();
|
|
61
59
|
this.fieldClick = new EventEmitter();
|
|
60
|
+
this.internalFormFieldClick = new EventEmitter();
|
|
61
|
+
this.internalFormFieldChange = new EventEmitter();
|
|
62
62
|
this.isLocked = false;
|
|
63
63
|
// payLoad = '';
|
|
64
64
|
this.rows = [];
|
|
65
65
|
this.fields = [];
|
|
66
|
+
this._fieldsSubject = new BehaviorSubject([]);
|
|
66
67
|
this.columns = 1;
|
|
67
68
|
this.hasMenuFloatingOnOtherField = false;
|
|
68
69
|
this.indicatorsDataField = null;
|
|
@@ -84,6 +85,9 @@ class PepFormComponent {
|
|
|
84
85
|
get data() {
|
|
85
86
|
return this._data;
|
|
86
87
|
}
|
|
88
|
+
get fields$() {
|
|
89
|
+
return this._fieldsSubject.asObservable();
|
|
90
|
+
}
|
|
87
91
|
get shouldReloadForm() {
|
|
88
92
|
return this._shouldReloadForm;
|
|
89
93
|
}
|
|
@@ -618,6 +622,10 @@ class PepFormComponent {
|
|
|
618
622
|
}
|
|
619
623
|
return this.fb.group(group);
|
|
620
624
|
}
|
|
625
|
+
createBaseField(uiControlField, dataField) {
|
|
626
|
+
const customField = this.convertToCustomField(uiControlField, dataField, this.canEditObject, this.menuDataField, this.hasCampaignDataField, this.indicatorsDataField, this.objectId, this.parentId, this.searchCode);
|
|
627
|
+
return customField;
|
|
628
|
+
}
|
|
621
629
|
showFormValidationMessage() {
|
|
622
630
|
const fields = this.fields;
|
|
623
631
|
let emptyMandatoryFieldsMsg = '';
|
|
@@ -698,21 +706,6 @@ class PepFormComponent {
|
|
|
698
706
|
// }
|
|
699
707
|
}
|
|
700
708
|
ngOnDestroy() {
|
|
701
|
-
// if (this.valueChange) {
|
|
702
|
-
// this.valueChange.unsubscribe();
|
|
703
|
-
// }
|
|
704
|
-
// if (this.formValidationChange) {
|
|
705
|
-
// this.formValidationChange.unsubscribe();
|
|
706
|
-
// }
|
|
707
|
-
// if (this.childClick) {
|
|
708
|
-
// this.childClick.unsubscribe();
|
|
709
|
-
// }
|
|
710
|
-
// if (this.childChange) {
|
|
711
|
-
// this.childChange.unsubscribe();
|
|
712
|
-
// }
|
|
713
|
-
// if (this.fieldClick) {
|
|
714
|
-
// this.fieldClick.unsubscribe();
|
|
715
|
-
// }
|
|
716
709
|
}
|
|
717
710
|
getUiControlFields() {
|
|
718
711
|
return this.layout ? this.layout.ControlFields : [];
|
|
@@ -736,6 +729,7 @@ class PepFormComponent {
|
|
|
736
729
|
// this.layoutType === 'form' ||
|
|
737
730
|
this.layoutType === 'table') {
|
|
738
731
|
this.fields = fields;
|
|
732
|
+
this._fieldsSubject.next(fields);
|
|
739
733
|
this.rows = [];
|
|
740
734
|
for (let i = 0; i <= maxRow; i++) {
|
|
741
735
|
this.rows[i] = [];
|
|
@@ -827,6 +821,7 @@ class PepFormComponent {
|
|
|
827
821
|
: f1.col < f2.col
|
|
828
822
|
? -1
|
|
829
823
|
: 0);
|
|
824
|
+
this._fieldsSubject.next(fields);
|
|
830
825
|
}
|
|
831
826
|
}
|
|
832
827
|
}
|
|
@@ -836,9 +831,8 @@ class PepFormComponent {
|
|
|
836
831
|
if (!isForUpdate) {
|
|
837
832
|
const fields = [];
|
|
838
833
|
for (const currentField of this.fields) {
|
|
839
|
-
// Add all fields except 'internalPage'
|
|
840
|
-
if (currentField.controlType !== 'internalPage'
|
|
841
|
-
currentField.controlType !== 'internalCarusel') {
|
|
834
|
+
// Add all fields except 'internalPage' (for children).
|
|
835
|
+
if (currentField.controlType !== 'internalPage') {
|
|
842
836
|
fields.push(currentField);
|
|
843
837
|
}
|
|
844
838
|
if (!currentField.readonly) {
|
|
@@ -849,9 +843,16 @@ class PepFormComponent {
|
|
|
849
843
|
}
|
|
850
844
|
else {
|
|
851
845
|
// Update form values if changed by calculated fields.
|
|
852
|
-
for (
|
|
853
|
-
|
|
854
|
-
|
|
846
|
+
for (let i = 0; i < this.fields.length; i++) {
|
|
847
|
+
let currentField = this.fields[i];
|
|
848
|
+
if (currentField.controlType === 'internalCarusel') {
|
|
849
|
+
// Hack to override (update) the field.
|
|
850
|
+
const uiControlField = this.getUiControlFields().find(cf => cf.ApiName === currentField.key);
|
|
851
|
+
const dataField = this.data.Fields.find(df => df.ApiName === currentField.key);
|
|
852
|
+
currentField = this.createBaseField(uiControlField, dataField);
|
|
853
|
+
this._fieldsSubject.value[i] = currentField;
|
|
854
|
+
}
|
|
855
|
+
else if (currentField.controlType !== 'internalPage') {
|
|
855
856
|
if (currentField.groupFields &&
|
|
856
857
|
currentField.groupFields.length > 0) {
|
|
857
858
|
// for (let j = 0; j < currentField.groupFields.length; j++) {
|
|
@@ -917,6 +918,9 @@ class PepFormComponent {
|
|
|
917
918
|
});
|
|
918
919
|
}
|
|
919
920
|
}
|
|
921
|
+
else if (customField instanceof PepInternalCaruselField) {
|
|
922
|
+
options.pageInfo = updatedField.UIPageInfo;
|
|
923
|
+
}
|
|
920
924
|
customField.update(options);
|
|
921
925
|
}
|
|
922
926
|
updateForm() {
|
|
@@ -924,7 +928,7 @@ class PepFormComponent {
|
|
|
924
928
|
for (const currentField of this.data.Fields) {
|
|
925
929
|
const customField = this.fields.filter((f) => f.key === currentField.ApiName)[0];
|
|
926
930
|
// Update all fields except 'internalPage' type (for children).
|
|
927
|
-
if (customField &&
|
|
931
|
+
if (customField && customField.controlType !== 'internalPage') {
|
|
928
932
|
this.updateField(customField, currentField);
|
|
929
933
|
// Update the group fields.
|
|
930
934
|
if (customField.controlType === 'address' &&
|
|
@@ -1052,10 +1056,6 @@ class PepFormComponent {
|
|
|
1052
1056
|
});
|
|
1053
1057
|
}
|
|
1054
1058
|
const fields = [];
|
|
1055
|
-
// const matrixFields = controlFields.filter((cf) =>
|
|
1056
|
-
// this.isMatrixField(cf.ApiName)
|
|
1057
|
-
// ).length;
|
|
1058
|
-
// let matrixAlreadyPlaced = false;
|
|
1059
1059
|
controlFields.forEach((field, index) => {
|
|
1060
1060
|
const dataField = dataFields.filter((df) => df.ApiName === field.ApiName)[0];
|
|
1061
1061
|
if (!dataField) {
|
|
@@ -1077,21 +1077,12 @@ class PepFormComponent {
|
|
|
1077
1077
|
dataField.FieldType = FIELD_TYPE.InternalLink;
|
|
1078
1078
|
// dataField.Value = this.getInternalLinkHref();
|
|
1079
1079
|
}
|
|
1080
|
-
else if (dataField.Value.length > 0 &&
|
|
1081
|
-
(field.FieldType === FIELD_TYPE.ReferenceType ||
|
|
1082
|
-
field.FieldType === FIELD_TYPE.GuidReferenceType)) {
|
|
1083
|
-
// const transactionUrl =
|
|
1084
|
-
// this.data.MainAction === '2'
|
|
1085
|
-
// ? 'transactions/scope_items/'
|
|
1086
|
-
// : 'transactions/cart/';
|
|
1087
|
-
// dataField.Value = transactionUrl + dataField.Value;
|
|
1088
|
-
}
|
|
1089
1080
|
if (field.ApiName === 'ObjectMenu') {
|
|
1090
1081
|
dataField.Enabled = true;
|
|
1091
1082
|
// HACK : Until "Enabled" returns from the server, we set PepMenu to be
|
|
1092
1083
|
// Disabled in cart on regular items and not campign items.
|
|
1093
1084
|
}
|
|
1094
|
-
const customField = this.
|
|
1085
|
+
const customField = this.createBaseField(field, dataField);
|
|
1095
1086
|
fields.push(customField);
|
|
1096
1087
|
});
|
|
1097
1088
|
return fields.sort((f1, f2) => f1.row > f2.row
|
|
@@ -1124,6 +1115,7 @@ class PepFormComponent {
|
|
|
1124
1115
|
}
|
|
1125
1116
|
this.valueChange.emit({
|
|
1126
1117
|
id: this.data.UID.toString(),
|
|
1118
|
+
uiObjectKey: this.data.Key,
|
|
1127
1119
|
key: event.key,
|
|
1128
1120
|
value: event.value,
|
|
1129
1121
|
controlType: event.controlType,
|
|
@@ -1134,47 +1126,23 @@ class PepFormComponent {
|
|
|
1134
1126
|
const clickedUiControlField = this.data.Fields.filter((f) => f.ApiName === fieldClickEvent.key)[0];
|
|
1135
1127
|
const idType = this.data.Type ? this.data.Type.toString() : '';
|
|
1136
1128
|
if (clickedUiControlField) {
|
|
1137
|
-
|
|
1138
|
-
this.
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
}
|
|
1149
|
-
else if (clickedUiControlField.FieldType === FIELD_TYPE.ListOfObjects) {
|
|
1150
|
-
this.fieldClick.emit({
|
|
1151
|
-
id: this.data.UID.toString(),
|
|
1152
|
-
key: fieldClickEvent.key,
|
|
1153
|
-
idType,
|
|
1154
|
-
which: fieldClickEvent.eventWhich,
|
|
1155
|
-
value: fieldClickEvent.value,
|
|
1156
|
-
controlType: fieldClickEvent.controlType,
|
|
1157
|
-
fieldType: clickedUiControlField.FieldType,
|
|
1158
|
-
otherData: fieldClickEvent.otherData,
|
|
1159
|
-
});
|
|
1160
|
-
}
|
|
1161
|
-
else {
|
|
1162
|
-
this.fieldClick.emit({
|
|
1163
|
-
id: this.data.UID.toString(),
|
|
1164
|
-
key: fieldClickEvent.key,
|
|
1165
|
-
idType,
|
|
1166
|
-
which: fieldClickEvent.eventWhich,
|
|
1167
|
-
value: fieldClickEvent.value,
|
|
1168
|
-
controlType: fieldClickEvent.controlType,
|
|
1169
|
-
fieldType: clickedUiControlField.FieldType,
|
|
1170
|
-
otherData: fieldClickEvent.otherData,
|
|
1171
|
-
});
|
|
1172
|
-
}
|
|
1129
|
+
this.fieldClick.emit({
|
|
1130
|
+
id: this.data.UID.toString(),
|
|
1131
|
+
uiObjectKey: this.data.Key,
|
|
1132
|
+
key: fieldClickEvent.key,
|
|
1133
|
+
idType,
|
|
1134
|
+
which: fieldClickEvent.eventWhich,
|
|
1135
|
+
value: fieldClickEvent.value,
|
|
1136
|
+
controlType: fieldClickEvent.controlType,
|
|
1137
|
+
fieldType: clickedUiControlField.FieldType,
|
|
1138
|
+
otherData: fieldClickEvent.otherData,
|
|
1139
|
+
});
|
|
1173
1140
|
}
|
|
1174
1141
|
else {
|
|
1175
1142
|
// For other api names (like enter children etc).
|
|
1176
1143
|
this.fieldClick.emit({
|
|
1177
1144
|
id: this.data.UID.toString(),
|
|
1145
|
+
uiObjectKey: this.data.Key,
|
|
1178
1146
|
key: fieldClickEvent.key,
|
|
1179
1147
|
idType,
|
|
1180
1148
|
which: fieldClickEvent.eventWhich,
|
|
@@ -1185,16 +1153,16 @@ class PepFormComponent {
|
|
|
1185
1153
|
}
|
|
1186
1154
|
}
|
|
1187
1155
|
// This event is for handle the internal page events.
|
|
1188
|
-
|
|
1189
|
-
this.
|
|
1156
|
+
onInternalFormFieldClicked(internalFormFieldClick) {
|
|
1157
|
+
this.internalFormFieldClick.emit(internalFormFieldClick);
|
|
1190
1158
|
}
|
|
1191
1159
|
// This event is for handle the internal page events.
|
|
1192
|
-
|
|
1193
|
-
this.
|
|
1160
|
+
onInternalFormFieldChanged(internalFormFieldChange) {
|
|
1161
|
+
this.internalFormFieldChange.emit(internalFormFieldChange);
|
|
1194
1162
|
}
|
|
1195
1163
|
// This event is for handle the related items change events.
|
|
1196
1164
|
onFormValueChanged(event) {
|
|
1197
|
-
this.valueChange.emit(event);
|
|
1165
|
+
// this.valueChange.emit(event);
|
|
1198
1166
|
}
|
|
1199
1167
|
// This event is for handle the related items change events.
|
|
1200
1168
|
onFormFieldClick(event) {
|
|
@@ -1204,7 +1172,7 @@ class PepFormComponent {
|
|
|
1204
1172
|
PepFormComponent.decorators = [
|
|
1205
1173
|
{ type: Component, args: [{
|
|
1206
1174
|
selector: 'pep-form',
|
|
1207
|
-
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 (
|
|
1175
|
+
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>",
|
|
1208
1176
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1209
1177
|
styles: [":host{display:grid}"]
|
|
1210
1178
|
},] }
|
|
@@ -1233,9 +1201,9 @@ PepFormComponent.propDecorators = {
|
|
|
1233
1201
|
checkForChanges: [{ type: Input }],
|
|
1234
1202
|
valueChange: [{ type: Output }],
|
|
1235
1203
|
formValidationChange: [{ type: Output }],
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1204
|
+
fieldClick: [{ type: Output }],
|
|
1205
|
+
internalFormFieldClick: [{ type: Output }],
|
|
1206
|
+
internalFormFieldChange: [{ type: Output }]
|
|
1239
1207
|
};
|
|
1240
1208
|
|
|
1241
1209
|
class PepFieldGeneratorComponent {
|
|
@@ -1246,13 +1214,19 @@ class PepFieldGeneratorComponent {
|
|
|
1246
1214
|
this.showTitle = true;
|
|
1247
1215
|
this.checkForChanges = null;
|
|
1248
1216
|
this.valueChange = new EventEmitter();
|
|
1249
|
-
this.childChange = new EventEmitter();
|
|
1250
1217
|
this.formValidationChange = new EventEmitter();
|
|
1251
1218
|
this.elementClick = new EventEmitter();
|
|
1252
|
-
this.
|
|
1219
|
+
this.internalFormFieldChange = new EventEmitter();
|
|
1220
|
+
this.internalFormFieldClick = new EventEmitter();
|
|
1253
1221
|
this.formValueChange = new EventEmitter();
|
|
1254
1222
|
this.formFieldClick = new EventEmitter();
|
|
1255
1223
|
}
|
|
1224
|
+
set field(value) {
|
|
1225
|
+
this._field = value;
|
|
1226
|
+
}
|
|
1227
|
+
get field() {
|
|
1228
|
+
return this._field;
|
|
1229
|
+
}
|
|
1256
1230
|
get isValid() {
|
|
1257
1231
|
if (this.field.readonly || this.field.disabled) {
|
|
1258
1232
|
return true;
|
|
@@ -1303,8 +1277,8 @@ class PepFieldGeneratorComponent {
|
|
|
1303
1277
|
};
|
|
1304
1278
|
this.valueChange.emit(fieldValueChange);
|
|
1305
1279
|
}
|
|
1306
|
-
|
|
1307
|
-
this.
|
|
1280
|
+
onInternalFormFieldChanged(internalFormFieldChange) {
|
|
1281
|
+
this.internalFormFieldChange.emit(internalFormFieldChange);
|
|
1308
1282
|
}
|
|
1309
1283
|
onFormValidationChanged(formValidationChange) {
|
|
1310
1284
|
this.formValidationChange.emit(formValidationChange);
|
|
@@ -1312,8 +1286,8 @@ class PepFieldGeneratorComponent {
|
|
|
1312
1286
|
onClick(fieldClicked) {
|
|
1313
1287
|
this.elementClick.emit(fieldClicked);
|
|
1314
1288
|
}
|
|
1315
|
-
|
|
1316
|
-
this.
|
|
1289
|
+
onInternalFormFieldClick(internalFormFieldClick) {
|
|
1290
|
+
this.internalFormFieldClick.emit(internalFormFieldClick);
|
|
1317
1291
|
}
|
|
1318
1292
|
onFormValueChanged(event) {
|
|
1319
1293
|
this.formValueChange.emit(event);
|
|
@@ -1330,7 +1304,7 @@ class PepFieldGeneratorComponent {
|
|
|
1330
1304
|
PepFieldGeneratorComponent.decorators = [
|
|
1331
1305
|
{ type: Component, args: [{
|
|
1332
1306
|
selector: 'pep-field-generator',
|
|
1333
|
-
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 (
|
|
1307
|
+
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>",
|
|
1334
1308
|
encapsulation: ViewEncapsulation.Emulated,
|
|
1335
1309
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1336
1310
|
styles: [":host{width:100%;height:100%}"]
|
|
@@ -1345,10 +1319,10 @@ PepFieldGeneratorComponent.propDecorators = {
|
|
|
1345
1319
|
showTitle: [{ type: Input }],
|
|
1346
1320
|
checkForChanges: [{ type: Input }],
|
|
1347
1321
|
valueChange: [{ type: Output }],
|
|
1348
|
-
childChange: [{ type: Output }],
|
|
1349
1322
|
formValidationChange: [{ type: Output }],
|
|
1350
1323
|
elementClick: [{ type: Output }],
|
|
1351
|
-
|
|
1324
|
+
internalFormFieldChange: [{ type: Output }],
|
|
1325
|
+
internalFormFieldClick: [{ type: Output }],
|
|
1352
1326
|
formValueChange: [{ type: Output }],
|
|
1353
1327
|
formFieldClick: [{ type: Output }]
|
|
1354
1328
|
};
|
|
@@ -2208,8 +2182,8 @@ class PepInternalPageComponent {
|
|
|
2208
2182
|
this.changeDetectorRef = changeDetectorRef;
|
|
2209
2183
|
this.controlType = 'internalPage';
|
|
2210
2184
|
this.layoutType = 'form';
|
|
2211
|
-
this.
|
|
2212
|
-
this.
|
|
2185
|
+
this.internalFormFieldChange = new EventEmitter();
|
|
2186
|
+
this.internalFormFieldClick = new EventEmitter();
|
|
2213
2187
|
this.checkForChanges = null;
|
|
2214
2188
|
this.childData = null;
|
|
2215
2189
|
this.totalsRow = [];
|
|
@@ -2478,7 +2452,7 @@ class PepInternalPageComponent {
|
|
|
2478
2452
|
this.setTotalsRow();
|
|
2479
2453
|
this.checkForChanges = new Date();
|
|
2480
2454
|
// DI-15985
|
|
2481
|
-
this.
|
|
2455
|
+
this.internalFormFieldChange.emit(res);
|
|
2482
2456
|
this.changeDetectorRef.markForCheck();
|
|
2483
2457
|
}
|
|
2484
2458
|
onCustomizeObjectChanged(customizeObjectChangedData) {
|
|
@@ -2504,7 +2478,7 @@ class PepInternalPageComponent {
|
|
|
2504
2478
|
}
|
|
2505
2479
|
}
|
|
2506
2480
|
if (!handledEvent) {
|
|
2507
|
-
this.
|
|
2481
|
+
this.internalFormFieldClick.emit(fieldClickEvent);
|
|
2508
2482
|
}
|
|
2509
2483
|
}
|
|
2510
2484
|
}
|
|
@@ -2529,8 +2503,8 @@ PepInternalPageComponent.ctorParameters = () => [
|
|
|
2529
2503
|
PepInternalPageComponent.propDecorators = {
|
|
2530
2504
|
field: [{ type: Input }],
|
|
2531
2505
|
layoutType: [{ type: Input }],
|
|
2532
|
-
|
|
2533
|
-
|
|
2506
|
+
internalFormFieldChange: [{ type: Output }],
|
|
2507
|
+
internalFormFieldClick: [{ type: Output }],
|
|
2534
2508
|
my1mm: [{ type: ViewChild, args: ['my1mm',] }],
|
|
2535
2509
|
mainViewCont: [{ type: ViewChild, args: ['mainViewCont',] }],
|
|
2536
2510
|
orgCont: [{ type: ViewChild, args: ['orgCont', { read: ViewContainerRef },] }],
|
|
@@ -2543,19 +2517,19 @@ PepInternalPageComponent.propDecorators = {
|
|
|
2543
2517
|
class PepInternalCaruselService {
|
|
2544
2518
|
constructor(httpService) {
|
|
2545
2519
|
this.httpService = httpService;
|
|
2546
|
-
this.
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
.
|
|
2520
|
+
this.eventUrl = 'Service1.svc/v1/EmitEvent';
|
|
2521
|
+
}
|
|
2522
|
+
emitEvent(uiObjectKey, fieldKey, fieldValue, eventName, callbackFunc) {
|
|
2523
|
+
const body = {
|
|
2524
|
+
'EventKey': eventName,
|
|
2525
|
+
'EventData': JSON.stringify({
|
|
2526
|
+
UIObjectKey: uiObjectKey,
|
|
2527
|
+
FieldID: fieldKey,
|
|
2528
|
+
Value: fieldValue
|
|
2529
|
+
})
|
|
2530
|
+
};
|
|
2531
|
+
this.httpService.postWapiApiCall(`${this.eventUrl}`, body).subscribe((res) => {
|
|
2532
|
+
console.log(res);
|
|
2559
2533
|
callbackFunc(res);
|
|
2560
2534
|
}
|
|
2561
2535
|
// (error) => {},
|
|
@@ -2576,8 +2550,8 @@ class PepInternalCaruselComponent {
|
|
|
2576
2550
|
this.layoutService = layoutService;
|
|
2577
2551
|
this.internalCaruselService = internalCaruselService;
|
|
2578
2552
|
this.layoutType = 'form';
|
|
2579
|
-
this.
|
|
2580
|
-
this.
|
|
2553
|
+
this.internalFormFieldChange = new EventEmitter();
|
|
2554
|
+
this.internalFormFieldClick = new EventEmitter();
|
|
2581
2555
|
this._items = null;
|
|
2582
2556
|
this.layout = null;
|
|
2583
2557
|
this.duration = 1000;
|
|
@@ -2586,6 +2560,17 @@ class PepInternalCaruselComponent {
|
|
|
2586
2560
|
this.nextDisabled = false;
|
|
2587
2561
|
this.PepScreenSizeType = PepScreenSizeType;
|
|
2588
2562
|
}
|
|
2563
|
+
set field(value) {
|
|
2564
|
+
this._field = value;
|
|
2565
|
+
const caruselField = this._field;
|
|
2566
|
+
if (caruselField && caruselField.pageInfo) {
|
|
2567
|
+
this.layout = caruselField.pageInfo.UIControl;
|
|
2568
|
+
this.items = caruselField.pageInfo.Rows;
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
get field() {
|
|
2572
|
+
return this._field;
|
|
2573
|
+
}
|
|
2589
2574
|
set items(value) {
|
|
2590
2575
|
this._items = value;
|
|
2591
2576
|
// this.moveTo(0);
|
|
@@ -2594,17 +2579,6 @@ class PepInternalCaruselComponent {
|
|
|
2594
2579
|
return this._items;
|
|
2595
2580
|
}
|
|
2596
2581
|
ngOnInit() {
|
|
2597
|
-
// this.internalCaruselService.initCarusel(
|
|
2598
|
-
// this.field.objectId,
|
|
2599
|
-
// this.field.searchCode,
|
|
2600
|
-
// (caruselItems: any) => {
|
|
2601
|
-
const caruselField = this.field;
|
|
2602
|
-
if (caruselField) {
|
|
2603
|
-
this.layout = caruselField.pageInfo.UIControl;
|
|
2604
|
-
this.items = caruselField.pageInfo.Rows;
|
|
2605
|
-
}
|
|
2606
|
-
// }
|
|
2607
|
-
// );
|
|
2608
2582
|
}
|
|
2609
2583
|
ngAfterViewInit() {
|
|
2610
2584
|
this.layoutService.onResize$.subscribe((size) => {
|
|
@@ -2612,10 +2586,30 @@ class PepInternalCaruselComponent {
|
|
|
2612
2586
|
});
|
|
2613
2587
|
}
|
|
2614
2588
|
onCustomizeObjectChanged(customizeObjectChangedData) {
|
|
2615
|
-
this.
|
|
2589
|
+
this.internalCaruselService.emitEvent(customizeObjectChangedData.uiObjectKey, customizeObjectChangedData.key, customizeObjectChangedData.value, 'SetFieldValue', () => {
|
|
2590
|
+
this.internalFormFieldChange.emit(customizeObjectChangedData);
|
|
2591
|
+
});
|
|
2616
2592
|
}
|
|
2617
2593
|
onCustomizeFieldClick(fieldClickEvent) {
|
|
2618
|
-
|
|
2594
|
+
let handledEvent = false;
|
|
2595
|
+
// For the new custom form, the plus and minus events transform in the IPepFormFieldValueChangeEvent
|
|
2596
|
+
if (fieldClickEvent.controlType === 'qs') {
|
|
2597
|
+
if (fieldClickEvent.value === PepQuantitySelectorComponent.PLUS) {
|
|
2598
|
+
handledEvent = true;
|
|
2599
|
+
this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'IncrementFieldValue', () => {
|
|
2600
|
+
this.internalFormFieldChange.emit({});
|
|
2601
|
+
});
|
|
2602
|
+
}
|
|
2603
|
+
else if (fieldClickEvent.value === PepQuantitySelectorComponent.MINUS) {
|
|
2604
|
+
handledEvent = true;
|
|
2605
|
+
this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'DecrementFieldValue', () => {
|
|
2606
|
+
this.internalFormFieldChange.emit({});
|
|
2607
|
+
});
|
|
2608
|
+
}
|
|
2609
|
+
}
|
|
2610
|
+
if (!handledEvent) {
|
|
2611
|
+
this.internalFormFieldClick.emit(fieldClickEvent);
|
|
2612
|
+
}
|
|
2619
2613
|
}
|
|
2620
2614
|
moveLeft() {
|
|
2621
2615
|
const indexToMove = Math.max(this.carousel.currIndex - this.itemsToMove, 0);
|
|
@@ -2655,3136 +2649,8 @@ PepInternalCaruselComponent.propDecorators = {
|
|
|
2655
2649
|
carousel: [{ type: ViewChild, args: ['carousel', { read: PepCarouselComponent },] }],
|
|
2656
2650
|
field: [{ type: Input }],
|
|
2657
2651
|
layoutType: [{ type: Input }],
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
};
|
|
2661
|
-
const TempRelatedItems = {
|
|
2662
|
-
"Rows": [
|
|
2663
|
-
{
|
|
2664
|
-
"AdditionalData": null,
|
|
2665
|
-
"BackgroundColor": "",
|
|
2666
|
-
"Fields": [
|
|
2667
|
-
{
|
|
2668
|
-
"Accessory": "",
|
|
2669
|
-
"AdditionalValue": "",
|
|
2670
|
-
"ApiName": "ItemTSAType",
|
|
2671
|
-
"BackgroundColor": "",
|
|
2672
|
-
"Enabled": false,
|
|
2673
|
-
"EventsData": null,
|
|
2674
|
-
"FieldType": 1,
|
|
2675
|
-
"FormattedValue": "Accessories",
|
|
2676
|
-
"GroupFields": null,
|
|
2677
|
-
"Highlighted": false,
|
|
2678
|
-
"NotificationInfo": "",
|
|
2679
|
-
"OptionalValues": [],
|
|
2680
|
-
"ReferenceObjectInternalType": "",
|
|
2681
|
-
"ReferenceObjectSubType": "",
|
|
2682
|
-
"ReferenceObjectType": 2129893312,
|
|
2683
|
-
"TextColor": "",
|
|
2684
|
-
"UiPageKey": "",
|
|
2685
|
-
"Value": "Accessories",
|
|
2686
|
-
"Visible": true
|
|
2687
|
-
},
|
|
2688
|
-
{
|
|
2689
|
-
"Accessory": "",
|
|
2690
|
-
"AdditionalValue": "",
|
|
2691
|
-
"ApiName": "ObjectMenu",
|
|
2692
|
-
"BackgroundColor": "",
|
|
2693
|
-
"Enabled": true,
|
|
2694
|
-
"EventsData": null,
|
|
2695
|
-
"FieldType": 17,
|
|
2696
|
-
"FormattedValue": "",
|
|
2697
|
-
"GroupFields": null,
|
|
2698
|
-
"Highlighted": false,
|
|
2699
|
-
"NotificationInfo": "",
|
|
2700
|
-
"OptionalValues": [],
|
|
2701
|
-
"ReferenceObjectInternalType": "",
|
|
2702
|
-
"ReferenceObjectSubType": "",
|
|
2703
|
-
"ReferenceObjectType": 0,
|
|
2704
|
-
"TextColor": "",
|
|
2705
|
-
"UiPageKey": "",
|
|
2706
|
-
"Value": "",
|
|
2707
|
-
"Visible": true
|
|
2708
|
-
},
|
|
2709
|
-
{
|
|
2710
|
-
"Accessory": "",
|
|
2711
|
-
"AdditionalValue": "",
|
|
2712
|
-
"ApiName": "TSARelteadItems",
|
|
2713
|
-
"BackgroundColor": "",
|
|
2714
|
-
"Enabled": true,
|
|
2715
|
-
"EventsData": null,
|
|
2716
|
-
"FieldType": 1,
|
|
2717
|
-
"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\"]",
|
|
2718
|
-
"GroupFields": null,
|
|
2719
|
-
"Highlighted": false,
|
|
2720
|
-
"NotificationInfo": "",
|
|
2721
|
-
"OptionalValues": [],
|
|
2722
|
-
"ReferenceObjectInternalType": "",
|
|
2723
|
-
"ReferenceObjectSubType": "",
|
|
2724
|
-
"ReferenceObjectType": 0,
|
|
2725
|
-
"TextColor": "",
|
|
2726
|
-
"UiPageKey": "",
|
|
2727
|
-
"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\"]",
|
|
2728
|
-
"Visible": true
|
|
2729
|
-
},
|
|
2730
|
-
{
|
|
2731
|
-
"Accessory": "",
|
|
2732
|
-
"AdditionalValue": "",
|
|
2733
|
-
"ApiName": "Image",
|
|
2734
|
-
"BackgroundColor": "",
|
|
2735
|
-
"Enabled": false,
|
|
2736
|
-
"EventsData": null,
|
|
2737
|
-
"FieldType": 27,
|
|
2738
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
|
|
2739
|
-
"GroupFields": null,
|
|
2740
|
-
"Highlighted": false,
|
|
2741
|
-
"NotificationInfo": "",
|
|
2742
|
-
"OptionalValues": [],
|
|
2743
|
-
"ReferenceObjectInternalType": "",
|
|
2744
|
-
"ReferenceObjectSubType": "",
|
|
2745
|
-
"ReferenceObjectType": -1,
|
|
2746
|
-
"TextColor": "",
|
|
2747
|
-
"UiPageKey": "",
|
|
2748
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
|
|
2749
|
-
"Visible": true
|
|
2750
|
-
},
|
|
2751
|
-
{
|
|
2752
|
-
"Accessory": "",
|
|
2753
|
-
"AdditionalValue": "",
|
|
2754
|
-
"ApiName": "ItemName",
|
|
2755
|
-
"BackgroundColor": "",
|
|
2756
|
-
"Enabled": false,
|
|
2757
|
-
"EventsData": null,
|
|
2758
|
-
"FieldType": 1,
|
|
2759
|
-
"FormattedValue": "Wool Hat",
|
|
2760
|
-
"GroupFields": null,
|
|
2761
|
-
"Highlighted": false,
|
|
2762
|
-
"NotificationInfo": "",
|
|
2763
|
-
"OptionalValues": [],
|
|
2764
|
-
"ReferenceObjectInternalType": "",
|
|
2765
|
-
"ReferenceObjectSubType": "",
|
|
2766
|
-
"ReferenceObjectType": 2129890288,
|
|
2767
|
-
"TextColor": "",
|
|
2768
|
-
"UiPageKey": "",
|
|
2769
|
-
"Value": "Wool Hat",
|
|
2770
|
-
"Visible": true
|
|
2771
|
-
},
|
|
2772
|
-
{
|
|
2773
|
-
"Accessory": "",
|
|
2774
|
-
"AdditionalValue": "",
|
|
2775
|
-
"ApiName": "ItemExternalID",
|
|
2776
|
-
"BackgroundColor": "",
|
|
2777
|
-
"Enabled": false,
|
|
2778
|
-
"EventsData": null,
|
|
2779
|
-
"FieldType": 1,
|
|
2780
|
-
"FormattedValue": "HT3002",
|
|
2781
|
-
"GroupFields": null,
|
|
2782
|
-
"Highlighted": false,
|
|
2783
|
-
"NotificationInfo": "",
|
|
2784
|
-
"OptionalValues": [],
|
|
2785
|
-
"ReferenceObjectInternalType": "",
|
|
2786
|
-
"ReferenceObjectSubType": "",
|
|
2787
|
-
"ReferenceObjectType": 0,
|
|
2788
|
-
"TextColor": "",
|
|
2789
|
-
"UiPageKey": "",
|
|
2790
|
-
"Value": "HT3002",
|
|
2791
|
-
"Visible": true
|
|
2792
|
-
},
|
|
2793
|
-
{
|
|
2794
|
-
"Accessory": "$",
|
|
2795
|
-
"AdditionalValue": "",
|
|
2796
|
-
"ApiName": "ItemPrice",
|
|
2797
|
-
"BackgroundColor": "",
|
|
2798
|
-
"Enabled": false,
|
|
2799
|
-
"EventsData": null,
|
|
2800
|
-
"FieldType": 9,
|
|
2801
|
-
"FormattedValue": "$23.00",
|
|
2802
|
-
"GroupFields": null,
|
|
2803
|
-
"Highlighted": false,
|
|
2804
|
-
"NotificationInfo": "",
|
|
2805
|
-
"OptionalValues": [],
|
|
2806
|
-
"ReferenceObjectInternalType": "",
|
|
2807
|
-
"ReferenceObjectSubType": "",
|
|
2808
|
-
"ReferenceObjectType": 2129896912,
|
|
2809
|
-
"TextColor": "",
|
|
2810
|
-
"UiPageKey": "",
|
|
2811
|
-
"Value": "23.0000",
|
|
2812
|
-
"Visible": true
|
|
2813
|
-
},
|
|
2814
|
-
{
|
|
2815
|
-
"Accessory": "",
|
|
2816
|
-
"AdditionalValue": "",
|
|
2817
|
-
"ApiName": "UnitsQuantity",
|
|
2818
|
-
"BackgroundColor": "",
|
|
2819
|
-
"Enabled": true,
|
|
2820
|
-
"EventsData": null,
|
|
2821
|
-
"FieldType": 28,
|
|
2822
|
-
"FormattedValue": "0",
|
|
2823
|
-
"GroupFields": null,
|
|
2824
|
-
"Highlighted": false,
|
|
2825
|
-
"NotificationInfo": "",
|
|
2826
|
-
"OptionalValues": [],
|
|
2827
|
-
"ReferenceObjectInternalType": "",
|
|
2828
|
-
"ReferenceObjectSubType": "",
|
|
2829
|
-
"ReferenceObjectType": 0,
|
|
2830
|
-
"TextColor": "",
|
|
2831
|
-
"UiPageKey": "",
|
|
2832
|
-
"Value": "0.0000",
|
|
2833
|
-
"Visible": true
|
|
2834
|
-
},
|
|
2835
|
-
{
|
|
2836
|
-
"Accessory": "",
|
|
2837
|
-
"AdditionalValue": "",
|
|
2838
|
-
"ApiName": "ItemTSASeason",
|
|
2839
|
-
"BackgroundColor": "",
|
|
2840
|
-
"Enabled": false,
|
|
2841
|
-
"EventsData": null,
|
|
2842
|
-
"FieldType": 1,
|
|
2843
|
-
"FormattedValue": "Fall",
|
|
2844
|
-
"GroupFields": null,
|
|
2845
|
-
"Highlighted": false,
|
|
2846
|
-
"NotificationInfo": "",
|
|
2847
|
-
"OptionalValues": [],
|
|
2848
|
-
"ReferenceObjectInternalType": "",
|
|
2849
|
-
"ReferenceObjectSubType": "",
|
|
2850
|
-
"ReferenceObjectType": 0,
|
|
2851
|
-
"TextColor": "",
|
|
2852
|
-
"UiPageKey": "",
|
|
2853
|
-
"Value": "Fall",
|
|
2854
|
-
"Visible": true
|
|
2855
|
-
},
|
|
2856
|
-
{
|
|
2857
|
-
"Accessory": "",
|
|
2858
|
-
"AdditionalValue": "",
|
|
2859
|
-
"ApiName": "ItemTSAPackaging",
|
|
2860
|
-
"BackgroundColor": "",
|
|
2861
|
-
"Enabled": false,
|
|
2862
|
-
"EventsData": null,
|
|
2863
|
-
"FieldType": 1,
|
|
2864
|
-
"FormattedValue": "B",
|
|
2865
|
-
"GroupFields": null,
|
|
2866
|
-
"Highlighted": false,
|
|
2867
|
-
"NotificationInfo": "",
|
|
2868
|
-
"OptionalValues": [],
|
|
2869
|
-
"ReferenceObjectInternalType": "",
|
|
2870
|
-
"ReferenceObjectSubType": "",
|
|
2871
|
-
"ReferenceObjectType": -1218391789,
|
|
2872
|
-
"TextColor": "",
|
|
2873
|
-
"UiPageKey": "",
|
|
2874
|
-
"Value": "B",
|
|
2875
|
-
"Visible": true
|
|
2876
|
-
}
|
|
2877
|
-
],
|
|
2878
|
-
"IsEditable": false,
|
|
2879
|
-
"IsSelectableForActions": false,
|
|
2880
|
-
"MainAction": null,
|
|
2881
|
-
"Profile": null,
|
|
2882
|
-
"Type": 0,
|
|
2883
|
-
"UID": "56d8015b-705c-4a1d-9db9-8926fad4bc48"
|
|
2884
|
-
},
|
|
2885
|
-
{
|
|
2886
|
-
"AdditionalData": null,
|
|
2887
|
-
"BackgroundColor": "",
|
|
2888
|
-
"Fields": [
|
|
2889
|
-
{
|
|
2890
|
-
"Accessory": "",
|
|
2891
|
-
"AdditionalValue": "",
|
|
2892
|
-
"ApiName": "ItemTSAType",
|
|
2893
|
-
"BackgroundColor": "",
|
|
2894
|
-
"Enabled": false,
|
|
2895
|
-
"EventsData": null,
|
|
2896
|
-
"FieldType": 1,
|
|
2897
|
-
"FormattedValue": "Accessories",
|
|
2898
|
-
"GroupFields": null,
|
|
2899
|
-
"Highlighted": false,
|
|
2900
|
-
"NotificationInfo": "",
|
|
2901
|
-
"OptionalValues": [],
|
|
2902
|
-
"ReferenceObjectInternalType": "",
|
|
2903
|
-
"ReferenceObjectSubType": "",
|
|
2904
|
-
"ReferenceObjectType": -1,
|
|
2905
|
-
"TextColor": "",
|
|
2906
|
-
"UiPageKey": "",
|
|
2907
|
-
"Value": "Accessories",
|
|
2908
|
-
"Visible": true
|
|
2909
|
-
},
|
|
2910
|
-
{
|
|
2911
|
-
"Accessory": "",
|
|
2912
|
-
"AdditionalValue": "",
|
|
2913
|
-
"ApiName": "ObjectMenu",
|
|
2914
|
-
"BackgroundColor": "",
|
|
2915
|
-
"Enabled": true,
|
|
2916
|
-
"EventsData": null,
|
|
2917
|
-
"FieldType": 17,
|
|
2918
|
-
"FormattedValue": "",
|
|
2919
|
-
"GroupFields": null,
|
|
2920
|
-
"Highlighted": false,
|
|
2921
|
-
"NotificationInfo": "",
|
|
2922
|
-
"OptionalValues": [],
|
|
2923
|
-
"ReferenceObjectInternalType": "",
|
|
2924
|
-
"ReferenceObjectSubType": "",
|
|
2925
|
-
"ReferenceObjectType": 0,
|
|
2926
|
-
"TextColor": "",
|
|
2927
|
-
"UiPageKey": "",
|
|
2928
|
-
"Value": "",
|
|
2929
|
-
"Visible": true
|
|
2930
|
-
},
|
|
2931
|
-
{
|
|
2932
|
-
"Accessory": "",
|
|
2933
|
-
"AdditionalValue": "",
|
|
2934
|
-
"ApiName": "TSARelteadItems",
|
|
2935
|
-
"BackgroundColor": "",
|
|
2936
|
-
"Enabled": true,
|
|
2937
|
-
"EventsData": null,
|
|
2938
|
-
"FieldType": 1,
|
|
2939
|
-
"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\"]",
|
|
2940
|
-
"GroupFields": null,
|
|
2941
|
-
"Highlighted": false,
|
|
2942
|
-
"NotificationInfo": "",
|
|
2943
|
-
"OptionalValues": [],
|
|
2944
|
-
"ReferenceObjectInternalType": "",
|
|
2945
|
-
"ReferenceObjectSubType": "",
|
|
2946
|
-
"ReferenceObjectType": 0,
|
|
2947
|
-
"TextColor": "",
|
|
2948
|
-
"UiPageKey": "",
|
|
2949
|
-
"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\"]",
|
|
2950
|
-
"Visible": true
|
|
2951
|
-
},
|
|
2952
|
-
{
|
|
2953
|
-
"Accessory": "",
|
|
2954
|
-
"AdditionalValue": "",
|
|
2955
|
-
"ApiName": "Image",
|
|
2956
|
-
"BackgroundColor": "",
|
|
2957
|
-
"Enabled": false,
|
|
2958
|
-
"EventsData": null,
|
|
2959
|
-
"FieldType": 27,
|
|
2960
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
|
|
2961
|
-
"GroupFields": null,
|
|
2962
|
-
"Highlighted": false,
|
|
2963
|
-
"NotificationInfo": "",
|
|
2964
|
-
"OptionalValues": [],
|
|
2965
|
-
"ReferenceObjectInternalType": "",
|
|
2966
|
-
"ReferenceObjectSubType": "",
|
|
2967
|
-
"ReferenceObjectType": -1,
|
|
2968
|
-
"TextColor": "",
|
|
2969
|
-
"UiPageKey": "",
|
|
2970
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
|
|
2971
|
-
"Visible": true
|
|
2972
|
-
},
|
|
2973
|
-
{
|
|
2974
|
-
"Accessory": "",
|
|
2975
|
-
"AdditionalValue": "",
|
|
2976
|
-
"ApiName": "ItemName",
|
|
2977
|
-
"BackgroundColor": "",
|
|
2978
|
-
"Enabled": false,
|
|
2979
|
-
"EventsData": null,
|
|
2980
|
-
"FieldType": 1,
|
|
2981
|
-
"FormattedValue": "Elegant Hat",
|
|
2982
|
-
"GroupFields": null,
|
|
2983
|
-
"Highlighted": false,
|
|
2984
|
-
"NotificationInfo": "",
|
|
2985
|
-
"OptionalValues": [],
|
|
2986
|
-
"ReferenceObjectInternalType": "",
|
|
2987
|
-
"ReferenceObjectSubType": "",
|
|
2988
|
-
"ReferenceObjectType": -1272524079,
|
|
2989
|
-
"TextColor": "",
|
|
2990
|
-
"UiPageKey": "",
|
|
2991
|
-
"Value": "Elegant Hat",
|
|
2992
|
-
"Visible": true
|
|
2993
|
-
},
|
|
2994
|
-
{
|
|
2995
|
-
"Accessory": "",
|
|
2996
|
-
"AdditionalValue": "",
|
|
2997
|
-
"ApiName": "ItemExternalID",
|
|
2998
|
-
"BackgroundColor": "",
|
|
2999
|
-
"Enabled": false,
|
|
3000
|
-
"EventsData": null,
|
|
3001
|
-
"FieldType": 1,
|
|
3002
|
-
"FormattedValue": "HT3003",
|
|
3003
|
-
"GroupFields": null,
|
|
3004
|
-
"Highlighted": false,
|
|
3005
|
-
"NotificationInfo": "",
|
|
3006
|
-
"OptionalValues": [],
|
|
3007
|
-
"ReferenceObjectInternalType": "",
|
|
3008
|
-
"ReferenceObjectSubType": "",
|
|
3009
|
-
"ReferenceObjectType": 2129893168,
|
|
3010
|
-
"TextColor": "",
|
|
3011
|
-
"UiPageKey": "",
|
|
3012
|
-
"Value": "HT3003",
|
|
3013
|
-
"Visible": true
|
|
3014
|
-
},
|
|
3015
|
-
{
|
|
3016
|
-
"Accessory": "$",
|
|
3017
|
-
"AdditionalValue": "",
|
|
3018
|
-
"ApiName": "ItemPrice",
|
|
3019
|
-
"BackgroundColor": "",
|
|
3020
|
-
"Enabled": false,
|
|
3021
|
-
"EventsData": null,
|
|
3022
|
-
"FieldType": 9,
|
|
3023
|
-
"FormattedValue": "$24.00",
|
|
3024
|
-
"GroupFields": null,
|
|
3025
|
-
"Highlighted": false,
|
|
3026
|
-
"NotificationInfo": "",
|
|
3027
|
-
"OptionalValues": [],
|
|
3028
|
-
"ReferenceObjectInternalType": "",
|
|
3029
|
-
"ReferenceObjectSubType": "",
|
|
3030
|
-
"ReferenceObjectType": -1230843819,
|
|
3031
|
-
"TextColor": "",
|
|
3032
|
-
"UiPageKey": "",
|
|
3033
|
-
"Value": "24.0000",
|
|
3034
|
-
"Visible": true
|
|
3035
|
-
},
|
|
3036
|
-
{
|
|
3037
|
-
"Accessory": "",
|
|
3038
|
-
"AdditionalValue": "",
|
|
3039
|
-
"ApiName": "UnitsQuantity",
|
|
3040
|
-
"BackgroundColor": "",
|
|
3041
|
-
"Enabled": true,
|
|
3042
|
-
"EventsData": null,
|
|
3043
|
-
"FieldType": 28,
|
|
3044
|
-
"FormattedValue": "0",
|
|
3045
|
-
"GroupFields": null,
|
|
3046
|
-
"Highlighted": false,
|
|
3047
|
-
"NotificationInfo": "",
|
|
3048
|
-
"OptionalValues": [],
|
|
3049
|
-
"ReferenceObjectInternalType": "",
|
|
3050
|
-
"ReferenceObjectSubType": "",
|
|
3051
|
-
"ReferenceObjectType": -1,
|
|
3052
|
-
"TextColor": "",
|
|
3053
|
-
"UiPageKey": "",
|
|
3054
|
-
"Value": "0.0000",
|
|
3055
|
-
"Visible": true
|
|
3056
|
-
},
|
|
3057
|
-
{
|
|
3058
|
-
"Accessory": "",
|
|
3059
|
-
"AdditionalValue": "",
|
|
3060
|
-
"ApiName": "ItemTSASeason",
|
|
3061
|
-
"BackgroundColor": "",
|
|
3062
|
-
"Enabled": false,
|
|
3063
|
-
"EventsData": null,
|
|
3064
|
-
"FieldType": 1,
|
|
3065
|
-
"FormattedValue": "Fall",
|
|
3066
|
-
"GroupFields": null,
|
|
3067
|
-
"Highlighted": false,
|
|
3068
|
-
"NotificationInfo": "",
|
|
3069
|
-
"OptionalValues": [],
|
|
3070
|
-
"ReferenceObjectInternalType": "",
|
|
3071
|
-
"ReferenceObjectSubType": "",
|
|
3072
|
-
"ReferenceObjectType": -1,
|
|
3073
|
-
"TextColor": "",
|
|
3074
|
-
"UiPageKey": "",
|
|
3075
|
-
"Value": "Fall",
|
|
3076
|
-
"Visible": true
|
|
3077
|
-
},
|
|
3078
|
-
{
|
|
3079
|
-
"Accessory": "",
|
|
3080
|
-
"AdditionalValue": "",
|
|
3081
|
-
"ApiName": "ItemTSAPackaging",
|
|
3082
|
-
"BackgroundColor": "",
|
|
3083
|
-
"Enabled": false,
|
|
3084
|
-
"EventsData": null,
|
|
3085
|
-
"FieldType": 1,
|
|
3086
|
-
"FormattedValue": "C",
|
|
3087
|
-
"GroupFields": null,
|
|
3088
|
-
"Highlighted": false,
|
|
3089
|
-
"NotificationInfo": "",
|
|
3090
|
-
"OptionalValues": [],
|
|
3091
|
-
"ReferenceObjectInternalType": "",
|
|
3092
|
-
"ReferenceObjectSubType": "",
|
|
3093
|
-
"ReferenceObjectType": 0,
|
|
3094
|
-
"TextColor": "",
|
|
3095
|
-
"UiPageKey": "",
|
|
3096
|
-
"Value": "C",
|
|
3097
|
-
"Visible": true
|
|
3098
|
-
}
|
|
3099
|
-
],
|
|
3100
|
-
"IsEditable": false,
|
|
3101
|
-
"IsSelectableForActions": false,
|
|
3102
|
-
"MainAction": null,
|
|
3103
|
-
"Profile": null,
|
|
3104
|
-
"Type": 0,
|
|
3105
|
-
"UID": "32fca2a8-9882-44e3-a9e2-fb98d4282529"
|
|
3106
|
-
},
|
|
3107
|
-
{
|
|
3108
|
-
"AdditionalData": null,
|
|
3109
|
-
"BackgroundColor": "",
|
|
3110
|
-
"Fields": [
|
|
3111
|
-
{
|
|
3112
|
-
"Accessory": "",
|
|
3113
|
-
"AdditionalValue": "",
|
|
3114
|
-
"ApiName": "ItemTSAType",
|
|
3115
|
-
"BackgroundColor": "",
|
|
3116
|
-
"Enabled": false,
|
|
3117
|
-
"EventsData": null,
|
|
3118
|
-
"FieldType": 1,
|
|
3119
|
-
"FormattedValue": "Accessories",
|
|
3120
|
-
"GroupFields": null,
|
|
3121
|
-
"Highlighted": false,
|
|
3122
|
-
"NotificationInfo": "",
|
|
3123
|
-
"OptionalValues": [],
|
|
3124
|
-
"ReferenceObjectInternalType": "",
|
|
3125
|
-
"ReferenceObjectSubType": "",
|
|
3126
|
-
"ReferenceObjectType": 14,
|
|
3127
|
-
"TextColor": "",
|
|
3128
|
-
"UiPageKey": "",
|
|
3129
|
-
"Value": "Accessories",
|
|
3130
|
-
"Visible": true
|
|
3131
|
-
},
|
|
3132
|
-
{
|
|
3133
|
-
"Accessory": "",
|
|
3134
|
-
"AdditionalValue": "",
|
|
3135
|
-
"ApiName": "ObjectMenu",
|
|
3136
|
-
"BackgroundColor": "",
|
|
3137
|
-
"Enabled": true,
|
|
3138
|
-
"EventsData": null,
|
|
3139
|
-
"FieldType": 17,
|
|
3140
|
-
"FormattedValue": "",
|
|
3141
|
-
"GroupFields": null,
|
|
3142
|
-
"Highlighted": false,
|
|
3143
|
-
"NotificationInfo": "",
|
|
3144
|
-
"OptionalValues": [],
|
|
3145
|
-
"ReferenceObjectInternalType": "",
|
|
3146
|
-
"ReferenceObjectSubType": "",
|
|
3147
|
-
"ReferenceObjectType": 2129897584,
|
|
3148
|
-
"TextColor": "",
|
|
3149
|
-
"UiPageKey": "",
|
|
3150
|
-
"Value": "",
|
|
3151
|
-
"Visible": true
|
|
3152
|
-
},
|
|
3153
|
-
{
|
|
3154
|
-
"Accessory": "",
|
|
3155
|
-
"AdditionalValue": "",
|
|
3156
|
-
"ApiName": "TSARelteadItems",
|
|
3157
|
-
"BackgroundColor": "",
|
|
3158
|
-
"Enabled": true,
|
|
3159
|
-
"EventsData": null,
|
|
3160
|
-
"FieldType": 1,
|
|
3161
|
-
"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\"]",
|
|
3162
|
-
"GroupFields": null,
|
|
3163
|
-
"Highlighted": false,
|
|
3164
|
-
"NotificationInfo": "",
|
|
3165
|
-
"OptionalValues": [],
|
|
3166
|
-
"ReferenceObjectInternalType": "",
|
|
3167
|
-
"ReferenceObjectSubType": "",
|
|
3168
|
-
"ReferenceObjectType": 0,
|
|
3169
|
-
"TextColor": "",
|
|
3170
|
-
"UiPageKey": "",
|
|
3171
|
-
"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\"]",
|
|
3172
|
-
"Visible": true
|
|
3173
|
-
},
|
|
3174
|
-
{
|
|
3175
|
-
"Accessory": "",
|
|
3176
|
-
"AdditionalValue": "",
|
|
3177
|
-
"ApiName": "Image",
|
|
3178
|
-
"BackgroundColor": "",
|
|
3179
|
-
"Enabled": false,
|
|
3180
|
-
"EventsData": null,
|
|
3181
|
-
"FieldType": 27,
|
|
3182
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
|
|
3183
|
-
"GroupFields": null,
|
|
3184
|
-
"Highlighted": false,
|
|
3185
|
-
"NotificationInfo": "",
|
|
3186
|
-
"OptionalValues": [],
|
|
3187
|
-
"ReferenceObjectInternalType": "",
|
|
3188
|
-
"ReferenceObjectSubType": "",
|
|
3189
|
-
"ReferenceObjectType": -1252338867,
|
|
3190
|
-
"TextColor": "",
|
|
3191
|
-
"UiPageKey": "",
|
|
3192
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
|
|
3193
|
-
"Visible": true
|
|
3194
|
-
},
|
|
3195
|
-
{
|
|
3196
|
-
"Accessory": "",
|
|
3197
|
-
"AdditionalValue": "",
|
|
3198
|
-
"ApiName": "ItemName",
|
|
3199
|
-
"BackgroundColor": "",
|
|
3200
|
-
"Enabled": false,
|
|
3201
|
-
"EventsData": null,
|
|
3202
|
-
"FieldType": 1,
|
|
3203
|
-
"FormattedValue": "Elegant Hat",
|
|
3204
|
-
"GroupFields": null,
|
|
3205
|
-
"Highlighted": false,
|
|
3206
|
-
"NotificationInfo": "",
|
|
3207
|
-
"OptionalValues": [],
|
|
3208
|
-
"ReferenceObjectInternalType": "",
|
|
3209
|
-
"ReferenceObjectSubType": "",
|
|
3210
|
-
"ReferenceObjectType": 2,
|
|
3211
|
-
"TextColor": "",
|
|
3212
|
-
"UiPageKey": "",
|
|
3213
|
-
"Value": "Elegant Hat",
|
|
3214
|
-
"Visible": true
|
|
3215
|
-
},
|
|
3216
|
-
{
|
|
3217
|
-
"Accessory": "",
|
|
3218
|
-
"AdditionalValue": "",
|
|
3219
|
-
"ApiName": "ItemExternalID",
|
|
3220
|
-
"BackgroundColor": "",
|
|
3221
|
-
"Enabled": false,
|
|
3222
|
-
"EventsData": null,
|
|
3223
|
-
"FieldType": 1,
|
|
3224
|
-
"FormattedValue": "HT3004",
|
|
3225
|
-
"GroupFields": null,
|
|
3226
|
-
"Highlighted": false,
|
|
3227
|
-
"NotificationInfo": "",
|
|
3228
|
-
"OptionalValues": [],
|
|
3229
|
-
"ReferenceObjectInternalType": "",
|
|
3230
|
-
"ReferenceObjectSubType": "",
|
|
3231
|
-
"ReferenceObjectType": 2125052912,
|
|
3232
|
-
"TextColor": "",
|
|
3233
|
-
"UiPageKey": "",
|
|
3234
|
-
"Value": "HT3004",
|
|
3235
|
-
"Visible": true
|
|
3236
|
-
},
|
|
3237
|
-
{
|
|
3238
|
-
"Accessory": "$",
|
|
3239
|
-
"AdditionalValue": "",
|
|
3240
|
-
"ApiName": "ItemPrice",
|
|
3241
|
-
"BackgroundColor": "",
|
|
3242
|
-
"Enabled": false,
|
|
3243
|
-
"EventsData": null,
|
|
3244
|
-
"FieldType": 9,
|
|
3245
|
-
"FormattedValue": "$21.00",
|
|
3246
|
-
"GroupFields": null,
|
|
3247
|
-
"Highlighted": false,
|
|
3248
|
-
"NotificationInfo": "",
|
|
3249
|
-
"OptionalValues": [],
|
|
3250
|
-
"ReferenceObjectInternalType": "",
|
|
3251
|
-
"ReferenceObjectSubType": "",
|
|
3252
|
-
"ReferenceObjectType": 0,
|
|
3253
|
-
"TextColor": "",
|
|
3254
|
-
"UiPageKey": "",
|
|
3255
|
-
"Value": "21.0000",
|
|
3256
|
-
"Visible": true
|
|
3257
|
-
},
|
|
3258
|
-
{
|
|
3259
|
-
"Accessory": "",
|
|
3260
|
-
"AdditionalValue": "",
|
|
3261
|
-
"ApiName": "UnitsQuantity",
|
|
3262
|
-
"BackgroundColor": "",
|
|
3263
|
-
"Enabled": true,
|
|
3264
|
-
"EventsData": null,
|
|
3265
|
-
"FieldType": 28,
|
|
3266
|
-
"FormattedValue": "0",
|
|
3267
|
-
"GroupFields": null,
|
|
3268
|
-
"Highlighted": false,
|
|
3269
|
-
"NotificationInfo": "",
|
|
3270
|
-
"OptionalValues": [],
|
|
3271
|
-
"ReferenceObjectInternalType": "",
|
|
3272
|
-
"ReferenceObjectSubType": "",
|
|
3273
|
-
"ReferenceObjectType": 8,
|
|
3274
|
-
"TextColor": "",
|
|
3275
|
-
"UiPageKey": "",
|
|
3276
|
-
"Value": "0.0000",
|
|
3277
|
-
"Visible": true
|
|
3278
|
-
},
|
|
3279
|
-
{
|
|
3280
|
-
"Accessory": "",
|
|
3281
|
-
"AdditionalValue": "",
|
|
3282
|
-
"ApiName": "ItemTSASeason",
|
|
3283
|
-
"BackgroundColor": "",
|
|
3284
|
-
"Enabled": false,
|
|
3285
|
-
"EventsData": null,
|
|
3286
|
-
"FieldType": 1,
|
|
3287
|
-
"FormattedValue": "Fall",
|
|
3288
|
-
"GroupFields": null,
|
|
3289
|
-
"Highlighted": false,
|
|
3290
|
-
"NotificationInfo": "",
|
|
3291
|
-
"OptionalValues": [],
|
|
3292
|
-
"ReferenceObjectInternalType": "",
|
|
3293
|
-
"ReferenceObjectSubType": "",
|
|
3294
|
-
"ReferenceObjectType": 2125050496,
|
|
3295
|
-
"TextColor": "",
|
|
3296
|
-
"UiPageKey": "",
|
|
3297
|
-
"Value": "Fall",
|
|
3298
|
-
"Visible": true
|
|
3299
|
-
},
|
|
3300
|
-
{
|
|
3301
|
-
"Accessory": "",
|
|
3302
|
-
"AdditionalValue": "",
|
|
3303
|
-
"ApiName": "ItemTSAPackaging",
|
|
3304
|
-
"BackgroundColor": "",
|
|
3305
|
-
"Enabled": false,
|
|
3306
|
-
"EventsData": null,
|
|
3307
|
-
"FieldType": 1,
|
|
3308
|
-
"FormattedValue": "C",
|
|
3309
|
-
"GroupFields": null,
|
|
3310
|
-
"Highlighted": false,
|
|
3311
|
-
"NotificationInfo": "",
|
|
3312
|
-
"OptionalValues": [],
|
|
3313
|
-
"ReferenceObjectInternalType": "",
|
|
3314
|
-
"ReferenceObjectSubType": "",
|
|
3315
|
-
"ReferenceObjectType": 2125051672,
|
|
3316
|
-
"TextColor": "",
|
|
3317
|
-
"UiPageKey": "",
|
|
3318
|
-
"Value": "C",
|
|
3319
|
-
"Visible": true
|
|
3320
|
-
}
|
|
3321
|
-
],
|
|
3322
|
-
"IsEditable": false,
|
|
3323
|
-
"IsSelectableForActions": false,
|
|
3324
|
-
"MainAction": null,
|
|
3325
|
-
"Profile": null,
|
|
3326
|
-
"Type": 0,
|
|
3327
|
-
"UID": "a76fad1a-0143-449f-9553-fa85a11d7e81"
|
|
3328
|
-
},
|
|
3329
|
-
{
|
|
3330
|
-
"AdditionalData": null,
|
|
3331
|
-
"BackgroundColor": "",
|
|
3332
|
-
"Fields": [
|
|
3333
|
-
{
|
|
3334
|
-
"Accessory": "",
|
|
3335
|
-
"AdditionalValue": "",
|
|
3336
|
-
"ApiName": "ItemTSAType",
|
|
3337
|
-
"BackgroundColor": "",
|
|
3338
|
-
"Enabled": false,
|
|
3339
|
-
"EventsData": null,
|
|
3340
|
-
"FieldType": 1,
|
|
3341
|
-
"FormattedValue": "Accessories",
|
|
3342
|
-
"GroupFields": null,
|
|
3343
|
-
"Highlighted": false,
|
|
3344
|
-
"NotificationInfo": "",
|
|
3345
|
-
"OptionalValues": [],
|
|
3346
|
-
"ReferenceObjectInternalType": "",
|
|
3347
|
-
"ReferenceObjectSubType": "",
|
|
3348
|
-
"ReferenceObjectType": 1660598050,
|
|
3349
|
-
"TextColor": "",
|
|
3350
|
-
"UiPageKey": "",
|
|
3351
|
-
"Value": "Accessories",
|
|
3352
|
-
"Visible": true
|
|
3353
|
-
},
|
|
3354
|
-
{
|
|
3355
|
-
"Accessory": "",
|
|
3356
|
-
"AdditionalValue": "",
|
|
3357
|
-
"ApiName": "ObjectMenu",
|
|
3358
|
-
"BackgroundColor": "",
|
|
3359
|
-
"Enabled": true,
|
|
3360
|
-
"EventsData": null,
|
|
3361
|
-
"FieldType": 17,
|
|
3362
|
-
"FormattedValue": "",
|
|
3363
|
-
"GroupFields": null,
|
|
3364
|
-
"Highlighted": false,
|
|
3365
|
-
"NotificationInfo": "",
|
|
3366
|
-
"OptionalValues": [],
|
|
3367
|
-
"ReferenceObjectInternalType": "",
|
|
3368
|
-
"ReferenceObjectSubType": "",
|
|
3369
|
-
"ReferenceObjectType": 0,
|
|
3370
|
-
"TextColor": "",
|
|
3371
|
-
"UiPageKey": "",
|
|
3372
|
-
"Value": "",
|
|
3373
|
-
"Visible": true
|
|
3374
|
-
},
|
|
3375
|
-
{
|
|
3376
|
-
"Accessory": "",
|
|
3377
|
-
"AdditionalValue": "",
|
|
3378
|
-
"ApiName": "TSARelteadItems",
|
|
3379
|
-
"BackgroundColor": "",
|
|
3380
|
-
"Enabled": true,
|
|
3381
|
-
"EventsData": null,
|
|
3382
|
-
"FieldType": 1,
|
|
3383
|
-
"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\"]",
|
|
3384
|
-
"GroupFields": null,
|
|
3385
|
-
"Highlighted": false,
|
|
3386
|
-
"NotificationInfo": "",
|
|
3387
|
-
"OptionalValues": [],
|
|
3388
|
-
"ReferenceObjectInternalType": "",
|
|
3389
|
-
"ReferenceObjectSubType": "",
|
|
3390
|
-
"ReferenceObjectType": -1591707634,
|
|
3391
|
-
"TextColor": "",
|
|
3392
|
-
"UiPageKey": "",
|
|
3393
|
-
"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\"]",
|
|
3394
|
-
"Visible": true
|
|
3395
|
-
},
|
|
3396
|
-
{
|
|
3397
|
-
"Accessory": "",
|
|
3398
|
-
"AdditionalValue": "",
|
|
3399
|
-
"ApiName": "Image",
|
|
3400
|
-
"BackgroundColor": "",
|
|
3401
|
-
"Enabled": false,
|
|
3402
|
-
"EventsData": null,
|
|
3403
|
-
"FieldType": 27,
|
|
3404
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
|
|
3405
|
-
"GroupFields": null,
|
|
3406
|
-
"Highlighted": false,
|
|
3407
|
-
"NotificationInfo": "",
|
|
3408
|
-
"OptionalValues": [],
|
|
3409
|
-
"ReferenceObjectInternalType": "",
|
|
3410
|
-
"ReferenceObjectSubType": "",
|
|
3411
|
-
"ReferenceObjectType": 2125052176,
|
|
3412
|
-
"TextColor": "",
|
|
3413
|
-
"UiPageKey": "",
|
|
3414
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
|
|
3415
|
-
"Visible": true
|
|
3416
|
-
},
|
|
3417
|
-
{
|
|
3418
|
-
"Accessory": "",
|
|
3419
|
-
"AdditionalValue": "",
|
|
3420
|
-
"ApiName": "ItemName",
|
|
3421
|
-
"BackgroundColor": "",
|
|
3422
|
-
"Enabled": false,
|
|
3423
|
-
"EventsData": null,
|
|
3424
|
-
"FieldType": 1,
|
|
3425
|
-
"FormattedValue": "Outdoor Hat",
|
|
3426
|
-
"GroupFields": null,
|
|
3427
|
-
"Highlighted": false,
|
|
3428
|
-
"NotificationInfo": "",
|
|
3429
|
-
"OptionalValues": [],
|
|
3430
|
-
"ReferenceObjectInternalType": "",
|
|
3431
|
-
"ReferenceObjectSubType": "",
|
|
3432
|
-
"ReferenceObjectType": 2125040248,
|
|
3433
|
-
"TextColor": "",
|
|
3434
|
-
"UiPageKey": "",
|
|
3435
|
-
"Value": "Outdoor Hat",
|
|
3436
|
-
"Visible": true
|
|
3437
|
-
},
|
|
3438
|
-
{
|
|
3439
|
-
"Accessory": "",
|
|
3440
|
-
"AdditionalValue": "",
|
|
3441
|
-
"ApiName": "ItemExternalID",
|
|
3442
|
-
"BackgroundColor": "",
|
|
3443
|
-
"Enabled": false,
|
|
3444
|
-
"EventsData": null,
|
|
3445
|
-
"FieldType": 1,
|
|
3446
|
-
"FormattedValue": "HT3005",
|
|
3447
|
-
"GroupFields": null,
|
|
3448
|
-
"Highlighted": false,
|
|
3449
|
-
"NotificationInfo": "",
|
|
3450
|
-
"OptionalValues": [],
|
|
3451
|
-
"ReferenceObjectInternalType": "",
|
|
3452
|
-
"ReferenceObjectSubType": "",
|
|
3453
|
-
"ReferenceObjectType": 2125053472,
|
|
3454
|
-
"TextColor": "",
|
|
3455
|
-
"UiPageKey": "",
|
|
3456
|
-
"Value": "HT3005",
|
|
3457
|
-
"Visible": true
|
|
3458
|
-
},
|
|
3459
|
-
{
|
|
3460
|
-
"Accessory": "$",
|
|
3461
|
-
"AdditionalValue": "",
|
|
3462
|
-
"ApiName": "ItemPrice",
|
|
3463
|
-
"BackgroundColor": "",
|
|
3464
|
-
"Enabled": false,
|
|
3465
|
-
"EventsData": null,
|
|
3466
|
-
"FieldType": 9,
|
|
3467
|
-
"FormattedValue": "$23.00",
|
|
3468
|
-
"GroupFields": null,
|
|
3469
|
-
"Highlighted": false,
|
|
3470
|
-
"NotificationInfo": "",
|
|
3471
|
-
"OptionalValues": [],
|
|
3472
|
-
"ReferenceObjectInternalType": "",
|
|
3473
|
-
"ReferenceObjectSubType": "",
|
|
3474
|
-
"ReferenceObjectType": 2,
|
|
3475
|
-
"TextColor": "",
|
|
3476
|
-
"UiPageKey": "",
|
|
3477
|
-
"Value": "23.0000",
|
|
3478
|
-
"Visible": true
|
|
3479
|
-
},
|
|
3480
|
-
{
|
|
3481
|
-
"Accessory": "",
|
|
3482
|
-
"AdditionalValue": "",
|
|
3483
|
-
"ApiName": "UnitsQuantity",
|
|
3484
|
-
"BackgroundColor": "",
|
|
3485
|
-
"Enabled": true,
|
|
3486
|
-
"EventsData": null,
|
|
3487
|
-
"FieldType": 28,
|
|
3488
|
-
"FormattedValue": "0",
|
|
3489
|
-
"GroupFields": null,
|
|
3490
|
-
"Highlighted": false,
|
|
3491
|
-
"NotificationInfo": "",
|
|
3492
|
-
"OptionalValues": [],
|
|
3493
|
-
"ReferenceObjectInternalType": "",
|
|
3494
|
-
"ReferenceObjectSubType": "",
|
|
3495
|
-
"ReferenceObjectType": 2106867472,
|
|
3496
|
-
"TextColor": "",
|
|
3497
|
-
"UiPageKey": "",
|
|
3498
|
-
"Value": "0.0000",
|
|
3499
|
-
"Visible": true
|
|
3500
|
-
},
|
|
3501
|
-
{
|
|
3502
|
-
"Accessory": "",
|
|
3503
|
-
"AdditionalValue": "",
|
|
3504
|
-
"ApiName": "ItemTSASeason",
|
|
3505
|
-
"BackgroundColor": "",
|
|
3506
|
-
"Enabled": false,
|
|
3507
|
-
"EventsData": null,
|
|
3508
|
-
"FieldType": 1,
|
|
3509
|
-
"FormattedValue": "Fall",
|
|
3510
|
-
"GroupFields": null,
|
|
3511
|
-
"Highlighted": false,
|
|
3512
|
-
"NotificationInfo": "",
|
|
3513
|
-
"OptionalValues": [],
|
|
3514
|
-
"ReferenceObjectInternalType": "",
|
|
3515
|
-
"ReferenceObjectSubType": "",
|
|
3516
|
-
"ReferenceObjectType": 0,
|
|
3517
|
-
"TextColor": "",
|
|
3518
|
-
"UiPageKey": "",
|
|
3519
|
-
"Value": "Fall",
|
|
3520
|
-
"Visible": true
|
|
3521
|
-
},
|
|
3522
|
-
{
|
|
3523
|
-
"Accessory": "",
|
|
3524
|
-
"AdditionalValue": "",
|
|
3525
|
-
"ApiName": "ItemTSAPackaging",
|
|
3526
|
-
"BackgroundColor": "",
|
|
3527
|
-
"Enabled": false,
|
|
3528
|
-
"EventsData": null,
|
|
3529
|
-
"FieldType": 1,
|
|
3530
|
-
"FormattedValue": "D",
|
|
3531
|
-
"GroupFields": null,
|
|
3532
|
-
"Highlighted": false,
|
|
3533
|
-
"NotificationInfo": "",
|
|
3534
|
-
"OptionalValues": [],
|
|
3535
|
-
"ReferenceObjectInternalType": "",
|
|
3536
|
-
"ReferenceObjectSubType": "",
|
|
3537
|
-
"ReferenceObjectType": 0,
|
|
3538
|
-
"TextColor": "",
|
|
3539
|
-
"UiPageKey": "",
|
|
3540
|
-
"Value": "D",
|
|
3541
|
-
"Visible": true
|
|
3542
|
-
}
|
|
3543
|
-
],
|
|
3544
|
-
"IsEditable": false,
|
|
3545
|
-
"IsSelectableForActions": false,
|
|
3546
|
-
"MainAction": null,
|
|
3547
|
-
"Profile": null,
|
|
3548
|
-
"Type": 0,
|
|
3549
|
-
"UID": "f2c6c4c6-b33c-47e1-86a4-57ed5edb757a"
|
|
3550
|
-
},
|
|
3551
|
-
{
|
|
3552
|
-
"AdditionalData": null,
|
|
3553
|
-
"BackgroundColor": "",
|
|
3554
|
-
"Fields": [
|
|
3555
|
-
{
|
|
3556
|
-
"Accessory": "",
|
|
3557
|
-
"AdditionalValue": "",
|
|
3558
|
-
"ApiName": "ItemTSAType",
|
|
3559
|
-
"BackgroundColor": "",
|
|
3560
|
-
"Enabled": false,
|
|
3561
|
-
"EventsData": null,
|
|
3562
|
-
"FieldType": 1,
|
|
3563
|
-
"FormattedValue": "Accessories",
|
|
3564
|
-
"GroupFields": null,
|
|
3565
|
-
"Highlighted": false,
|
|
3566
|
-
"NotificationInfo": "",
|
|
3567
|
-
"OptionalValues": [],
|
|
3568
|
-
"ReferenceObjectInternalType": "",
|
|
3569
|
-
"ReferenceObjectSubType": "",
|
|
3570
|
-
"ReferenceObjectType": 5,
|
|
3571
|
-
"TextColor": "",
|
|
3572
|
-
"UiPageKey": "",
|
|
3573
|
-
"Value": "Accessories",
|
|
3574
|
-
"Visible": true
|
|
3575
|
-
},
|
|
3576
|
-
{
|
|
3577
|
-
"Accessory": "",
|
|
3578
|
-
"AdditionalValue": "",
|
|
3579
|
-
"ApiName": "ObjectMenu",
|
|
3580
|
-
"BackgroundColor": "",
|
|
3581
|
-
"Enabled": true,
|
|
3582
|
-
"EventsData": null,
|
|
3583
|
-
"FieldType": 17,
|
|
3584
|
-
"FormattedValue": "",
|
|
3585
|
-
"GroupFields": null,
|
|
3586
|
-
"Highlighted": false,
|
|
3587
|
-
"NotificationInfo": "",
|
|
3588
|
-
"OptionalValues": [],
|
|
3589
|
-
"ReferenceObjectInternalType": "",
|
|
3590
|
-
"ReferenceObjectSubType": "",
|
|
3591
|
-
"ReferenceObjectType": 5,
|
|
3592
|
-
"TextColor": "",
|
|
3593
|
-
"UiPageKey": "",
|
|
3594
|
-
"Value": "",
|
|
3595
|
-
"Visible": true
|
|
3596
|
-
},
|
|
3597
|
-
{
|
|
3598
|
-
"Accessory": "",
|
|
3599
|
-
"AdditionalValue": "",
|
|
3600
|
-
"ApiName": "TSARelteadItems",
|
|
3601
|
-
"BackgroundColor": "",
|
|
3602
|
-
"Enabled": true,
|
|
3603
|
-
"EventsData": null,
|
|
3604
|
-
"FieldType": 1,
|
|
3605
|
-
"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\"]",
|
|
3606
|
-
"GroupFields": null,
|
|
3607
|
-
"Highlighted": false,
|
|
3608
|
-
"NotificationInfo": "",
|
|
3609
|
-
"OptionalValues": [],
|
|
3610
|
-
"ReferenceObjectInternalType": "",
|
|
3611
|
-
"ReferenceObjectSubType": "",
|
|
3612
|
-
"ReferenceObjectType": 2123848360,
|
|
3613
|
-
"TextColor": "",
|
|
3614
|
-
"UiPageKey": "",
|
|
3615
|
-
"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\"]",
|
|
3616
|
-
"Visible": true
|
|
3617
|
-
},
|
|
3618
|
-
{
|
|
3619
|
-
"Accessory": "",
|
|
3620
|
-
"AdditionalValue": "",
|
|
3621
|
-
"ApiName": "Image",
|
|
3622
|
-
"BackgroundColor": "",
|
|
3623
|
-
"Enabled": false,
|
|
3624
|
-
"EventsData": null,
|
|
3625
|
-
"FieldType": 27,
|
|
3626
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
|
|
3627
|
-
"GroupFields": null,
|
|
3628
|
-
"Highlighted": false,
|
|
3629
|
-
"NotificationInfo": "",
|
|
3630
|
-
"OptionalValues": [],
|
|
3631
|
-
"ReferenceObjectInternalType": "",
|
|
3632
|
-
"ReferenceObjectSubType": "",
|
|
3633
|
-
"ReferenceObjectType": 0,
|
|
3634
|
-
"TextColor": "",
|
|
3635
|
-
"UiPageKey": "",
|
|
3636
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
|
|
3637
|
-
"Visible": true
|
|
3638
|
-
},
|
|
3639
|
-
{
|
|
3640
|
-
"Accessory": "",
|
|
3641
|
-
"AdditionalValue": "",
|
|
3642
|
-
"ApiName": "ItemName",
|
|
3643
|
-
"BackgroundColor": "",
|
|
3644
|
-
"Enabled": false,
|
|
3645
|
-
"EventsData": null,
|
|
3646
|
-
"FieldType": 1,
|
|
3647
|
-
"FormattedValue": "Outdoor Hat",
|
|
3648
|
-
"GroupFields": null,
|
|
3649
|
-
"Highlighted": false,
|
|
3650
|
-
"NotificationInfo": "",
|
|
3651
|
-
"OptionalValues": [],
|
|
3652
|
-
"ReferenceObjectInternalType": "",
|
|
3653
|
-
"ReferenceObjectSubType": "",
|
|
3654
|
-
"ReferenceObjectType": 2123341872,
|
|
3655
|
-
"TextColor": "",
|
|
3656
|
-
"UiPageKey": "",
|
|
3657
|
-
"Value": "Outdoor Hat",
|
|
3658
|
-
"Visible": true
|
|
3659
|
-
},
|
|
3660
|
-
{
|
|
3661
|
-
"Accessory": "",
|
|
3662
|
-
"AdditionalValue": "",
|
|
3663
|
-
"ApiName": "ItemExternalID",
|
|
3664
|
-
"BackgroundColor": "",
|
|
3665
|
-
"Enabled": false,
|
|
3666
|
-
"EventsData": null,
|
|
3667
|
-
"FieldType": 1,
|
|
3668
|
-
"FormattedValue": "HT3006",
|
|
3669
|
-
"GroupFields": null,
|
|
3670
|
-
"Highlighted": false,
|
|
3671
|
-
"NotificationInfo": "",
|
|
3672
|
-
"OptionalValues": [],
|
|
3673
|
-
"ReferenceObjectInternalType": "",
|
|
3674
|
-
"ReferenceObjectSubType": "",
|
|
3675
|
-
"ReferenceObjectType": -1,
|
|
3676
|
-
"TextColor": "",
|
|
3677
|
-
"UiPageKey": "",
|
|
3678
|
-
"Value": "HT3006",
|
|
3679
|
-
"Visible": true
|
|
3680
|
-
},
|
|
3681
|
-
{
|
|
3682
|
-
"Accessory": "$",
|
|
3683
|
-
"AdditionalValue": "",
|
|
3684
|
-
"ApiName": "ItemPrice",
|
|
3685
|
-
"BackgroundColor": "",
|
|
3686
|
-
"Enabled": false,
|
|
3687
|
-
"EventsData": null,
|
|
3688
|
-
"FieldType": 9,
|
|
3689
|
-
"FormattedValue": "$19.00",
|
|
3690
|
-
"GroupFields": null,
|
|
3691
|
-
"Highlighted": false,
|
|
3692
|
-
"NotificationInfo": "",
|
|
3693
|
-
"OptionalValues": [],
|
|
3694
|
-
"ReferenceObjectInternalType": "",
|
|
3695
|
-
"ReferenceObjectSubType": "",
|
|
3696
|
-
"ReferenceObjectType": 2123850704,
|
|
3697
|
-
"TextColor": "",
|
|
3698
|
-
"UiPageKey": "",
|
|
3699
|
-
"Value": "19.0000",
|
|
3700
|
-
"Visible": true
|
|
3701
|
-
},
|
|
3702
|
-
{
|
|
3703
|
-
"Accessory": "",
|
|
3704
|
-
"AdditionalValue": "",
|
|
3705
|
-
"ApiName": "UnitsQuantity",
|
|
3706
|
-
"BackgroundColor": "",
|
|
3707
|
-
"Enabled": true,
|
|
3708
|
-
"EventsData": null,
|
|
3709
|
-
"FieldType": 28,
|
|
3710
|
-
"FormattedValue": "0",
|
|
3711
|
-
"GroupFields": null,
|
|
3712
|
-
"Highlighted": false,
|
|
3713
|
-
"NotificationInfo": "",
|
|
3714
|
-
"OptionalValues": [],
|
|
3715
|
-
"ReferenceObjectInternalType": "",
|
|
3716
|
-
"ReferenceObjectSubType": "",
|
|
3717
|
-
"ReferenceObjectType": 2123860720,
|
|
3718
|
-
"TextColor": "",
|
|
3719
|
-
"UiPageKey": "",
|
|
3720
|
-
"Value": "0.0000",
|
|
3721
|
-
"Visible": true
|
|
3722
|
-
},
|
|
3723
|
-
{
|
|
3724
|
-
"Accessory": "",
|
|
3725
|
-
"AdditionalValue": "",
|
|
3726
|
-
"ApiName": "ItemTSASeason",
|
|
3727
|
-
"BackgroundColor": "",
|
|
3728
|
-
"Enabled": false,
|
|
3729
|
-
"EventsData": null,
|
|
3730
|
-
"FieldType": 1,
|
|
3731
|
-
"FormattedValue": "Fall",
|
|
3732
|
-
"GroupFields": null,
|
|
3733
|
-
"Highlighted": false,
|
|
3734
|
-
"NotificationInfo": "",
|
|
3735
|
-
"OptionalValues": [],
|
|
3736
|
-
"ReferenceObjectInternalType": "",
|
|
3737
|
-
"ReferenceObjectSubType": "",
|
|
3738
|
-
"ReferenceObjectType": 2123846016,
|
|
3739
|
-
"TextColor": "",
|
|
3740
|
-
"UiPageKey": "",
|
|
3741
|
-
"Value": "Fall",
|
|
3742
|
-
"Visible": true
|
|
3743
|
-
},
|
|
3744
|
-
{
|
|
3745
|
-
"Accessory": "",
|
|
3746
|
-
"AdditionalValue": "",
|
|
3747
|
-
"ApiName": "ItemTSAPackaging",
|
|
3748
|
-
"BackgroundColor": "",
|
|
3749
|
-
"Enabled": false,
|
|
3750
|
-
"EventsData": null,
|
|
3751
|
-
"FieldType": 1,
|
|
3752
|
-
"FormattedValue": "D",
|
|
3753
|
-
"GroupFields": null,
|
|
3754
|
-
"Highlighted": false,
|
|
3755
|
-
"NotificationInfo": "",
|
|
3756
|
-
"OptionalValues": [],
|
|
3757
|
-
"ReferenceObjectInternalType": "",
|
|
3758
|
-
"ReferenceObjectSubType": "",
|
|
3759
|
-
"ReferenceObjectType": 2123846016,
|
|
3760
|
-
"TextColor": "",
|
|
3761
|
-
"UiPageKey": "",
|
|
3762
|
-
"Value": "D",
|
|
3763
|
-
"Visible": true
|
|
3764
|
-
}
|
|
3765
|
-
],
|
|
3766
|
-
"IsEditable": false,
|
|
3767
|
-
"IsSelectableForActions": false,
|
|
3768
|
-
"MainAction": null,
|
|
3769
|
-
"Profile": null,
|
|
3770
|
-
"Type": 0,
|
|
3771
|
-
"UID": "e77f883f-92b0-41ef-80fb-806bfb375b6a"
|
|
3772
|
-
},
|
|
3773
|
-
{
|
|
3774
|
-
"AdditionalData": null,
|
|
3775
|
-
"BackgroundColor": "",
|
|
3776
|
-
"Fields": [
|
|
3777
|
-
{
|
|
3778
|
-
"Accessory": "",
|
|
3779
|
-
"AdditionalValue": "",
|
|
3780
|
-
"ApiName": "ItemTSAType",
|
|
3781
|
-
"BackgroundColor": "",
|
|
3782
|
-
"Enabled": false,
|
|
3783
|
-
"EventsData": null,
|
|
3784
|
-
"FieldType": 1,
|
|
3785
|
-
"FormattedValue": "Accessories",
|
|
3786
|
-
"GroupFields": null,
|
|
3787
|
-
"Highlighted": false,
|
|
3788
|
-
"NotificationInfo": "",
|
|
3789
|
-
"OptionalValues": [],
|
|
3790
|
-
"ReferenceObjectInternalType": "",
|
|
3791
|
-
"ReferenceObjectSubType": "",
|
|
3792
|
-
"ReferenceObjectType": 2123848360,
|
|
3793
|
-
"TextColor": "",
|
|
3794
|
-
"UiPageKey": "",
|
|
3795
|
-
"Value": "Accessories",
|
|
3796
|
-
"Visible": true
|
|
3797
|
-
},
|
|
3798
|
-
{
|
|
3799
|
-
"Accessory": "",
|
|
3800
|
-
"AdditionalValue": "",
|
|
3801
|
-
"ApiName": "ObjectMenu",
|
|
3802
|
-
"BackgroundColor": "",
|
|
3803
|
-
"Enabled": true,
|
|
3804
|
-
"EventsData": null,
|
|
3805
|
-
"FieldType": 17,
|
|
3806
|
-
"FormattedValue": "",
|
|
3807
|
-
"GroupFields": null,
|
|
3808
|
-
"Highlighted": false,
|
|
3809
|
-
"NotificationInfo": "",
|
|
3810
|
-
"OptionalValues": [],
|
|
3811
|
-
"ReferenceObjectInternalType": "",
|
|
3812
|
-
"ReferenceObjectSubType": "",
|
|
3813
|
-
"ReferenceObjectType": 2123850704,
|
|
3814
|
-
"TextColor": "",
|
|
3815
|
-
"UiPageKey": "",
|
|
3816
|
-
"Value": "",
|
|
3817
|
-
"Visible": true
|
|
3818
|
-
},
|
|
3819
|
-
{
|
|
3820
|
-
"Accessory": "",
|
|
3821
|
-
"AdditionalValue": "",
|
|
3822
|
-
"ApiName": "TSARelteadItems",
|
|
3823
|
-
"BackgroundColor": "",
|
|
3824
|
-
"Enabled": true,
|
|
3825
|
-
"EventsData": null,
|
|
3826
|
-
"FieldType": 1,
|
|
3827
|
-
"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\"]",
|
|
3828
|
-
"GroupFields": null,
|
|
3829
|
-
"Highlighted": false,
|
|
3830
|
-
"NotificationInfo": "",
|
|
3831
|
-
"OptionalValues": [],
|
|
3832
|
-
"ReferenceObjectInternalType": "",
|
|
3833
|
-
"ReferenceObjectSubType": "",
|
|
3834
|
-
"ReferenceObjectType": 5,
|
|
3835
|
-
"TextColor": "",
|
|
3836
|
-
"UiPageKey": "",
|
|
3837
|
-
"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\"]",
|
|
3838
|
-
"Visible": true
|
|
3839
|
-
},
|
|
3840
|
-
{
|
|
3841
|
-
"Accessory": "",
|
|
3842
|
-
"AdditionalValue": "",
|
|
3843
|
-
"ApiName": "Image",
|
|
3844
|
-
"BackgroundColor": "",
|
|
3845
|
-
"Enabled": false,
|
|
3846
|
-
"EventsData": null,
|
|
3847
|
-
"FieldType": 27,
|
|
3848
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
|
|
3849
|
-
"GroupFields": null,
|
|
3850
|
-
"Highlighted": false,
|
|
3851
|
-
"NotificationInfo": "",
|
|
3852
|
-
"OptionalValues": [],
|
|
3853
|
-
"ReferenceObjectInternalType": "",
|
|
3854
|
-
"ReferenceObjectSubType": "",
|
|
3855
|
-
"ReferenceObjectType": 2123853240,
|
|
3856
|
-
"TextColor": "",
|
|
3857
|
-
"UiPageKey": "",
|
|
3858
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
|
|
3859
|
-
"Visible": true
|
|
3860
|
-
},
|
|
3861
|
-
{
|
|
3862
|
-
"Accessory": "",
|
|
3863
|
-
"AdditionalValue": "",
|
|
3864
|
-
"ApiName": "ItemName",
|
|
3865
|
-
"BackgroundColor": "",
|
|
3866
|
-
"Enabled": false,
|
|
3867
|
-
"EventsData": null,
|
|
3868
|
-
"FieldType": 1,
|
|
3869
|
-
"FormattedValue": "Outdoor Hat",
|
|
3870
|
-
"GroupFields": null,
|
|
3871
|
-
"Highlighted": false,
|
|
3872
|
-
"NotificationInfo": "",
|
|
3873
|
-
"OptionalValues": [],
|
|
3874
|
-
"ReferenceObjectInternalType": "",
|
|
3875
|
-
"ReferenceObjectSubType": "",
|
|
3876
|
-
"ReferenceObjectType": 5,
|
|
3877
|
-
"TextColor": "",
|
|
3878
|
-
"UiPageKey": "",
|
|
3879
|
-
"Value": "Outdoor Hat",
|
|
3880
|
-
"Visible": true
|
|
3881
|
-
},
|
|
3882
|
-
{
|
|
3883
|
-
"Accessory": "",
|
|
3884
|
-
"AdditionalValue": "",
|
|
3885
|
-
"ApiName": "ItemExternalID",
|
|
3886
|
-
"BackgroundColor": "",
|
|
3887
|
-
"Enabled": false,
|
|
3888
|
-
"EventsData": null,
|
|
3889
|
-
"FieldType": 1,
|
|
3890
|
-
"FormattedValue": "HT3007",
|
|
3891
|
-
"GroupFields": null,
|
|
3892
|
-
"Highlighted": false,
|
|
3893
|
-
"NotificationInfo": "",
|
|
3894
|
-
"OptionalValues": [],
|
|
3895
|
-
"ReferenceObjectInternalType": "",
|
|
3896
|
-
"ReferenceObjectSubType": "",
|
|
3897
|
-
"ReferenceObjectType": 13,
|
|
3898
|
-
"TextColor": "",
|
|
3899
|
-
"UiPageKey": "",
|
|
3900
|
-
"Value": "HT3007",
|
|
3901
|
-
"Visible": true
|
|
3902
|
-
},
|
|
3903
|
-
{
|
|
3904
|
-
"Accessory": "$",
|
|
3905
|
-
"AdditionalValue": "",
|
|
3906
|
-
"ApiName": "ItemPrice",
|
|
3907
|
-
"BackgroundColor": "",
|
|
3908
|
-
"Enabled": false,
|
|
3909
|
-
"EventsData": null,
|
|
3910
|
-
"FieldType": 9,
|
|
3911
|
-
"FormattedValue": "$22.00",
|
|
3912
|
-
"GroupFields": null,
|
|
3913
|
-
"Highlighted": false,
|
|
3914
|
-
"NotificationInfo": "",
|
|
3915
|
-
"OptionalValues": [],
|
|
3916
|
-
"ReferenceObjectInternalType": "",
|
|
3917
|
-
"ReferenceObjectSubType": "",
|
|
3918
|
-
"ReferenceObjectType": 0,
|
|
3919
|
-
"TextColor": "",
|
|
3920
|
-
"UiPageKey": "",
|
|
3921
|
-
"Value": "22.0000",
|
|
3922
|
-
"Visible": true
|
|
3923
|
-
},
|
|
3924
|
-
{
|
|
3925
|
-
"Accessory": "",
|
|
3926
|
-
"AdditionalValue": "",
|
|
3927
|
-
"ApiName": "UnitsQuantity",
|
|
3928
|
-
"BackgroundColor": "",
|
|
3929
|
-
"Enabled": true,
|
|
3930
|
-
"EventsData": null,
|
|
3931
|
-
"FieldType": 28,
|
|
3932
|
-
"FormattedValue": "0",
|
|
3933
|
-
"GroupFields": null,
|
|
3934
|
-
"Highlighted": false,
|
|
3935
|
-
"NotificationInfo": "",
|
|
3936
|
-
"OptionalValues": [],
|
|
3937
|
-
"ReferenceObjectInternalType": "",
|
|
3938
|
-
"ReferenceObjectSubType": "",
|
|
3939
|
-
"ReferenceObjectType": 0,
|
|
3940
|
-
"TextColor": "",
|
|
3941
|
-
"UiPageKey": "",
|
|
3942
|
-
"Value": "0.0000",
|
|
3943
|
-
"Visible": true
|
|
3944
|
-
},
|
|
3945
|
-
{
|
|
3946
|
-
"Accessory": "",
|
|
3947
|
-
"AdditionalValue": "",
|
|
3948
|
-
"ApiName": "ItemTSASeason",
|
|
3949
|
-
"BackgroundColor": "",
|
|
3950
|
-
"Enabled": false,
|
|
3951
|
-
"EventsData": null,
|
|
3952
|
-
"FieldType": 1,
|
|
3953
|
-
"FormattedValue": "Fall",
|
|
3954
|
-
"GroupFields": null,
|
|
3955
|
-
"Highlighted": false,
|
|
3956
|
-
"NotificationInfo": "",
|
|
3957
|
-
"OptionalValues": [],
|
|
3958
|
-
"ReferenceObjectInternalType": "",
|
|
3959
|
-
"ReferenceObjectSubType": "",
|
|
3960
|
-
"ReferenceObjectType": 0,
|
|
3961
|
-
"TextColor": "",
|
|
3962
|
-
"UiPageKey": "",
|
|
3963
|
-
"Value": "Fall",
|
|
3964
|
-
"Visible": true
|
|
3965
|
-
},
|
|
3966
|
-
{
|
|
3967
|
-
"Accessory": "",
|
|
3968
|
-
"AdditionalValue": "",
|
|
3969
|
-
"ApiName": "ItemTSAPackaging",
|
|
3970
|
-
"BackgroundColor": "",
|
|
3971
|
-
"Enabled": false,
|
|
3972
|
-
"EventsData": null,
|
|
3973
|
-
"FieldType": 1,
|
|
3974
|
-
"FormattedValue": "D",
|
|
3975
|
-
"GroupFields": null,
|
|
3976
|
-
"Highlighted": false,
|
|
3977
|
-
"NotificationInfo": "",
|
|
3978
|
-
"OptionalValues": [],
|
|
3979
|
-
"ReferenceObjectInternalType": "",
|
|
3980
|
-
"ReferenceObjectSubType": "",
|
|
3981
|
-
"ReferenceObjectType": 0,
|
|
3982
|
-
"TextColor": "",
|
|
3983
|
-
"UiPageKey": "",
|
|
3984
|
-
"Value": "D",
|
|
3985
|
-
"Visible": true
|
|
3986
|
-
}
|
|
3987
|
-
],
|
|
3988
|
-
"IsEditable": false,
|
|
3989
|
-
"IsSelectableForActions": false,
|
|
3990
|
-
"MainAction": null,
|
|
3991
|
-
"Profile": null,
|
|
3992
|
-
"Type": 0,
|
|
3993
|
-
"UID": "0b91c165-1ca4-4bb5-ba69-a877948a7a2d"
|
|
3994
|
-
},
|
|
3995
|
-
{
|
|
3996
|
-
"AdditionalData": null,
|
|
3997
|
-
"BackgroundColor": "",
|
|
3998
|
-
"Fields": [
|
|
3999
|
-
{
|
|
4000
|
-
"Accessory": "",
|
|
4001
|
-
"AdditionalValue": "",
|
|
4002
|
-
"ApiName": "ItemTSAType",
|
|
4003
|
-
"BackgroundColor": "",
|
|
4004
|
-
"Enabled": false,
|
|
4005
|
-
"EventsData": null,
|
|
4006
|
-
"FieldType": 1,
|
|
4007
|
-
"FormattedValue": "Accessories",
|
|
4008
|
-
"GroupFields": null,
|
|
4009
|
-
"Highlighted": false,
|
|
4010
|
-
"NotificationInfo": "",
|
|
4011
|
-
"OptionalValues": [],
|
|
4012
|
-
"ReferenceObjectInternalType": "",
|
|
4013
|
-
"ReferenceObjectSubType": "",
|
|
4014
|
-
"ReferenceObjectType": 0,
|
|
4015
|
-
"TextColor": "",
|
|
4016
|
-
"UiPageKey": "",
|
|
4017
|
-
"Value": "Accessories",
|
|
4018
|
-
"Visible": true
|
|
4019
|
-
},
|
|
4020
|
-
{
|
|
4021
|
-
"Accessory": "",
|
|
4022
|
-
"AdditionalValue": "",
|
|
4023
|
-
"ApiName": "ObjectMenu",
|
|
4024
|
-
"BackgroundColor": "",
|
|
4025
|
-
"Enabled": true,
|
|
4026
|
-
"EventsData": null,
|
|
4027
|
-
"FieldType": 17,
|
|
4028
|
-
"FormattedValue": "",
|
|
4029
|
-
"GroupFields": null,
|
|
4030
|
-
"Highlighted": false,
|
|
4031
|
-
"NotificationInfo": "",
|
|
4032
|
-
"OptionalValues": [],
|
|
4033
|
-
"ReferenceObjectInternalType": "",
|
|
4034
|
-
"ReferenceObjectSubType": "",
|
|
4035
|
-
"ReferenceObjectType": 0,
|
|
4036
|
-
"TextColor": "",
|
|
4037
|
-
"UiPageKey": "",
|
|
4038
|
-
"Value": "",
|
|
4039
|
-
"Visible": true
|
|
4040
|
-
},
|
|
4041
|
-
{
|
|
4042
|
-
"Accessory": "",
|
|
4043
|
-
"AdditionalValue": "",
|
|
4044
|
-
"ApiName": "TSARelteadItems",
|
|
4045
|
-
"BackgroundColor": "",
|
|
4046
|
-
"Enabled": true,
|
|
4047
|
-
"EventsData": null,
|
|
4048
|
-
"FieldType": 1,
|
|
4049
|
-
"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\"]",
|
|
4050
|
-
"GroupFields": null,
|
|
4051
|
-
"Highlighted": false,
|
|
4052
|
-
"NotificationInfo": "",
|
|
4053
|
-
"OptionalValues": [],
|
|
4054
|
-
"ReferenceObjectInternalType": "",
|
|
4055
|
-
"ReferenceObjectSubType": "",
|
|
4056
|
-
"ReferenceObjectType": 0,
|
|
4057
|
-
"TextColor": "",
|
|
4058
|
-
"UiPageKey": "",
|
|
4059
|
-
"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\"]",
|
|
4060
|
-
"Visible": true
|
|
4061
|
-
},
|
|
4062
|
-
{
|
|
4063
|
-
"Accessory": "",
|
|
4064
|
-
"AdditionalValue": "",
|
|
4065
|
-
"ApiName": "Image",
|
|
4066
|
-
"BackgroundColor": "",
|
|
4067
|
-
"Enabled": false,
|
|
4068
|
-
"EventsData": null,
|
|
4069
|
-
"FieldType": 27,
|
|
4070
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
|
|
4071
|
-
"GroupFields": null,
|
|
4072
|
-
"Highlighted": false,
|
|
4073
|
-
"NotificationInfo": "",
|
|
4074
|
-
"OptionalValues": [],
|
|
4075
|
-
"ReferenceObjectInternalType": "",
|
|
4076
|
-
"ReferenceObjectSubType": "",
|
|
4077
|
-
"ReferenceObjectType": 0,
|
|
4078
|
-
"TextColor": "",
|
|
4079
|
-
"UiPageKey": "",
|
|
4080
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
|
|
4081
|
-
"Visible": true
|
|
4082
|
-
},
|
|
4083
|
-
{
|
|
4084
|
-
"Accessory": "",
|
|
4085
|
-
"AdditionalValue": "",
|
|
4086
|
-
"ApiName": "ItemName",
|
|
4087
|
-
"BackgroundColor": "",
|
|
4088
|
-
"Enabled": false,
|
|
4089
|
-
"EventsData": null,
|
|
4090
|
-
"FieldType": 1,
|
|
4091
|
-
"FormattedValue": "Outdoor Hat",
|
|
4092
|
-
"GroupFields": null,
|
|
4093
|
-
"Highlighted": false,
|
|
4094
|
-
"NotificationInfo": "",
|
|
4095
|
-
"OptionalValues": [],
|
|
4096
|
-
"ReferenceObjectInternalType": "",
|
|
4097
|
-
"ReferenceObjectSubType": "",
|
|
4098
|
-
"ReferenceObjectType": 0,
|
|
4099
|
-
"TextColor": "",
|
|
4100
|
-
"UiPageKey": "",
|
|
4101
|
-
"Value": "Outdoor Hat",
|
|
4102
|
-
"Visible": true
|
|
4103
|
-
},
|
|
4104
|
-
{
|
|
4105
|
-
"Accessory": "",
|
|
4106
|
-
"AdditionalValue": "",
|
|
4107
|
-
"ApiName": "ItemExternalID",
|
|
4108
|
-
"BackgroundColor": "",
|
|
4109
|
-
"Enabled": false,
|
|
4110
|
-
"EventsData": null,
|
|
4111
|
-
"FieldType": 1,
|
|
4112
|
-
"FormattedValue": "HT3008",
|
|
4113
|
-
"GroupFields": null,
|
|
4114
|
-
"Highlighted": false,
|
|
4115
|
-
"NotificationInfo": "",
|
|
4116
|
-
"OptionalValues": [],
|
|
4117
|
-
"ReferenceObjectInternalType": "",
|
|
4118
|
-
"ReferenceObjectSubType": "",
|
|
4119
|
-
"ReferenceObjectType": 0,
|
|
4120
|
-
"TextColor": "",
|
|
4121
|
-
"UiPageKey": "",
|
|
4122
|
-
"Value": "HT3008",
|
|
4123
|
-
"Visible": true
|
|
4124
|
-
},
|
|
4125
|
-
{
|
|
4126
|
-
"Accessory": "$",
|
|
4127
|
-
"AdditionalValue": "",
|
|
4128
|
-
"ApiName": "ItemPrice",
|
|
4129
|
-
"BackgroundColor": "",
|
|
4130
|
-
"Enabled": false,
|
|
4131
|
-
"EventsData": null,
|
|
4132
|
-
"FieldType": 9,
|
|
4133
|
-
"FormattedValue": "$22.00",
|
|
4134
|
-
"GroupFields": null,
|
|
4135
|
-
"Highlighted": false,
|
|
4136
|
-
"NotificationInfo": "",
|
|
4137
|
-
"OptionalValues": [],
|
|
4138
|
-
"ReferenceObjectInternalType": "",
|
|
4139
|
-
"ReferenceObjectSubType": "",
|
|
4140
|
-
"ReferenceObjectType": 0,
|
|
4141
|
-
"TextColor": "",
|
|
4142
|
-
"UiPageKey": "",
|
|
4143
|
-
"Value": "22.0000",
|
|
4144
|
-
"Visible": true
|
|
4145
|
-
},
|
|
4146
|
-
{
|
|
4147
|
-
"Accessory": "",
|
|
4148
|
-
"AdditionalValue": "",
|
|
4149
|
-
"ApiName": "UnitsQuantity",
|
|
4150
|
-
"BackgroundColor": "",
|
|
4151
|
-
"Enabled": true,
|
|
4152
|
-
"EventsData": null,
|
|
4153
|
-
"FieldType": 28,
|
|
4154
|
-
"FormattedValue": "0",
|
|
4155
|
-
"GroupFields": null,
|
|
4156
|
-
"Highlighted": false,
|
|
4157
|
-
"NotificationInfo": "",
|
|
4158
|
-
"OptionalValues": [],
|
|
4159
|
-
"ReferenceObjectInternalType": "",
|
|
4160
|
-
"ReferenceObjectSubType": "",
|
|
4161
|
-
"ReferenceObjectType": 0,
|
|
4162
|
-
"TextColor": "",
|
|
4163
|
-
"UiPageKey": "",
|
|
4164
|
-
"Value": "0.0000",
|
|
4165
|
-
"Visible": true
|
|
4166
|
-
},
|
|
4167
|
-
{
|
|
4168
|
-
"Accessory": "",
|
|
4169
|
-
"AdditionalValue": "",
|
|
4170
|
-
"ApiName": "ItemTSASeason",
|
|
4171
|
-
"BackgroundColor": "",
|
|
4172
|
-
"Enabled": false,
|
|
4173
|
-
"EventsData": null,
|
|
4174
|
-
"FieldType": 1,
|
|
4175
|
-
"FormattedValue": "Winter",
|
|
4176
|
-
"GroupFields": null,
|
|
4177
|
-
"Highlighted": false,
|
|
4178
|
-
"NotificationInfo": "",
|
|
4179
|
-
"OptionalValues": [],
|
|
4180
|
-
"ReferenceObjectInternalType": "",
|
|
4181
|
-
"ReferenceObjectSubType": "",
|
|
4182
|
-
"ReferenceObjectType": 0,
|
|
4183
|
-
"TextColor": "",
|
|
4184
|
-
"UiPageKey": "",
|
|
4185
|
-
"Value": "Winter",
|
|
4186
|
-
"Visible": true
|
|
4187
|
-
},
|
|
4188
|
-
{
|
|
4189
|
-
"Accessory": "",
|
|
4190
|
-
"AdditionalValue": "",
|
|
4191
|
-
"ApiName": "ItemTSAPackaging",
|
|
4192
|
-
"BackgroundColor": "",
|
|
4193
|
-
"Enabled": false,
|
|
4194
|
-
"EventsData": null,
|
|
4195
|
-
"FieldType": 1,
|
|
4196
|
-
"FormattedValue": "A",
|
|
4197
|
-
"GroupFields": null,
|
|
4198
|
-
"Highlighted": false,
|
|
4199
|
-
"NotificationInfo": "",
|
|
4200
|
-
"OptionalValues": [],
|
|
4201
|
-
"ReferenceObjectInternalType": "",
|
|
4202
|
-
"ReferenceObjectSubType": "",
|
|
4203
|
-
"ReferenceObjectType": 0,
|
|
4204
|
-
"TextColor": "",
|
|
4205
|
-
"UiPageKey": "",
|
|
4206
|
-
"Value": "A",
|
|
4207
|
-
"Visible": true
|
|
4208
|
-
}
|
|
4209
|
-
],
|
|
4210
|
-
"IsEditable": false,
|
|
4211
|
-
"IsSelectableForActions": false,
|
|
4212
|
-
"MainAction": null,
|
|
4213
|
-
"Profile": null,
|
|
4214
|
-
"Type": 0,
|
|
4215
|
-
"UID": "bd8b13ae-2a5c-4689-8488-32f6cb722ba9"
|
|
4216
|
-
},
|
|
4217
|
-
{
|
|
4218
|
-
"AdditionalData": null,
|
|
4219
|
-
"BackgroundColor": "",
|
|
4220
|
-
"Fields": [
|
|
4221
|
-
{
|
|
4222
|
-
"Accessory": "",
|
|
4223
|
-
"AdditionalValue": "",
|
|
4224
|
-
"ApiName": "ItemTSAType",
|
|
4225
|
-
"BackgroundColor": "",
|
|
4226
|
-
"Enabled": false,
|
|
4227
|
-
"EventsData": null,
|
|
4228
|
-
"FieldType": 1,
|
|
4229
|
-
"FormattedValue": "Accessories",
|
|
4230
|
-
"GroupFields": null,
|
|
4231
|
-
"Highlighted": false,
|
|
4232
|
-
"NotificationInfo": "",
|
|
4233
|
-
"OptionalValues": [],
|
|
4234
|
-
"ReferenceObjectInternalType": "",
|
|
4235
|
-
"ReferenceObjectSubType": "",
|
|
4236
|
-
"ReferenceObjectType": 0,
|
|
4237
|
-
"TextColor": "",
|
|
4238
|
-
"UiPageKey": "",
|
|
4239
|
-
"Value": "Accessories",
|
|
4240
|
-
"Visible": true
|
|
4241
|
-
},
|
|
4242
|
-
{
|
|
4243
|
-
"Accessory": "",
|
|
4244
|
-
"AdditionalValue": "",
|
|
4245
|
-
"ApiName": "ObjectMenu",
|
|
4246
|
-
"BackgroundColor": "",
|
|
4247
|
-
"Enabled": true,
|
|
4248
|
-
"EventsData": null,
|
|
4249
|
-
"FieldType": 17,
|
|
4250
|
-
"FormattedValue": "",
|
|
4251
|
-
"GroupFields": null,
|
|
4252
|
-
"Highlighted": false,
|
|
4253
|
-
"NotificationInfo": "",
|
|
4254
|
-
"OptionalValues": [],
|
|
4255
|
-
"ReferenceObjectInternalType": "",
|
|
4256
|
-
"ReferenceObjectSubType": "",
|
|
4257
|
-
"ReferenceObjectType": 0,
|
|
4258
|
-
"TextColor": "",
|
|
4259
|
-
"UiPageKey": "",
|
|
4260
|
-
"Value": "",
|
|
4261
|
-
"Visible": true
|
|
4262
|
-
},
|
|
4263
|
-
{
|
|
4264
|
-
"Accessory": "",
|
|
4265
|
-
"AdditionalValue": "",
|
|
4266
|
-
"ApiName": "TSARelteadItems",
|
|
4267
|
-
"BackgroundColor": "",
|
|
4268
|
-
"Enabled": true,
|
|
4269
|
-
"EventsData": null,
|
|
4270
|
-
"FieldType": 1,
|
|
4271
|
-
"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\"]",
|
|
4272
|
-
"GroupFields": null,
|
|
4273
|
-
"Highlighted": false,
|
|
4274
|
-
"NotificationInfo": "",
|
|
4275
|
-
"OptionalValues": [],
|
|
4276
|
-
"ReferenceObjectInternalType": "",
|
|
4277
|
-
"ReferenceObjectSubType": "",
|
|
4278
|
-
"ReferenceObjectType": 0,
|
|
4279
|
-
"TextColor": "",
|
|
4280
|
-
"UiPageKey": "",
|
|
4281
|
-
"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\"]",
|
|
4282
|
-
"Visible": true
|
|
4283
|
-
},
|
|
4284
|
-
{
|
|
4285
|
-
"Accessory": "",
|
|
4286
|
-
"AdditionalValue": "",
|
|
4287
|
-
"ApiName": "Image",
|
|
4288
|
-
"BackgroundColor": "",
|
|
4289
|
-
"Enabled": false,
|
|
4290
|
-
"EventsData": null,
|
|
4291
|
-
"FieldType": 27,
|
|
4292
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
|
|
4293
|
-
"GroupFields": null,
|
|
4294
|
-
"Highlighted": false,
|
|
4295
|
-
"NotificationInfo": "",
|
|
4296
|
-
"OptionalValues": [],
|
|
4297
|
-
"ReferenceObjectInternalType": "",
|
|
4298
|
-
"ReferenceObjectSubType": "",
|
|
4299
|
-
"ReferenceObjectType": 0,
|
|
4300
|
-
"TextColor": "",
|
|
4301
|
-
"UiPageKey": "",
|
|
4302
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
|
|
4303
|
-
"Visible": true
|
|
4304
|
-
},
|
|
4305
|
-
{
|
|
4306
|
-
"Accessory": "",
|
|
4307
|
-
"AdditionalValue": "",
|
|
4308
|
-
"ApiName": "ItemName",
|
|
4309
|
-
"BackgroundColor": "",
|
|
4310
|
-
"Enabled": false,
|
|
4311
|
-
"EventsData": null,
|
|
4312
|
-
"FieldType": 1,
|
|
4313
|
-
"FormattedValue": "Outdoor Hat",
|
|
4314
|
-
"GroupFields": null,
|
|
4315
|
-
"Highlighted": false,
|
|
4316
|
-
"NotificationInfo": "",
|
|
4317
|
-
"OptionalValues": [],
|
|
4318
|
-
"ReferenceObjectInternalType": "",
|
|
4319
|
-
"ReferenceObjectSubType": "",
|
|
4320
|
-
"ReferenceObjectType": 0,
|
|
4321
|
-
"TextColor": "",
|
|
4322
|
-
"UiPageKey": "",
|
|
4323
|
-
"Value": "Outdoor Hat",
|
|
4324
|
-
"Visible": true
|
|
4325
|
-
},
|
|
4326
|
-
{
|
|
4327
|
-
"Accessory": "",
|
|
4328
|
-
"AdditionalValue": "",
|
|
4329
|
-
"ApiName": "ItemExternalID",
|
|
4330
|
-
"BackgroundColor": "",
|
|
4331
|
-
"Enabled": false,
|
|
4332
|
-
"EventsData": null,
|
|
4333
|
-
"FieldType": 1,
|
|
4334
|
-
"FormattedValue": "HT3009",
|
|
4335
|
-
"GroupFields": null,
|
|
4336
|
-
"Highlighted": false,
|
|
4337
|
-
"NotificationInfo": "",
|
|
4338
|
-
"OptionalValues": [],
|
|
4339
|
-
"ReferenceObjectInternalType": "",
|
|
4340
|
-
"ReferenceObjectSubType": "",
|
|
4341
|
-
"ReferenceObjectType": 0,
|
|
4342
|
-
"TextColor": "",
|
|
4343
|
-
"UiPageKey": "",
|
|
4344
|
-
"Value": "HT3009",
|
|
4345
|
-
"Visible": true
|
|
4346
|
-
},
|
|
4347
|
-
{
|
|
4348
|
-
"Accessory": "$",
|
|
4349
|
-
"AdditionalValue": "",
|
|
4350
|
-
"ApiName": "ItemPrice",
|
|
4351
|
-
"BackgroundColor": "",
|
|
4352
|
-
"Enabled": false,
|
|
4353
|
-
"EventsData": null,
|
|
4354
|
-
"FieldType": 9,
|
|
4355
|
-
"FormattedValue": "$23.00",
|
|
4356
|
-
"GroupFields": null,
|
|
4357
|
-
"Highlighted": false,
|
|
4358
|
-
"NotificationInfo": "",
|
|
4359
|
-
"OptionalValues": [],
|
|
4360
|
-
"ReferenceObjectInternalType": "",
|
|
4361
|
-
"ReferenceObjectSubType": "",
|
|
4362
|
-
"ReferenceObjectType": 0,
|
|
4363
|
-
"TextColor": "",
|
|
4364
|
-
"UiPageKey": "",
|
|
4365
|
-
"Value": "23.0000",
|
|
4366
|
-
"Visible": true
|
|
4367
|
-
},
|
|
4368
|
-
{
|
|
4369
|
-
"Accessory": "",
|
|
4370
|
-
"AdditionalValue": "",
|
|
4371
|
-
"ApiName": "UnitsQuantity",
|
|
4372
|
-
"BackgroundColor": "",
|
|
4373
|
-
"Enabled": true,
|
|
4374
|
-
"EventsData": null,
|
|
4375
|
-
"FieldType": 28,
|
|
4376
|
-
"FormattedValue": "0",
|
|
4377
|
-
"GroupFields": null,
|
|
4378
|
-
"Highlighted": false,
|
|
4379
|
-
"NotificationInfo": "",
|
|
4380
|
-
"OptionalValues": [],
|
|
4381
|
-
"ReferenceObjectInternalType": "",
|
|
4382
|
-
"ReferenceObjectSubType": "",
|
|
4383
|
-
"ReferenceObjectType": 0,
|
|
4384
|
-
"TextColor": "",
|
|
4385
|
-
"UiPageKey": "",
|
|
4386
|
-
"Value": "0.0000",
|
|
4387
|
-
"Visible": true
|
|
4388
|
-
},
|
|
4389
|
-
{
|
|
4390
|
-
"Accessory": "",
|
|
4391
|
-
"AdditionalValue": "",
|
|
4392
|
-
"ApiName": "ItemTSASeason",
|
|
4393
|
-
"BackgroundColor": "",
|
|
4394
|
-
"Enabled": false,
|
|
4395
|
-
"EventsData": null,
|
|
4396
|
-
"FieldType": 1,
|
|
4397
|
-
"FormattedValue": "Winter",
|
|
4398
|
-
"GroupFields": null,
|
|
4399
|
-
"Highlighted": false,
|
|
4400
|
-
"NotificationInfo": "",
|
|
4401
|
-
"OptionalValues": [],
|
|
4402
|
-
"ReferenceObjectInternalType": "",
|
|
4403
|
-
"ReferenceObjectSubType": "",
|
|
4404
|
-
"ReferenceObjectType": 0,
|
|
4405
|
-
"TextColor": "",
|
|
4406
|
-
"UiPageKey": "",
|
|
4407
|
-
"Value": "Winter",
|
|
4408
|
-
"Visible": true
|
|
4409
|
-
},
|
|
4410
|
-
{
|
|
4411
|
-
"Accessory": "",
|
|
4412
|
-
"AdditionalValue": "",
|
|
4413
|
-
"ApiName": "ItemTSAPackaging",
|
|
4414
|
-
"BackgroundColor": "",
|
|
4415
|
-
"Enabled": false,
|
|
4416
|
-
"EventsData": null,
|
|
4417
|
-
"FieldType": 1,
|
|
4418
|
-
"FormattedValue": "A",
|
|
4419
|
-
"GroupFields": null,
|
|
4420
|
-
"Highlighted": false,
|
|
4421
|
-
"NotificationInfo": "",
|
|
4422
|
-
"OptionalValues": [],
|
|
4423
|
-
"ReferenceObjectInternalType": "",
|
|
4424
|
-
"ReferenceObjectSubType": "",
|
|
4425
|
-
"ReferenceObjectType": 0,
|
|
4426
|
-
"TextColor": "",
|
|
4427
|
-
"UiPageKey": "",
|
|
4428
|
-
"Value": "A",
|
|
4429
|
-
"Visible": true
|
|
4430
|
-
}
|
|
4431
|
-
],
|
|
4432
|
-
"IsEditable": false,
|
|
4433
|
-
"IsSelectableForActions": false,
|
|
4434
|
-
"MainAction": null,
|
|
4435
|
-
"Profile": null,
|
|
4436
|
-
"Type": 0,
|
|
4437
|
-
"UID": "27bfe67d-13f4-4982-b5d0-3ebf5d753e0f"
|
|
4438
|
-
},
|
|
4439
|
-
{
|
|
4440
|
-
"AdditionalData": null,
|
|
4441
|
-
"BackgroundColor": "",
|
|
4442
|
-
"Fields": [
|
|
4443
|
-
{
|
|
4444
|
-
"Accessory": "",
|
|
4445
|
-
"AdditionalValue": "",
|
|
4446
|
-
"ApiName": "ItemTSAType",
|
|
4447
|
-
"BackgroundColor": "",
|
|
4448
|
-
"Enabled": false,
|
|
4449
|
-
"EventsData": null,
|
|
4450
|
-
"FieldType": 1,
|
|
4451
|
-
"FormattedValue": "Accessories",
|
|
4452
|
-
"GroupFields": null,
|
|
4453
|
-
"Highlighted": false,
|
|
4454
|
-
"NotificationInfo": "",
|
|
4455
|
-
"OptionalValues": [],
|
|
4456
|
-
"ReferenceObjectInternalType": "",
|
|
4457
|
-
"ReferenceObjectSubType": "",
|
|
4458
|
-
"ReferenceObjectType": 0,
|
|
4459
|
-
"TextColor": "",
|
|
4460
|
-
"UiPageKey": "",
|
|
4461
|
-
"Value": "Accessories",
|
|
4462
|
-
"Visible": true
|
|
4463
|
-
},
|
|
4464
|
-
{
|
|
4465
|
-
"Accessory": "",
|
|
4466
|
-
"AdditionalValue": "",
|
|
4467
|
-
"ApiName": "ObjectMenu",
|
|
4468
|
-
"BackgroundColor": "",
|
|
4469
|
-
"Enabled": true,
|
|
4470
|
-
"EventsData": null,
|
|
4471
|
-
"FieldType": 17,
|
|
4472
|
-
"FormattedValue": "",
|
|
4473
|
-
"GroupFields": null,
|
|
4474
|
-
"Highlighted": false,
|
|
4475
|
-
"NotificationInfo": "",
|
|
4476
|
-
"OptionalValues": [],
|
|
4477
|
-
"ReferenceObjectInternalType": "",
|
|
4478
|
-
"ReferenceObjectSubType": "",
|
|
4479
|
-
"ReferenceObjectType": 0,
|
|
4480
|
-
"TextColor": "",
|
|
4481
|
-
"UiPageKey": "",
|
|
4482
|
-
"Value": "",
|
|
4483
|
-
"Visible": true
|
|
4484
|
-
},
|
|
4485
|
-
{
|
|
4486
|
-
"Accessory": "",
|
|
4487
|
-
"AdditionalValue": "",
|
|
4488
|
-
"ApiName": "TSARelteadItems",
|
|
4489
|
-
"BackgroundColor": "",
|
|
4490
|
-
"Enabled": true,
|
|
4491
|
-
"EventsData": null,
|
|
4492
|
-
"FieldType": 1,
|
|
4493
|
-
"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\"]",
|
|
4494
|
-
"GroupFields": null,
|
|
4495
|
-
"Highlighted": false,
|
|
4496
|
-
"NotificationInfo": "",
|
|
4497
|
-
"OptionalValues": [],
|
|
4498
|
-
"ReferenceObjectInternalType": "",
|
|
4499
|
-
"ReferenceObjectSubType": "",
|
|
4500
|
-
"ReferenceObjectType": 0,
|
|
4501
|
-
"TextColor": "",
|
|
4502
|
-
"UiPageKey": "",
|
|
4503
|
-
"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\"]",
|
|
4504
|
-
"Visible": true
|
|
4505
|
-
},
|
|
4506
|
-
{
|
|
4507
|
-
"Accessory": "",
|
|
4508
|
-
"AdditionalValue": "",
|
|
4509
|
-
"ApiName": "Image",
|
|
4510
|
-
"BackgroundColor": "",
|
|
4511
|
-
"Enabled": false,
|
|
4512
|
-
"EventsData": null,
|
|
4513
|
-
"FieldType": 27,
|
|
4514
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
|
|
4515
|
-
"GroupFields": null,
|
|
4516
|
-
"Highlighted": false,
|
|
4517
|
-
"NotificationInfo": "",
|
|
4518
|
-
"OptionalValues": [],
|
|
4519
|
-
"ReferenceObjectInternalType": "",
|
|
4520
|
-
"ReferenceObjectSubType": "",
|
|
4521
|
-
"ReferenceObjectType": 0,
|
|
4522
|
-
"TextColor": "",
|
|
4523
|
-
"UiPageKey": "",
|
|
4524
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
|
|
4525
|
-
"Visible": true
|
|
4526
|
-
},
|
|
4527
|
-
{
|
|
4528
|
-
"Accessory": "",
|
|
4529
|
-
"AdditionalValue": "",
|
|
4530
|
-
"ApiName": "ItemName",
|
|
4531
|
-
"BackgroundColor": "",
|
|
4532
|
-
"Enabled": false,
|
|
4533
|
-
"EventsData": null,
|
|
4534
|
-
"FieldType": 1,
|
|
4535
|
-
"FormattedValue": "Sport Hat",
|
|
4536
|
-
"GroupFields": null,
|
|
4537
|
-
"Highlighted": false,
|
|
4538
|
-
"NotificationInfo": "",
|
|
4539
|
-
"OptionalValues": [],
|
|
4540
|
-
"ReferenceObjectInternalType": "",
|
|
4541
|
-
"ReferenceObjectSubType": "",
|
|
4542
|
-
"ReferenceObjectType": 3473458,
|
|
4543
|
-
"TextColor": "",
|
|
4544
|
-
"UiPageKey": "",
|
|
4545
|
-
"Value": "Sport Hat",
|
|
4546
|
-
"Visible": true
|
|
4547
|
-
},
|
|
4548
|
-
{
|
|
4549
|
-
"Accessory": "",
|
|
4550
|
-
"AdditionalValue": "",
|
|
4551
|
-
"ApiName": "ItemExternalID",
|
|
4552
|
-
"BackgroundColor": "",
|
|
4553
|
-
"Enabled": false,
|
|
4554
|
-
"EventsData": null,
|
|
4555
|
-
"FieldType": 1,
|
|
4556
|
-
"FormattedValue": "HT3010",
|
|
4557
|
-
"GroupFields": null,
|
|
4558
|
-
"Highlighted": false,
|
|
4559
|
-
"NotificationInfo": "",
|
|
4560
|
-
"OptionalValues": [],
|
|
4561
|
-
"ReferenceObjectInternalType": "",
|
|
4562
|
-
"ReferenceObjectSubType": "",
|
|
4563
|
-
"ReferenceObjectType": 0,
|
|
4564
|
-
"TextColor": "",
|
|
4565
|
-
"UiPageKey": "",
|
|
4566
|
-
"Value": "HT3010",
|
|
4567
|
-
"Visible": true
|
|
4568
|
-
},
|
|
4569
|
-
{
|
|
4570
|
-
"Accessory": "$",
|
|
4571
|
-
"AdditionalValue": "",
|
|
4572
|
-
"ApiName": "ItemPrice",
|
|
4573
|
-
"BackgroundColor": "",
|
|
4574
|
-
"Enabled": false,
|
|
4575
|
-
"EventsData": null,
|
|
4576
|
-
"FieldType": 9,
|
|
4577
|
-
"FormattedValue": "$24.00",
|
|
4578
|
-
"GroupFields": null,
|
|
4579
|
-
"Highlighted": false,
|
|
4580
|
-
"NotificationInfo": "",
|
|
4581
|
-
"OptionalValues": [],
|
|
4582
|
-
"ReferenceObjectInternalType": "",
|
|
4583
|
-
"ReferenceObjectSubType": "",
|
|
4584
|
-
"ReferenceObjectType": 0,
|
|
4585
|
-
"TextColor": "",
|
|
4586
|
-
"UiPageKey": "",
|
|
4587
|
-
"Value": "24.0000",
|
|
4588
|
-
"Visible": true
|
|
4589
|
-
},
|
|
4590
|
-
{
|
|
4591
|
-
"Accessory": "",
|
|
4592
|
-
"AdditionalValue": "",
|
|
4593
|
-
"ApiName": "UnitsQuantity",
|
|
4594
|
-
"BackgroundColor": "",
|
|
4595
|
-
"Enabled": true,
|
|
4596
|
-
"EventsData": null,
|
|
4597
|
-
"FieldType": 28,
|
|
4598
|
-
"FormattedValue": "0",
|
|
4599
|
-
"GroupFields": null,
|
|
4600
|
-
"Highlighted": false,
|
|
4601
|
-
"NotificationInfo": "",
|
|
4602
|
-
"OptionalValues": [],
|
|
4603
|
-
"ReferenceObjectInternalType": "",
|
|
4604
|
-
"ReferenceObjectSubType": "",
|
|
4605
|
-
"ReferenceObjectType": 0,
|
|
4606
|
-
"TextColor": "",
|
|
4607
|
-
"UiPageKey": "",
|
|
4608
|
-
"Value": "0.0000",
|
|
4609
|
-
"Visible": true
|
|
4610
|
-
},
|
|
4611
|
-
{
|
|
4612
|
-
"Accessory": "",
|
|
4613
|
-
"AdditionalValue": "",
|
|
4614
|
-
"ApiName": "ItemTSASeason",
|
|
4615
|
-
"BackgroundColor": "",
|
|
4616
|
-
"Enabled": false,
|
|
4617
|
-
"EventsData": null,
|
|
4618
|
-
"FieldType": 1,
|
|
4619
|
-
"FormattedValue": "Winter",
|
|
4620
|
-
"GroupFields": null,
|
|
4621
|
-
"Highlighted": false,
|
|
4622
|
-
"NotificationInfo": "",
|
|
4623
|
-
"OptionalValues": [],
|
|
4624
|
-
"ReferenceObjectInternalType": "",
|
|
4625
|
-
"ReferenceObjectSubType": "",
|
|
4626
|
-
"ReferenceObjectType": 0,
|
|
4627
|
-
"TextColor": "",
|
|
4628
|
-
"UiPageKey": "",
|
|
4629
|
-
"Value": "Winter",
|
|
4630
|
-
"Visible": true
|
|
4631
|
-
},
|
|
4632
|
-
{
|
|
4633
|
-
"Accessory": "",
|
|
4634
|
-
"AdditionalValue": "",
|
|
4635
|
-
"ApiName": "ItemTSAPackaging",
|
|
4636
|
-
"BackgroundColor": "",
|
|
4637
|
-
"Enabled": false,
|
|
4638
|
-
"EventsData": null,
|
|
4639
|
-
"FieldType": 1,
|
|
4640
|
-
"FormattedValue": "A",
|
|
4641
|
-
"GroupFields": null,
|
|
4642
|
-
"Highlighted": false,
|
|
4643
|
-
"NotificationInfo": "",
|
|
4644
|
-
"OptionalValues": [],
|
|
4645
|
-
"ReferenceObjectInternalType": "",
|
|
4646
|
-
"ReferenceObjectSubType": "",
|
|
4647
|
-
"ReferenceObjectType": 0,
|
|
4648
|
-
"TextColor": "",
|
|
4649
|
-
"UiPageKey": "",
|
|
4650
|
-
"Value": "A",
|
|
4651
|
-
"Visible": true
|
|
4652
|
-
}
|
|
4653
|
-
],
|
|
4654
|
-
"IsEditable": false,
|
|
4655
|
-
"IsSelectableForActions": false,
|
|
4656
|
-
"MainAction": null,
|
|
4657
|
-
"Profile": null,
|
|
4658
|
-
"Type": 0,
|
|
4659
|
-
"UID": "f04e0fd3-7832-432d-ae27-1820ba9a9c85"
|
|
4660
|
-
},
|
|
4661
|
-
{
|
|
4662
|
-
"AdditionalData": null,
|
|
4663
|
-
"BackgroundColor": "",
|
|
4664
|
-
"Fields": [
|
|
4665
|
-
{
|
|
4666
|
-
"Accessory": "",
|
|
4667
|
-
"AdditionalValue": "",
|
|
4668
|
-
"ApiName": "ItemTSAType",
|
|
4669
|
-
"BackgroundColor": "",
|
|
4670
|
-
"Enabled": false,
|
|
4671
|
-
"EventsData": null,
|
|
4672
|
-
"FieldType": 1,
|
|
4673
|
-
"FormattedValue": "Accessories",
|
|
4674
|
-
"GroupFields": null,
|
|
4675
|
-
"Highlighted": false,
|
|
4676
|
-
"NotificationInfo": "",
|
|
4677
|
-
"OptionalValues": [],
|
|
4678
|
-
"ReferenceObjectInternalType": "",
|
|
4679
|
-
"ReferenceObjectSubType": "",
|
|
4680
|
-
"ReferenceObjectType": 2106973712,
|
|
4681
|
-
"TextColor": "",
|
|
4682
|
-
"UiPageKey": "",
|
|
4683
|
-
"Value": "Accessories",
|
|
4684
|
-
"Visible": true
|
|
4685
|
-
},
|
|
4686
|
-
{
|
|
4687
|
-
"Accessory": "",
|
|
4688
|
-
"AdditionalValue": "",
|
|
4689
|
-
"ApiName": "ObjectMenu",
|
|
4690
|
-
"BackgroundColor": "",
|
|
4691
|
-
"Enabled": true,
|
|
4692
|
-
"EventsData": null,
|
|
4693
|
-
"FieldType": 17,
|
|
4694
|
-
"FormattedValue": "",
|
|
4695
|
-
"GroupFields": null,
|
|
4696
|
-
"Highlighted": false,
|
|
4697
|
-
"NotificationInfo": "",
|
|
4698
|
-
"OptionalValues": [],
|
|
4699
|
-
"ReferenceObjectInternalType": "",
|
|
4700
|
-
"ReferenceObjectSubType": "",
|
|
4701
|
-
"ReferenceObjectType": 0,
|
|
4702
|
-
"TextColor": "",
|
|
4703
|
-
"UiPageKey": "",
|
|
4704
|
-
"Value": "",
|
|
4705
|
-
"Visible": true
|
|
4706
|
-
},
|
|
4707
|
-
{
|
|
4708
|
-
"Accessory": "",
|
|
4709
|
-
"AdditionalValue": "",
|
|
4710
|
-
"ApiName": "TSARelteadItems",
|
|
4711
|
-
"BackgroundColor": "",
|
|
4712
|
-
"Enabled": true,
|
|
4713
|
-
"EventsData": null,
|
|
4714
|
-
"FieldType": 1,
|
|
4715
|
-
"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\"]",
|
|
4716
|
-
"GroupFields": null,
|
|
4717
|
-
"Highlighted": false,
|
|
4718
|
-
"NotificationInfo": "",
|
|
4719
|
-
"OptionalValues": [],
|
|
4720
|
-
"ReferenceObjectInternalType": "",
|
|
4721
|
-
"ReferenceObjectSubType": "",
|
|
4722
|
-
"ReferenceObjectType": 13,
|
|
4723
|
-
"TextColor": "",
|
|
4724
|
-
"UiPageKey": "",
|
|
4725
|
-
"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\"]",
|
|
4726
|
-
"Visible": true
|
|
4727
|
-
},
|
|
4728
|
-
{
|
|
4729
|
-
"Accessory": "",
|
|
4730
|
-
"AdditionalValue": "",
|
|
4731
|
-
"ApiName": "Image",
|
|
4732
|
-
"BackgroundColor": "",
|
|
4733
|
-
"Enabled": false,
|
|
4734
|
-
"EventsData": null,
|
|
4735
|
-
"FieldType": 27,
|
|
4736
|
-
"FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
|
|
4737
|
-
"GroupFields": null,
|
|
4738
|
-
"Highlighted": false,
|
|
4739
|
-
"NotificationInfo": "",
|
|
4740
|
-
"OptionalValues": [],
|
|
4741
|
-
"ReferenceObjectInternalType": "",
|
|
4742
|
-
"ReferenceObjectSubType": "",
|
|
4743
|
-
"ReferenceObjectType": 0,
|
|
4744
|
-
"TextColor": "",
|
|
4745
|
-
"UiPageKey": "",
|
|
4746
|
-
"Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
|
|
4747
|
-
"Visible": true
|
|
4748
|
-
},
|
|
4749
|
-
{
|
|
4750
|
-
"Accessory": "",
|
|
4751
|
-
"AdditionalValue": "",
|
|
4752
|
-
"ApiName": "ItemName",
|
|
4753
|
-
"BackgroundColor": "",
|
|
4754
|
-
"Enabled": false,
|
|
4755
|
-
"EventsData": null,
|
|
4756
|
-
"FieldType": 1,
|
|
4757
|
-
"FormattedValue": "Wool Hat",
|
|
4758
|
-
"GroupFields": null,
|
|
4759
|
-
"Highlighted": false,
|
|
4760
|
-
"NotificationInfo": "",
|
|
4761
|
-
"OptionalValues": [],
|
|
4762
|
-
"ReferenceObjectInternalType": "",
|
|
4763
|
-
"ReferenceObjectSubType": "",
|
|
4764
|
-
"ReferenceObjectType": 0,
|
|
4765
|
-
"TextColor": "",
|
|
4766
|
-
"UiPageKey": "",
|
|
4767
|
-
"Value": "Wool Hat",
|
|
4768
|
-
"Visible": true
|
|
4769
|
-
},
|
|
4770
|
-
{
|
|
4771
|
-
"Accessory": "",
|
|
4772
|
-
"AdditionalValue": "",
|
|
4773
|
-
"ApiName": "ItemExternalID",
|
|
4774
|
-
"BackgroundColor": "",
|
|
4775
|
-
"Enabled": false,
|
|
4776
|
-
"EventsData": null,
|
|
4777
|
-
"FieldType": 1,
|
|
4778
|
-
"FormattedValue": "HT3001",
|
|
4779
|
-
"GroupFields": null,
|
|
4780
|
-
"Highlighted": false,
|
|
4781
|
-
"NotificationInfo": "",
|
|
4782
|
-
"OptionalValues": [],
|
|
4783
|
-
"ReferenceObjectInternalType": "",
|
|
4784
|
-
"ReferenceObjectSubType": "",
|
|
4785
|
-
"ReferenceObjectType": 0,
|
|
4786
|
-
"TextColor": "",
|
|
4787
|
-
"UiPageKey": "",
|
|
4788
|
-
"Value": "HT3001",
|
|
4789
|
-
"Visible": true
|
|
4790
|
-
},
|
|
4791
|
-
{
|
|
4792
|
-
"Accessory": "$",
|
|
4793
|
-
"AdditionalValue": "",
|
|
4794
|
-
"ApiName": "ItemPrice",
|
|
4795
|
-
"BackgroundColor": "",
|
|
4796
|
-
"Enabled": false,
|
|
4797
|
-
"EventsData": null,
|
|
4798
|
-
"FieldType": 9,
|
|
4799
|
-
"FormattedValue": "$23.00",
|
|
4800
|
-
"GroupFields": null,
|
|
4801
|
-
"Highlighted": false,
|
|
4802
|
-
"NotificationInfo": "",
|
|
4803
|
-
"OptionalValues": [],
|
|
4804
|
-
"ReferenceObjectInternalType": "",
|
|
4805
|
-
"ReferenceObjectSubType": "",
|
|
4806
|
-
"ReferenceObjectType": 4980834,
|
|
4807
|
-
"TextColor": "",
|
|
4808
|
-
"UiPageKey": "",
|
|
4809
|
-
"Value": "23.0000",
|
|
4810
|
-
"Visible": true
|
|
4811
|
-
},
|
|
4812
|
-
{
|
|
4813
|
-
"Accessory": "",
|
|
4814
|
-
"AdditionalValue": "",
|
|
4815
|
-
"ApiName": "UnitsQuantity",
|
|
4816
|
-
"BackgroundColor": "",
|
|
4817
|
-
"Enabled": true,
|
|
4818
|
-
"EventsData": null,
|
|
4819
|
-
"FieldType": 28,
|
|
4820
|
-
"FormattedValue": "1",
|
|
4821
|
-
"GroupFields": null,
|
|
4822
|
-
"Highlighted": false,
|
|
4823
|
-
"NotificationInfo": "",
|
|
4824
|
-
"OptionalValues": [],
|
|
4825
|
-
"ReferenceObjectInternalType": "",
|
|
4826
|
-
"ReferenceObjectSubType": "",
|
|
4827
|
-
"ReferenceObjectType": 0,
|
|
4828
|
-
"TextColor": "#FF0000",
|
|
4829
|
-
"UiPageKey": "",
|
|
4830
|
-
"Value": "1.0000",
|
|
4831
|
-
"Visible": true
|
|
4832
|
-
},
|
|
4833
|
-
{
|
|
4834
|
-
"Accessory": "",
|
|
4835
|
-
"AdditionalValue": "",
|
|
4836
|
-
"ApiName": "ItemTSASeason",
|
|
4837
|
-
"BackgroundColor": "",
|
|
4838
|
-
"Enabled": false,
|
|
4839
|
-
"EventsData": null,
|
|
4840
|
-
"FieldType": 1,
|
|
4841
|
-
"FormattedValue": "Fall",
|
|
4842
|
-
"GroupFields": null,
|
|
4843
|
-
"Highlighted": false,
|
|
4844
|
-
"NotificationInfo": "",
|
|
4845
|
-
"OptionalValues": [],
|
|
4846
|
-
"ReferenceObjectInternalType": "",
|
|
4847
|
-
"ReferenceObjectSubType": "",
|
|
4848
|
-
"ReferenceObjectType": 0,
|
|
4849
|
-
"TextColor": "",
|
|
4850
|
-
"UiPageKey": "",
|
|
4851
|
-
"Value": "Fall",
|
|
4852
|
-
"Visible": true
|
|
4853
|
-
},
|
|
4854
|
-
{
|
|
4855
|
-
"Accessory": "",
|
|
4856
|
-
"AdditionalValue": "",
|
|
4857
|
-
"ApiName": "ItemTSAPackaging",
|
|
4858
|
-
"BackgroundColor": "",
|
|
4859
|
-
"Enabled": false,
|
|
4860
|
-
"EventsData": null,
|
|
4861
|
-
"FieldType": 1,
|
|
4862
|
-
"FormattedValue": "A",
|
|
4863
|
-
"GroupFields": null,
|
|
4864
|
-
"Highlighted": false,
|
|
4865
|
-
"NotificationInfo": "",
|
|
4866
|
-
"OptionalValues": [],
|
|
4867
|
-
"ReferenceObjectInternalType": "",
|
|
4868
|
-
"ReferenceObjectSubType": "",
|
|
4869
|
-
"ReferenceObjectType": 0,
|
|
4870
|
-
"TextColor": "",
|
|
4871
|
-
"UiPageKey": "",
|
|
4872
|
-
"Value": "A",
|
|
4873
|
-
"Visible": true
|
|
4874
|
-
}
|
|
4875
|
-
],
|
|
4876
|
-
"IsEditable": false,
|
|
4877
|
-
"IsSelectableForActions": false,
|
|
4878
|
-
"MainAction": null,
|
|
4879
|
-
"Profile": null,
|
|
4880
|
-
"Type": 0,
|
|
4881
|
-
"UID": "040f35a5-c35f-4099-9ddf-717d346194b0"
|
|
4882
|
-
},
|
|
4883
|
-
{
|
|
4884
|
-
"AdditionalData": null,
|
|
4885
|
-
"BackgroundColor": "",
|
|
4886
|
-
"Fields": [
|
|
4887
|
-
{
|
|
4888
|
-
"Accessory": "",
|
|
4889
|
-
"AdditionalValue": "",
|
|
4890
|
-
"ApiName": "ItemTSAType",
|
|
4891
|
-
"BackgroundColor": "",
|
|
4892
|
-
"Enabled": false,
|
|
4893
|
-
"EventsData": null,
|
|
4894
|
-
"FieldType": 1,
|
|
4895
|
-
"FormattedValue": "Bottoms",
|
|
4896
|
-
"GroupFields": null,
|
|
4897
|
-
"Highlighted": false,
|
|
4898
|
-
"NotificationInfo": "",
|
|
4899
|
-
"OptionalValues": [],
|
|
4900
|
-
"ReferenceObjectInternalType": "",
|
|
4901
|
-
"ReferenceObjectSubType": "",
|
|
4902
|
-
"ReferenceObjectType": 7012437,
|
|
4903
|
-
"TextColor": "",
|
|
4904
|
-
"UiPageKey": "",
|
|
4905
|
-
"Value": "Bottoms",
|
|
4906
|
-
"Visible": true
|
|
4907
|
-
},
|
|
4908
|
-
{
|
|
4909
|
-
"Accessory": "",
|
|
4910
|
-
"AdditionalValue": "",
|
|
4911
|
-
"ApiName": "ObjectMenu",
|
|
4912
|
-
"BackgroundColor": "",
|
|
4913
|
-
"Enabled": true,
|
|
4914
|
-
"EventsData": null,
|
|
4915
|
-
"FieldType": 17,
|
|
4916
|
-
"FormattedValue": "",
|
|
4917
|
-
"GroupFields": null,
|
|
4918
|
-
"Highlighted": false,
|
|
4919
|
-
"NotificationInfo": "",
|
|
4920
|
-
"OptionalValues": [],
|
|
4921
|
-
"ReferenceObjectInternalType": "",
|
|
4922
|
-
"ReferenceObjectSubType": "",
|
|
4923
|
-
"ReferenceObjectType": 0,
|
|
4924
|
-
"TextColor": "",
|
|
4925
|
-
"UiPageKey": "",
|
|
4926
|
-
"Value": "",
|
|
4927
|
-
"Visible": true
|
|
4928
|
-
},
|
|
4929
|
-
{
|
|
4930
|
-
"Accessory": "",
|
|
4931
|
-
"AdditionalValue": "",
|
|
4932
|
-
"ApiName": "TSARelteadItems",
|
|
4933
|
-
"BackgroundColor": "",
|
|
4934
|
-
"Enabled": true,
|
|
4935
|
-
"EventsData": null,
|
|
4936
|
-
"FieldType": 1,
|
|
4937
|
-
"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\"]",
|
|
4938
|
-
"GroupFields": null,
|
|
4939
|
-
"Highlighted": false,
|
|
4940
|
-
"NotificationInfo": "",
|
|
4941
|
-
"OptionalValues": [],
|
|
4942
|
-
"ReferenceObjectInternalType": "",
|
|
4943
|
-
"ReferenceObjectSubType": "",
|
|
4944
|
-
"ReferenceObjectType": 3604586,
|
|
4945
|
-
"TextColor": "",
|
|
4946
|
-
"UiPageKey": "",
|
|
4947
|
-
"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\"]",
|
|
4948
|
-
"Visible": true
|
|
4949
|
-
},
|
|
4950
|
-
{
|
|
4951
|
-
"Accessory": "",
|
|
4952
|
-
"AdditionalValue": "",
|
|
4953
|
-
"ApiName": "Image",
|
|
4954
|
-
"BackgroundColor": "",
|
|
4955
|
-
"Enabled": false,
|
|
4956
|
-
"EventsData": null,
|
|
4957
|
-
"FieldType": 27,
|
|
4958
|
-
"FormattedValue": "",
|
|
4959
|
-
"GroupFields": null,
|
|
4960
|
-
"Highlighted": false,
|
|
4961
|
-
"NotificationInfo": "",
|
|
4962
|
-
"OptionalValues": [],
|
|
4963
|
-
"ReferenceObjectInternalType": "",
|
|
4964
|
-
"ReferenceObjectSubType": "",
|
|
4965
|
-
"ReferenceObjectType": 0,
|
|
4966
|
-
"TextColor": "",
|
|
4967
|
-
"UiPageKey": "",
|
|
4968
|
-
"Value": "",
|
|
4969
|
-
"Visible": true
|
|
4970
|
-
},
|
|
4971
|
-
{
|
|
4972
|
-
"Accessory": "",
|
|
4973
|
-
"AdditionalValue": "",
|
|
4974
|
-
"ApiName": "ItemName",
|
|
4975
|
-
"BackgroundColor": "",
|
|
4976
|
-
"Enabled": false,
|
|
4977
|
-
"EventsData": null,
|
|
4978
|
-
"FieldType": 1,
|
|
4979
|
-
"FormattedValue": "Loose fit",
|
|
4980
|
-
"GroupFields": null,
|
|
4981
|
-
"Highlighted": false,
|
|
4982
|
-
"NotificationInfo": "",
|
|
4983
|
-
"OptionalValues": [],
|
|
4984
|
-
"ReferenceObjectInternalType": "",
|
|
4985
|
-
"ReferenceObjectSubType": "",
|
|
4986
|
-
"ReferenceObjectType": 0,
|
|
4987
|
-
"TextColor": "",
|
|
4988
|
-
"UiPageKey": "",
|
|
4989
|
-
"Value": "Loose fit",
|
|
4990
|
-
"Visible": true
|
|
4991
|
-
},
|
|
4992
|
-
{
|
|
4993
|
-
"Accessory": "",
|
|
4994
|
-
"AdditionalValue": "",
|
|
4995
|
-
"ApiName": "ItemExternalID",
|
|
4996
|
-
"BackgroundColor": "",
|
|
4997
|
-
"Enabled": false,
|
|
4998
|
-
"EventsData": null,
|
|
4999
|
-
"FieldType": 1,
|
|
5000
|
-
"FormattedValue": "WJS32",
|
|
5001
|
-
"GroupFields": null,
|
|
5002
|
-
"Highlighted": false,
|
|
5003
|
-
"NotificationInfo": "",
|
|
5004
|
-
"OptionalValues": [],
|
|
5005
|
-
"ReferenceObjectInternalType": "",
|
|
5006
|
-
"ReferenceObjectSubType": "",
|
|
5007
|
-
"ReferenceObjectType": 0,
|
|
5008
|
-
"TextColor": "",
|
|
5009
|
-
"UiPageKey": "",
|
|
5010
|
-
"Value": "WJS32",
|
|
5011
|
-
"Visible": true
|
|
5012
|
-
},
|
|
5013
|
-
{
|
|
5014
|
-
"Accessory": "$",
|
|
5015
|
-
"AdditionalValue": "",
|
|
5016
|
-
"ApiName": "ItemPrice",
|
|
5017
|
-
"BackgroundColor": "",
|
|
5018
|
-
"Enabled": false,
|
|
5019
|
-
"EventsData": null,
|
|
5020
|
-
"FieldType": 9,
|
|
5021
|
-
"FormattedValue": "$123.00",
|
|
5022
|
-
"GroupFields": null,
|
|
5023
|
-
"Highlighted": false,
|
|
5024
|
-
"NotificationInfo": "",
|
|
5025
|
-
"OptionalValues": [],
|
|
5026
|
-
"ReferenceObjectInternalType": "",
|
|
5027
|
-
"ReferenceObjectSubType": "",
|
|
5028
|
-
"ReferenceObjectType": 0,
|
|
5029
|
-
"TextColor": "",
|
|
5030
|
-
"UiPageKey": "",
|
|
5031
|
-
"Value": "123.0000",
|
|
5032
|
-
"Visible": true
|
|
5033
|
-
},
|
|
5034
|
-
{
|
|
5035
|
-
"Accessory": "",
|
|
5036
|
-
"AdditionalValue": "",
|
|
5037
|
-
"ApiName": "UnitsQuantity",
|
|
5038
|
-
"BackgroundColor": "",
|
|
5039
|
-
"Enabled": true,
|
|
5040
|
-
"EventsData": null,
|
|
5041
|
-
"FieldType": 17,
|
|
5042
|
-
"FormattedValue": "0",
|
|
5043
|
-
"GroupFields": null,
|
|
5044
|
-
"Highlighted": false,
|
|
5045
|
-
"NotificationInfo": "",
|
|
5046
|
-
"OptionalValues": [],
|
|
5047
|
-
"ReferenceObjectInternalType": "",
|
|
5048
|
-
"ReferenceObjectSubType": "",
|
|
5049
|
-
"ReferenceObjectType": 0,
|
|
5050
|
-
"TextColor": "",
|
|
5051
|
-
"UiPageKey": "",
|
|
5052
|
-
"Value": "0.0000",
|
|
5053
|
-
"Visible": true
|
|
5054
|
-
},
|
|
5055
|
-
{
|
|
5056
|
-
"Accessory": "",
|
|
5057
|
-
"AdditionalValue": "",
|
|
5058
|
-
"ApiName": "ItemTSASeason",
|
|
5059
|
-
"BackgroundColor": "",
|
|
5060
|
-
"Enabled": false,
|
|
5061
|
-
"EventsData": null,
|
|
5062
|
-
"FieldType": 1,
|
|
5063
|
-
"FormattedValue": "Summer",
|
|
5064
|
-
"GroupFields": null,
|
|
5065
|
-
"Highlighted": false,
|
|
5066
|
-
"NotificationInfo": "",
|
|
5067
|
-
"OptionalValues": [],
|
|
5068
|
-
"ReferenceObjectInternalType": "",
|
|
5069
|
-
"ReferenceObjectSubType": "",
|
|
5070
|
-
"ReferenceObjectType": 0,
|
|
5071
|
-
"TextColor": "",
|
|
5072
|
-
"UiPageKey": "",
|
|
5073
|
-
"Value": "Summer",
|
|
5074
|
-
"Visible": true
|
|
5075
|
-
},
|
|
5076
|
-
{
|
|
5077
|
-
"Accessory": "",
|
|
5078
|
-
"AdditionalValue": "",
|
|
5079
|
-
"ApiName": "ItemTSAPackaging",
|
|
5080
|
-
"BackgroundColor": "",
|
|
5081
|
-
"Enabled": false,
|
|
5082
|
-
"EventsData": null,
|
|
5083
|
-
"FieldType": 1,
|
|
5084
|
-
"FormattedValue": "D",
|
|
5085
|
-
"GroupFields": null,
|
|
5086
|
-
"Highlighted": false,
|
|
5087
|
-
"NotificationInfo": "",
|
|
5088
|
-
"OptionalValues": [],
|
|
5089
|
-
"ReferenceObjectInternalType": "",
|
|
5090
|
-
"ReferenceObjectSubType": "",
|
|
5091
|
-
"ReferenceObjectType": 2123301536,
|
|
5092
|
-
"TextColor": "",
|
|
5093
|
-
"UiPageKey": "",
|
|
5094
|
-
"Value": "D",
|
|
5095
|
-
"Visible": true
|
|
5096
|
-
}
|
|
5097
|
-
],
|
|
5098
|
-
"IsEditable": false,
|
|
5099
|
-
"IsSelectableForActions": false,
|
|
5100
|
-
"MainAction": null,
|
|
5101
|
-
"Profile": null,
|
|
5102
|
-
"Type": 0,
|
|
5103
|
-
"UID": "777aecb5-6fed-4fa4-890f-71d9dd77205c"
|
|
5104
|
-
},
|
|
5105
|
-
{
|
|
5106
|
-
"AdditionalData": null,
|
|
5107
|
-
"BackgroundColor": "",
|
|
5108
|
-
"Fields": [
|
|
5109
|
-
{
|
|
5110
|
-
"Accessory": "",
|
|
5111
|
-
"AdditionalValue": "",
|
|
5112
|
-
"ApiName": "ItemTSAType",
|
|
5113
|
-
"BackgroundColor": "",
|
|
5114
|
-
"Enabled": false,
|
|
5115
|
-
"EventsData": null,
|
|
5116
|
-
"FieldType": 1,
|
|
5117
|
-
"FormattedValue": "Bottoms",
|
|
5118
|
-
"GroupFields": null,
|
|
5119
|
-
"Highlighted": false,
|
|
5120
|
-
"NotificationInfo": "",
|
|
5121
|
-
"OptionalValues": [],
|
|
5122
|
-
"ReferenceObjectInternalType": "",
|
|
5123
|
-
"ReferenceObjectSubType": "",
|
|
5124
|
-
"ReferenceObjectType": 2123301536,
|
|
5125
|
-
"TextColor": "",
|
|
5126
|
-
"UiPageKey": "",
|
|
5127
|
-
"Value": "Bottoms",
|
|
5128
|
-
"Visible": true
|
|
5129
|
-
},
|
|
5130
|
-
{
|
|
5131
|
-
"Accessory": "",
|
|
5132
|
-
"AdditionalValue": "",
|
|
5133
|
-
"ApiName": "ObjectMenu",
|
|
5134
|
-
"BackgroundColor": "",
|
|
5135
|
-
"Enabled": true,
|
|
5136
|
-
"EventsData": null,
|
|
5137
|
-
"FieldType": 17,
|
|
5138
|
-
"FormattedValue": "",
|
|
5139
|
-
"GroupFields": null,
|
|
5140
|
-
"Highlighted": false,
|
|
5141
|
-
"NotificationInfo": "",
|
|
5142
|
-
"OptionalValues": [],
|
|
5143
|
-
"ReferenceObjectInternalType": "",
|
|
5144
|
-
"ReferenceObjectSubType": "",
|
|
5145
|
-
"ReferenceObjectType": 0,
|
|
5146
|
-
"TextColor": "",
|
|
5147
|
-
"UiPageKey": "",
|
|
5148
|
-
"Value": "",
|
|
5149
|
-
"Visible": true
|
|
5150
|
-
},
|
|
5151
|
-
{
|
|
5152
|
-
"Accessory": "",
|
|
5153
|
-
"AdditionalValue": "",
|
|
5154
|
-
"ApiName": "TSARelteadItems",
|
|
5155
|
-
"BackgroundColor": "",
|
|
5156
|
-
"Enabled": true,
|
|
5157
|
-
"EventsData": null,
|
|
5158
|
-
"FieldType": 1,
|
|
5159
|
-
"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\"]",
|
|
5160
|
-
"GroupFields": null,
|
|
5161
|
-
"Highlighted": false,
|
|
5162
|
-
"NotificationInfo": "",
|
|
5163
|
-
"OptionalValues": [],
|
|
5164
|
-
"ReferenceObjectInternalType": "",
|
|
5165
|
-
"ReferenceObjectSubType": "",
|
|
5166
|
-
"ReferenceObjectType": 168635513,
|
|
5167
|
-
"TextColor": "",
|
|
5168
|
-
"UiPageKey": "",
|
|
5169
|
-
"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\"]",
|
|
5170
|
-
"Visible": true
|
|
5171
|
-
},
|
|
5172
|
-
{
|
|
5173
|
-
"Accessory": "",
|
|
5174
|
-
"AdditionalValue": "",
|
|
5175
|
-
"ApiName": "Image",
|
|
5176
|
-
"BackgroundColor": "",
|
|
5177
|
-
"Enabled": false,
|
|
5178
|
-
"EventsData": null,
|
|
5179
|
-
"FieldType": 27,
|
|
5180
|
-
"FormattedValue": "",
|
|
5181
|
-
"GroupFields": null,
|
|
5182
|
-
"Highlighted": false,
|
|
5183
|
-
"NotificationInfo": "",
|
|
5184
|
-
"OptionalValues": [],
|
|
5185
|
-
"ReferenceObjectInternalType": "",
|
|
5186
|
-
"ReferenceObjectSubType": "",
|
|
5187
|
-
"ReferenceObjectType": 602522121,
|
|
5188
|
-
"TextColor": "",
|
|
5189
|
-
"UiPageKey": "",
|
|
5190
|
-
"Value": "",
|
|
5191
|
-
"Visible": true
|
|
5192
|
-
},
|
|
5193
|
-
{
|
|
5194
|
-
"Accessory": "",
|
|
5195
|
-
"AdditionalValue": "",
|
|
5196
|
-
"ApiName": "ItemName",
|
|
5197
|
-
"BackgroundColor": "",
|
|
5198
|
-
"Enabled": false,
|
|
5199
|
-
"EventsData": null,
|
|
5200
|
-
"FieldType": 1,
|
|
5201
|
-
"FormattedValue": "Skinny jeans",
|
|
5202
|
-
"GroupFields": null,
|
|
5203
|
-
"Highlighted": false,
|
|
5204
|
-
"NotificationInfo": "",
|
|
5205
|
-
"OptionalValues": [],
|
|
5206
|
-
"ReferenceObjectInternalType": "",
|
|
5207
|
-
"ReferenceObjectSubType": "",
|
|
5208
|
-
"ReferenceObjectType": 0,
|
|
5209
|
-
"TextColor": "",
|
|
5210
|
-
"UiPageKey": "",
|
|
5211
|
-
"Value": "Skinny jeans",
|
|
5212
|
-
"Visible": true
|
|
5213
|
-
},
|
|
5214
|
-
{
|
|
5215
|
-
"Accessory": "",
|
|
5216
|
-
"AdditionalValue": "",
|
|
5217
|
-
"ApiName": "ItemExternalID",
|
|
5218
|
-
"BackgroundColor": "",
|
|
5219
|
-
"Enabled": false,
|
|
5220
|
-
"EventsData": null,
|
|
5221
|
-
"FieldType": 1,
|
|
5222
|
-
"FormattedValue": "WJS33",
|
|
5223
|
-
"GroupFields": null,
|
|
5224
|
-
"Highlighted": false,
|
|
5225
|
-
"NotificationInfo": "",
|
|
5226
|
-
"OptionalValues": [],
|
|
5227
|
-
"ReferenceObjectInternalType": "",
|
|
5228
|
-
"ReferenceObjectSubType": "",
|
|
5229
|
-
"ReferenceObjectType": 0,
|
|
5230
|
-
"TextColor": "",
|
|
5231
|
-
"UiPageKey": "",
|
|
5232
|
-
"Value": "WJS33",
|
|
5233
|
-
"Visible": true
|
|
5234
|
-
},
|
|
5235
|
-
{
|
|
5236
|
-
"Accessory": "$",
|
|
5237
|
-
"AdditionalValue": "",
|
|
5238
|
-
"ApiName": "ItemPrice",
|
|
5239
|
-
"BackgroundColor": "",
|
|
5240
|
-
"Enabled": false,
|
|
5241
|
-
"EventsData": null,
|
|
5242
|
-
"FieldType": 9,
|
|
5243
|
-
"FormattedValue": "$56.00",
|
|
5244
|
-
"GroupFields": null,
|
|
5245
|
-
"Highlighted": false,
|
|
5246
|
-
"NotificationInfo": "",
|
|
5247
|
-
"OptionalValues": [],
|
|
5248
|
-
"ReferenceObjectInternalType": "",
|
|
5249
|
-
"ReferenceObjectSubType": "",
|
|
5250
|
-
"ReferenceObjectType": 0,
|
|
5251
|
-
"TextColor": "",
|
|
5252
|
-
"UiPageKey": "",
|
|
5253
|
-
"Value": "56.0000",
|
|
5254
|
-
"Visible": true
|
|
5255
|
-
},
|
|
5256
|
-
{
|
|
5257
|
-
"Accessory": "",
|
|
5258
|
-
"AdditionalValue": "",
|
|
5259
|
-
"ApiName": "UnitsQuantity",
|
|
5260
|
-
"BackgroundColor": "",
|
|
5261
|
-
"Enabled": true,
|
|
5262
|
-
"EventsData": null,
|
|
5263
|
-
"FieldType": 17,
|
|
5264
|
-
"FormattedValue": "0",
|
|
5265
|
-
"GroupFields": null,
|
|
5266
|
-
"Highlighted": false,
|
|
5267
|
-
"NotificationInfo": "",
|
|
5268
|
-
"OptionalValues": [],
|
|
5269
|
-
"ReferenceObjectInternalType": "",
|
|
5270
|
-
"ReferenceObjectSubType": "",
|
|
5271
|
-
"ReferenceObjectType": 0,
|
|
5272
|
-
"TextColor": "",
|
|
5273
|
-
"UiPageKey": "",
|
|
5274
|
-
"Value": "0.0000",
|
|
5275
|
-
"Visible": true
|
|
5276
|
-
},
|
|
5277
|
-
{
|
|
5278
|
-
"Accessory": "",
|
|
5279
|
-
"AdditionalValue": "",
|
|
5280
|
-
"ApiName": "ItemTSASeason",
|
|
5281
|
-
"BackgroundColor": "",
|
|
5282
|
-
"Enabled": false,
|
|
5283
|
-
"EventsData": null,
|
|
5284
|
-
"FieldType": 1,
|
|
5285
|
-
"FormattedValue": "Winter",
|
|
5286
|
-
"GroupFields": null,
|
|
5287
|
-
"Highlighted": false,
|
|
5288
|
-
"NotificationInfo": "",
|
|
5289
|
-
"OptionalValues": [],
|
|
5290
|
-
"ReferenceObjectInternalType": "",
|
|
5291
|
-
"ReferenceObjectSubType": "",
|
|
5292
|
-
"ReferenceObjectType": 2123302832,
|
|
5293
|
-
"TextColor": "",
|
|
5294
|
-
"UiPageKey": "",
|
|
5295
|
-
"Value": "Winter",
|
|
5296
|
-
"Visible": true
|
|
5297
|
-
},
|
|
5298
|
-
{
|
|
5299
|
-
"Accessory": "",
|
|
5300
|
-
"AdditionalValue": "",
|
|
5301
|
-
"ApiName": "ItemTSAPackaging",
|
|
5302
|
-
"BackgroundColor": "",
|
|
5303
|
-
"Enabled": false,
|
|
5304
|
-
"EventsData": null,
|
|
5305
|
-
"FieldType": 1,
|
|
5306
|
-
"FormattedValue": "B",
|
|
5307
|
-
"GroupFields": null,
|
|
5308
|
-
"Highlighted": false,
|
|
5309
|
-
"NotificationInfo": "",
|
|
5310
|
-
"OptionalValues": [],
|
|
5311
|
-
"ReferenceObjectInternalType": "",
|
|
5312
|
-
"ReferenceObjectSubType": "",
|
|
5313
|
-
"ReferenceObjectType": 2123302832,
|
|
5314
|
-
"TextColor": "",
|
|
5315
|
-
"UiPageKey": "",
|
|
5316
|
-
"Value": "B",
|
|
5317
|
-
"Visible": true
|
|
5318
|
-
}
|
|
5319
|
-
],
|
|
5320
|
-
"IsEditable": false,
|
|
5321
|
-
"IsSelectableForActions": false,
|
|
5322
|
-
"MainAction": null,
|
|
5323
|
-
"Profile": null,
|
|
5324
|
-
"Type": 0,
|
|
5325
|
-
"UID": "7fac686e-3ec5-4b95-ba70-c109c8778b63"
|
|
5326
|
-
},
|
|
5327
|
-
{
|
|
5328
|
-
"AdditionalData": null,
|
|
5329
|
-
"BackgroundColor": "",
|
|
5330
|
-
"Fields": [
|
|
5331
|
-
{
|
|
5332
|
-
"Accessory": "",
|
|
5333
|
-
"AdditionalValue": "",
|
|
5334
|
-
"ApiName": "ItemTSAType",
|
|
5335
|
-
"BackgroundColor": "",
|
|
5336
|
-
"Enabled": false,
|
|
5337
|
-
"EventsData": null,
|
|
5338
|
-
"FieldType": 1,
|
|
5339
|
-
"FormattedValue": "Bottoms",
|
|
5340
|
-
"GroupFields": null,
|
|
5341
|
-
"Highlighted": false,
|
|
5342
|
-
"NotificationInfo": "",
|
|
5343
|
-
"OptionalValues": [],
|
|
5344
|
-
"ReferenceObjectInternalType": "",
|
|
5345
|
-
"ReferenceObjectSubType": "",
|
|
5346
|
-
"ReferenceObjectType": -1225808615,
|
|
5347
|
-
"TextColor": "",
|
|
5348
|
-
"UiPageKey": "",
|
|
5349
|
-
"Value": "Bottoms",
|
|
5350
|
-
"Visible": true
|
|
5351
|
-
},
|
|
5352
|
-
{
|
|
5353
|
-
"Accessory": "",
|
|
5354
|
-
"AdditionalValue": "",
|
|
5355
|
-
"ApiName": "ObjectMenu",
|
|
5356
|
-
"BackgroundColor": "",
|
|
5357
|
-
"Enabled": true,
|
|
5358
|
-
"EventsData": null,
|
|
5359
|
-
"FieldType": 17,
|
|
5360
|
-
"FormattedValue": "",
|
|
5361
|
-
"GroupFields": null,
|
|
5362
|
-
"Highlighted": false,
|
|
5363
|
-
"NotificationInfo": "",
|
|
5364
|
-
"OptionalValues": [],
|
|
5365
|
-
"ReferenceObjectInternalType": "",
|
|
5366
|
-
"ReferenceObjectSubType": "",
|
|
5367
|
-
"ReferenceObjectType": 602519433,
|
|
5368
|
-
"TextColor": "",
|
|
5369
|
-
"UiPageKey": "",
|
|
5370
|
-
"Value": "",
|
|
5371
|
-
"Visible": true
|
|
5372
|
-
},
|
|
5373
|
-
{
|
|
5374
|
-
"Accessory": "",
|
|
5375
|
-
"AdditionalValue": "",
|
|
5376
|
-
"ApiName": "TSARelteadItems",
|
|
5377
|
-
"BackgroundColor": "",
|
|
5378
|
-
"Enabled": true,
|
|
5379
|
-
"EventsData": null,
|
|
5380
|
-
"FieldType": 1,
|
|
5381
|
-
"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\"]",
|
|
5382
|
-
"GroupFields": null,
|
|
5383
|
-
"Highlighted": false,
|
|
5384
|
-
"NotificationInfo": "",
|
|
5385
|
-
"OptionalValues": [],
|
|
5386
|
-
"ReferenceObjectInternalType": "",
|
|
5387
|
-
"ReferenceObjectSubType": "",
|
|
5388
|
-
"ReferenceObjectType": 602528137,
|
|
5389
|
-
"TextColor": "",
|
|
5390
|
-
"UiPageKey": "",
|
|
5391
|
-
"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\"]",
|
|
5392
|
-
"Visible": true
|
|
5393
|
-
},
|
|
5394
|
-
{
|
|
5395
|
-
"Accessory": "",
|
|
5396
|
-
"AdditionalValue": "",
|
|
5397
|
-
"ApiName": "Image",
|
|
5398
|
-
"BackgroundColor": "",
|
|
5399
|
-
"Enabled": false,
|
|
5400
|
-
"EventsData": null,
|
|
5401
|
-
"FieldType": 27,
|
|
5402
|
-
"FormattedValue": "",
|
|
5403
|
-
"GroupFields": null,
|
|
5404
|
-
"Highlighted": false,
|
|
5405
|
-
"NotificationInfo": "",
|
|
5406
|
-
"OptionalValues": [],
|
|
5407
|
-
"ReferenceObjectInternalType": "",
|
|
5408
|
-
"ReferenceObjectSubType": "",
|
|
5409
|
-
"ReferenceObjectType": 2123301536,
|
|
5410
|
-
"TextColor": "",
|
|
5411
|
-
"UiPageKey": "",
|
|
5412
|
-
"Value": "",
|
|
5413
|
-
"Visible": true
|
|
5414
|
-
},
|
|
5415
|
-
{
|
|
5416
|
-
"Accessory": "",
|
|
5417
|
-
"AdditionalValue": "",
|
|
5418
|
-
"ApiName": "ItemName",
|
|
5419
|
-
"BackgroundColor": "",
|
|
5420
|
-
"Enabled": false,
|
|
5421
|
-
"EventsData": null,
|
|
5422
|
-
"FieldType": 1,
|
|
5423
|
-
"FormattedValue": "Skinny jeans",
|
|
5424
|
-
"GroupFields": null,
|
|
5425
|
-
"Highlighted": false,
|
|
5426
|
-
"NotificationInfo": "",
|
|
5427
|
-
"OptionalValues": [],
|
|
5428
|
-
"ReferenceObjectInternalType": "",
|
|
5429
|
-
"ReferenceObjectSubType": "",
|
|
5430
|
-
"ReferenceObjectType": 2123302832,
|
|
5431
|
-
"TextColor": "",
|
|
5432
|
-
"UiPageKey": "",
|
|
5433
|
-
"Value": "Skinny jeans",
|
|
5434
|
-
"Visible": true
|
|
5435
|
-
},
|
|
5436
|
-
{
|
|
5437
|
-
"Accessory": "",
|
|
5438
|
-
"AdditionalValue": "",
|
|
5439
|
-
"ApiName": "ItemExternalID",
|
|
5440
|
-
"BackgroundColor": "",
|
|
5441
|
-
"Enabled": false,
|
|
5442
|
-
"EventsData": null,
|
|
5443
|
-
"FieldType": 1,
|
|
5444
|
-
"FormattedValue": "WJS31",
|
|
5445
|
-
"GroupFields": null,
|
|
5446
|
-
"Highlighted": false,
|
|
5447
|
-
"NotificationInfo": "",
|
|
5448
|
-
"OptionalValues": [],
|
|
5449
|
-
"ReferenceObjectInternalType": "",
|
|
5450
|
-
"ReferenceObjectSubType": "",
|
|
5451
|
-
"ReferenceObjectType": 0,
|
|
5452
|
-
"TextColor": "",
|
|
5453
|
-
"UiPageKey": "",
|
|
5454
|
-
"Value": "WJS31",
|
|
5455
|
-
"Visible": true
|
|
5456
|
-
},
|
|
5457
|
-
{
|
|
5458
|
-
"Accessory": "$",
|
|
5459
|
-
"AdditionalValue": "",
|
|
5460
|
-
"ApiName": "ItemPrice",
|
|
5461
|
-
"BackgroundColor": "",
|
|
5462
|
-
"Enabled": false,
|
|
5463
|
-
"EventsData": null,
|
|
5464
|
-
"FieldType": 9,
|
|
5465
|
-
"FormattedValue": "$118.00",
|
|
5466
|
-
"GroupFields": null,
|
|
5467
|
-
"Highlighted": false,
|
|
5468
|
-
"NotificationInfo": "",
|
|
5469
|
-
"OptionalValues": [],
|
|
5470
|
-
"ReferenceObjectInternalType": "",
|
|
5471
|
-
"ReferenceObjectSubType": "",
|
|
5472
|
-
"ReferenceObjectType": 0,
|
|
5473
|
-
"TextColor": "",
|
|
5474
|
-
"UiPageKey": "",
|
|
5475
|
-
"Value": "118.0000",
|
|
5476
|
-
"Visible": true
|
|
5477
|
-
},
|
|
5478
|
-
{
|
|
5479
|
-
"Accessory": "",
|
|
5480
|
-
"AdditionalValue": "",
|
|
5481
|
-
"ApiName": "UnitsQuantity",
|
|
5482
|
-
"BackgroundColor": "",
|
|
5483
|
-
"Enabled": true,
|
|
5484
|
-
"EventsData": null,
|
|
5485
|
-
"FieldType": 17,
|
|
5486
|
-
"FormattedValue": "0",
|
|
5487
|
-
"GroupFields": null,
|
|
5488
|
-
"Highlighted": false,
|
|
5489
|
-
"NotificationInfo": "",
|
|
5490
|
-
"OptionalValues": [],
|
|
5491
|
-
"ReferenceObjectInternalType": "",
|
|
5492
|
-
"ReferenceObjectSubType": "",
|
|
5493
|
-
"ReferenceObjectType": 2123302832,
|
|
5494
|
-
"TextColor": "",
|
|
5495
|
-
"UiPageKey": "",
|
|
5496
|
-
"Value": "0.0000",
|
|
5497
|
-
"Visible": true
|
|
5498
|
-
},
|
|
5499
|
-
{
|
|
5500
|
-
"Accessory": "",
|
|
5501
|
-
"AdditionalValue": "",
|
|
5502
|
-
"ApiName": "ItemTSASeason",
|
|
5503
|
-
"BackgroundColor": "",
|
|
5504
|
-
"Enabled": false,
|
|
5505
|
-
"EventsData": null,
|
|
5506
|
-
"FieldType": 1,
|
|
5507
|
-
"FormattedValue": "Summer",
|
|
5508
|
-
"GroupFields": null,
|
|
5509
|
-
"Highlighted": false,
|
|
5510
|
-
"NotificationInfo": "",
|
|
5511
|
-
"OptionalValues": [],
|
|
5512
|
-
"ReferenceObjectInternalType": "",
|
|
5513
|
-
"ReferenceObjectSubType": "",
|
|
5514
|
-
"ReferenceObjectType": 2123302832,
|
|
5515
|
-
"TextColor": "",
|
|
5516
|
-
"UiPageKey": "",
|
|
5517
|
-
"Value": "Summer",
|
|
5518
|
-
"Visible": true
|
|
5519
|
-
},
|
|
5520
|
-
{
|
|
5521
|
-
"Accessory": "",
|
|
5522
|
-
"AdditionalValue": "",
|
|
5523
|
-
"ApiName": "ItemTSAPackaging",
|
|
5524
|
-
"BackgroundColor": "",
|
|
5525
|
-
"Enabled": false,
|
|
5526
|
-
"EventsData": null,
|
|
5527
|
-
"FieldType": 1,
|
|
5528
|
-
"FormattedValue": "A",
|
|
5529
|
-
"GroupFields": null,
|
|
5530
|
-
"Highlighted": false,
|
|
5531
|
-
"NotificationInfo": "",
|
|
5532
|
-
"OptionalValues": [],
|
|
5533
|
-
"ReferenceObjectInternalType": "",
|
|
5534
|
-
"ReferenceObjectSubType": "",
|
|
5535
|
-
"ReferenceObjectType": 2123302832,
|
|
5536
|
-
"TextColor": "",
|
|
5537
|
-
"UiPageKey": "",
|
|
5538
|
-
"Value": "A",
|
|
5539
|
-
"Visible": true
|
|
5540
|
-
}
|
|
5541
|
-
],
|
|
5542
|
-
"IsEditable": false,
|
|
5543
|
-
"IsSelectableForActions": false,
|
|
5544
|
-
"MainAction": null,
|
|
5545
|
-
"Profile": null,
|
|
5546
|
-
"Type": 0,
|
|
5547
|
-
"UID": "10ef7ace-0086-4151-b075-f009fd20a01c"
|
|
5548
|
-
}
|
|
5549
|
-
],
|
|
5550
|
-
"UIControl": {
|
|
5551
|
-
"ObjectID": "",
|
|
5552
|
-
"Type": "",
|
|
5553
|
-
"DisplayName": "",
|
|
5554
|
-
"Columns": 10,
|
|
5555
|
-
"ControlFields": [
|
|
5556
|
-
{
|
|
5557
|
-
"ApiName": "ItemTSAType",
|
|
5558
|
-
"ColumnWidth": 10,
|
|
5559
|
-
"ColumnWidthType": 0,
|
|
5560
|
-
"FieldName": "Item Type",
|
|
5561
|
-
"FieldType": 1,
|
|
5562
|
-
"Layout": {
|
|
5563
|
-
"Height": 1,
|
|
5564
|
-
"LineNumber": 0,
|
|
5565
|
-
"Width": 1,
|
|
5566
|
-
"X": 0,
|
|
5567
|
-
"XAlignment": 1,
|
|
5568
|
-
"Y": 0,
|
|
5569
|
-
"YAlignment": 3
|
|
5570
|
-
},
|
|
5571
|
-
"Mandatory": false,
|
|
5572
|
-
"MaxFieldCharacters": 0,
|
|
5573
|
-
"MaxFieldLines": 0,
|
|
5574
|
-
"MaxValue": 1000000000,
|
|
5575
|
-
"MinValue": -1000000000,
|
|
5576
|
-
"ReadOnly": true,
|
|
5577
|
-
"Title": "Item Type"
|
|
5578
|
-
},
|
|
5579
|
-
{
|
|
5580
|
-
"ApiName": "ObjectMenu",
|
|
5581
|
-
"ColumnWidth": 10,
|
|
5582
|
-
"ColumnWidthType": 0,
|
|
5583
|
-
"FieldName": "",
|
|
5584
|
-
"FieldType": 17,
|
|
5585
|
-
"Layout": {
|
|
5586
|
-
"Height": 2,
|
|
5587
|
-
"LineNumber": 1,
|
|
5588
|
-
"Width": 2,
|
|
5589
|
-
"X": 8,
|
|
5590
|
-
"XAlignment": 1,
|
|
5591
|
-
"Y": 0,
|
|
5592
|
-
"YAlignment": 3
|
|
5593
|
-
},
|
|
5594
|
-
"Mandatory": false,
|
|
5595
|
-
"MaxFieldCharacters": 0,
|
|
5596
|
-
"MaxFieldLines": 0,
|
|
5597
|
-
"MaxValue": 1000000000,
|
|
5598
|
-
"MinValue": -1000000000,
|
|
5599
|
-
"ReadOnly": false,
|
|
5600
|
-
"Title": ""
|
|
5601
|
-
},
|
|
5602
|
-
{
|
|
5603
|
-
"ApiName": "TSARelteadItems",
|
|
5604
|
-
"ColumnWidth": 10,
|
|
5605
|
-
"ColumnWidthType": 0,
|
|
5606
|
-
"FieldName": "RelteadItems",
|
|
5607
|
-
"FieldType": 1,
|
|
5608
|
-
"Layout": {
|
|
5609
|
-
"Height": 8,
|
|
5610
|
-
"LineNumber": 2,
|
|
5611
|
-
"Width": 10,
|
|
5612
|
-
"X": 0,
|
|
5613
|
-
"XAlignment": 1,
|
|
5614
|
-
"Y": 2,
|
|
5615
|
-
"YAlignment": 3
|
|
5616
|
-
},
|
|
5617
|
-
"Mandatory": false,
|
|
5618
|
-
"MaxFieldCharacters": 0,
|
|
5619
|
-
"MaxFieldLines": 0,
|
|
5620
|
-
"MaxValue": 1000000000,
|
|
5621
|
-
"MinValue": -1000000000,
|
|
5622
|
-
"ReadOnly": false,
|
|
5623
|
-
"Title": "RelteadItems"
|
|
5624
|
-
},
|
|
5625
|
-
{
|
|
5626
|
-
"ApiName": "Image",
|
|
5627
|
-
"ColumnWidth": 10,
|
|
5628
|
-
"ColumnWidthType": 0,
|
|
5629
|
-
"FieldName": "",
|
|
5630
|
-
"FieldType": 20,
|
|
5631
|
-
"Layout": {
|
|
5632
|
-
"Height": 8,
|
|
5633
|
-
"LineNumber": 3,
|
|
5634
|
-
"Width": 10,
|
|
5635
|
-
"X": 0,
|
|
5636
|
-
"XAlignment": 3,
|
|
5637
|
-
"Y": 10,
|
|
5638
|
-
"YAlignment": 3
|
|
5639
|
-
},
|
|
5640
|
-
"Mandatory": false,
|
|
5641
|
-
"MaxFieldCharacters": 0,
|
|
5642
|
-
"MaxFieldLines": 0,
|
|
5643
|
-
"MaxValue": 1000000000,
|
|
5644
|
-
"MinValue": -1000000000,
|
|
5645
|
-
"ReadOnly": true,
|
|
5646
|
-
"Title": ""
|
|
5647
|
-
},
|
|
5648
|
-
{
|
|
5649
|
-
"ApiName": "ItemName",
|
|
5650
|
-
"ColumnWidth": 10,
|
|
5651
|
-
"ColumnWidthType": 0,
|
|
5652
|
-
"FieldName": "",
|
|
5653
|
-
"FieldType": 1,
|
|
5654
|
-
"Layout": {
|
|
5655
|
-
"Height": 1,
|
|
5656
|
-
"LineNumber": 4,
|
|
5657
|
-
"Width": 10,
|
|
5658
|
-
"X": 0,
|
|
5659
|
-
"XAlignment": 3,
|
|
5660
|
-
"Y": 18,
|
|
5661
|
-
"YAlignment": 3
|
|
5662
|
-
},
|
|
5663
|
-
"Mandatory": false,
|
|
5664
|
-
"MaxFieldCharacters": 0,
|
|
5665
|
-
"MaxFieldLines": 0,
|
|
5666
|
-
"MaxValue": 1000000000,
|
|
5667
|
-
"MinValue": -1000000000,
|
|
5668
|
-
"ReadOnly": true,
|
|
5669
|
-
"Title": ""
|
|
5670
|
-
},
|
|
5671
|
-
{
|
|
5672
|
-
"ApiName": "ItemExternalID",
|
|
5673
|
-
"ColumnWidth": 10,
|
|
5674
|
-
"ColumnWidthType": 0,
|
|
5675
|
-
"FieldName": "",
|
|
5676
|
-
"FieldType": 1,
|
|
5677
|
-
"Layout": {
|
|
5678
|
-
"Height": 1,
|
|
5679
|
-
"LineNumber": 5,
|
|
5680
|
-
"Width": 10,
|
|
5681
|
-
"X": 0,
|
|
5682
|
-
"XAlignment": 3,
|
|
5683
|
-
"Y": 19,
|
|
5684
|
-
"YAlignment": 3
|
|
5685
|
-
},
|
|
5686
|
-
"Mandatory": false,
|
|
5687
|
-
"MaxFieldCharacters": 0,
|
|
5688
|
-
"MaxFieldLines": 0,
|
|
5689
|
-
"MaxValue": 1000000000,
|
|
5690
|
-
"MinValue": -1000000000,
|
|
5691
|
-
"ReadOnly": true,
|
|
5692
|
-
"Title": ""
|
|
5693
|
-
},
|
|
5694
|
-
{
|
|
5695
|
-
"ApiName": "ItemPrice",
|
|
5696
|
-
"ColumnWidth": 10,
|
|
5697
|
-
"ColumnWidthType": 0,
|
|
5698
|
-
"FieldName": "",
|
|
5699
|
-
"FieldType": 9,
|
|
5700
|
-
"Layout": {
|
|
5701
|
-
"Height": 1,
|
|
5702
|
-
"LineNumber": 6,
|
|
5703
|
-
"Width": 10,
|
|
5704
|
-
"X": 0,
|
|
5705
|
-
"XAlignment": 3,
|
|
5706
|
-
"Y": 20,
|
|
5707
|
-
"YAlignment": 3
|
|
5708
|
-
},
|
|
5709
|
-
"Mandatory": false,
|
|
5710
|
-
"MaxFieldCharacters": 0,
|
|
5711
|
-
"MaxFieldLines": 0,
|
|
5712
|
-
"MaxValue": 1000000000,
|
|
5713
|
-
"MinValue": -1000000000,
|
|
5714
|
-
"ReadOnly": true,
|
|
5715
|
-
"Title": ""
|
|
5716
|
-
},
|
|
5717
|
-
{
|
|
5718
|
-
"ApiName": "UnitsQuantity",
|
|
5719
|
-
"ColumnWidth": 10,
|
|
5720
|
-
"ColumnWidthType": 0,
|
|
5721
|
-
"FieldName": "",
|
|
5722
|
-
"FieldType": 8,
|
|
5723
|
-
"Layout": {
|
|
5724
|
-
"Height": 2,
|
|
5725
|
-
"LineNumber": 7,
|
|
5726
|
-
"Width": 10,
|
|
5727
|
-
"X": 0,
|
|
5728
|
-
"XAlignment": 3,
|
|
5729
|
-
"Y": 21,
|
|
5730
|
-
"YAlignment": 3
|
|
5731
|
-
},
|
|
5732
|
-
"Mandatory": false,
|
|
5733
|
-
"MaxFieldCharacters": 0,
|
|
5734
|
-
"MaxFieldLines": 0,
|
|
5735
|
-
"MaxValue": 1000000000,
|
|
5736
|
-
"MinValue": -1000000000,
|
|
5737
|
-
"ReadOnly": false,
|
|
5738
|
-
"Title": ""
|
|
5739
|
-
},
|
|
5740
|
-
{
|
|
5741
|
-
"ApiName": "ItemTSASeason",
|
|
5742
|
-
"ColumnWidth": 10,
|
|
5743
|
-
"ColumnWidthType": 0,
|
|
5744
|
-
"FieldName": "Item Season",
|
|
5745
|
-
"FieldType": 1,
|
|
5746
|
-
"Layout": {
|
|
5747
|
-
"Height": 1,
|
|
5748
|
-
"LineNumber": 8,
|
|
5749
|
-
"Width": 1,
|
|
5750
|
-
"X": 0,
|
|
5751
|
-
"XAlignment": 1,
|
|
5752
|
-
"Y": 23,
|
|
5753
|
-
"YAlignment": 3
|
|
5754
|
-
},
|
|
5755
|
-
"Mandatory": false,
|
|
5756
|
-
"MaxFieldCharacters": 0,
|
|
5757
|
-
"MaxFieldLines": 0,
|
|
5758
|
-
"MaxValue": 1000000000,
|
|
5759
|
-
"MinValue": -1000000000,
|
|
5760
|
-
"ReadOnly": true,
|
|
5761
|
-
"Title": "Item Season"
|
|
5762
|
-
},
|
|
5763
|
-
{
|
|
5764
|
-
"ApiName": "ItemTSAPackaging",
|
|
5765
|
-
"ColumnWidth": 10,
|
|
5766
|
-
"ColumnWidthType": 0,
|
|
5767
|
-
"FieldName": "Item Packaging",
|
|
5768
|
-
"FieldType": 1,
|
|
5769
|
-
"Layout": {
|
|
5770
|
-
"Height": 1,
|
|
5771
|
-
"LineNumber": 9,
|
|
5772
|
-
"Width": 1,
|
|
5773
|
-
"X": 0,
|
|
5774
|
-
"XAlignment": 1,
|
|
5775
|
-
"Y": 24,
|
|
5776
|
-
"YAlignment": 3
|
|
5777
|
-
},
|
|
5778
|
-
"Mandatory": false,
|
|
5779
|
-
"MaxFieldCharacters": 0,
|
|
5780
|
-
"MaxFieldLines": 0,
|
|
5781
|
-
"MaxValue": 1000000000,
|
|
5782
|
-
"MinValue": -1000000000,
|
|
5783
|
-
"ReadOnly": true,
|
|
5784
|
-
"Title": "Item Packaging"
|
|
5785
|
-
}
|
|
5786
|
-
]
|
|
5787
|
-
}
|
|
2652
|
+
internalFormFieldChange: [{ type: Output }],
|
|
2653
|
+
internalFormFieldClick: [{ type: Output }]
|
|
5788
2654
|
};
|
|
5789
2655
|
|
|
5790
2656
|
const pepComponentsModules = [
|