Ошибок в консоли нет, валидация работает, но нажатия на кнопку Сохранить не даёт никакой реакции.
В других формах отрабатывает нормально. Права полные. Видео процесса
Нравится
Рекомендую начать с анализа замещений AccountPageV2. Могу предположить, что в одном из замещений этой странницы вы найдете замещение функции save.
Дмитрий А. пишет:
вы найдете замещение функции save
Причём с забытым вызовом базовой логики:
this.callParent(arguments);
Зверев Александр, с анализа формы и начал. Дело в том, что там нет перегрузку save. Привожу ниже весть код формы:
define("AccountPageV2", [], function() {
return {
entitySchemaName: "Account",
attributes: {
"UsrNashePrisutstviePoLKvObemePoLKclienta": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrPotencialKlientaPoSovmestimymLK", "UsrOborotSNashejKompaniejPoLK"],
methodName: "calcUsrNashePrisutstviePoLKvObemePoLKclienta"
}
]
},
"UsrIzNihPLCG": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrPrisutstviePL", "UsrPrisutstvieCG", "UsrOborotSNashejKompaniejPoLK",
"UsrPotencialKlientaPoSovmestimymLK"],
methodName: "calcUsrIzNihPLCG"
}
]
},
"UsrGP05": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrPrisutstvieGP05", "UsrOborotSNashejKompaniejPoLK", "UsrPotencialKlientaPoSovmestimymLK"],
methodName: "calcUsrGP05"
}
]
},
"UsrGP510": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrPrisutstvieGP510", "UsrOborotSNashejKompaniejPoLK", "UsrPotencialKlientaPoSovmestimymLK"],
methodName: "calcUsrGP510"
}
]
},
"UsrGP1015": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrPrisutstvieGP1015", "UsrOborotSNashejKompaniejPoLK", "UsrPotencialKlientaPoSovmestimymLK"],
methodName: "calcUsrGP1015"
}
]
},
"UsrGP15": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrPrisutstvieGP15", "UsrOborotSNashejKompaniejPoLK", "UsrPotencialKlientaPoSovmestimymLK"],
methodName: "calcUsrGP15"
}
]
},
"UsrBallyMenedzheraPoPLCG": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrIzNihPLCG", "UsrPlanNaPrisutstviePoPLCG", "UsrBallyPLCG"],
methodName: "calcUsrBallyMenedzheraPoPLCG"
}
]
},
"UsrBallyMenedzheraPoGP05": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrGP05", "UsrPlanNaPrisutstviePoGP05", "UsrBallyGP05"],
methodName: "calcUsrBallyMenedzheraPoGP05"
}
]
},
"UsrBallyMenedzheraPoGP510": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrGP510", "UsrPlanNaPrisutstviePoGP510", "UsrBallyGP510"],
methodName: "calcUsrBallyMenedzheraPoGP510"
}
]
},
"UsrBallyMenedzheraPoGP1015": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrGP1015", "UsrPlanNaPrisutstviePoGP1015", "UsrBallyGP1015"],
methodName: "calcUsrBallyMenedzheraPoGP1015"
}
]
},
"UsrBallyMenedzheraPoGP15": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrGP15", "UsrPlanNaPrisutstviePoGP15", "UsrBallyGP15"],
methodName: "calcUsrBallyMenedzheraPoGP15"
}
]
},
"UsrSummaBallovMenedzhera": {
dataValueType: Terrasoft.DataValueType.INTEGER,
dependencies: [
{
columns: ["UsrBallyMenedzheraPoPLCG", "UsrBallyMenedzheraPoGP05", "UsrBallyMenedzheraPoGP510", "UsrBallyMenedzheraPoGP1015", "UsrBallyMenedzheraPoGP15",
"UsrKorrektnostZapolneniyaKartochkiKontragenta", "UsrPolnotaZapolneniyaKartochkiKontragenta",
"UsrPovyshayushijKoefficientOtProdazhDrugogoAss", "UsrKoefficientSlozhnostiMnenieRukovodstva"],
methodName: "calcUsrSummaBallovMenedzhera"
}
]
},
},
modules: /**SCHEMA_MODULES*/{}/**SCHEMA_MODULES*/,
details: /**SCHEMA_DETAILS*/{
"UsrSchema5Detail76778edd": {
"schemaName": "UsrSchema5Detail",
"entitySchemaName": "UsrCompetitorDetail",
"filter": {
"detailColumn": "UsrAccount",
"masterColumn": "Id"
}
},
"UsrSchema6Detailaaa82cbe": {
"schemaName": "UsrSchema6Detail",
"entitySchemaName": "UsrCopmServicesDetail",
"filter": {
"detailColumn": "UsrAccount",
"masterColumn": "Id"
}
}
}/**SCHEMA_DETAILS*/,
businessRules: /**SCHEMA_BUSINESS_RULES*/{}/**SCHEMA_BUSINESS_RULES*/,
methods: {
onEntityInitialized: function() {
this.callParent(arguments);
this.calcUsrNashePrisutstviePoLKvObemePoLKclienta();
this.calcUsrIzNihPLCG();
this.calcUsrGP05();
this.calcUsrGP510();
this.calcUsrGP1015();
this.calcUsrGP15();
this.calcUsrBallyMenedzheraPoPLCG();
this.calcUsrBallyMenedzheraPoGP05();
this.calcUsrBallyMenedzheraPoGP510();
this.calcUsrBallyMenedzheraPoGP1015();
this.calcUsrBallyMenedzheraPoGP15();
this.calcUsrSummaBallovMenedzhera();
},
//=== Common methods
validate: function (x) {
return (x === null || x === Infinity || isNaN(x))?0:x;
},
//=== Calc events
calcUsrNashePrisutstviePoLKvObemePoLKclienta: function() {
var x = (this.get("UsrOborotSNashejKompaniejPoLK") * 100) / this.get("UsrPotencialKlientaPoSovmestimymLK");
var result = this.validate(Math.round(x));
this.set("UsrNashePrisutstviePoLKvObemePoLKclienta", result);
console.log(this.get("UsrPotencialKlientaPoSovmestimymLK"));
},
calcUsrIzNihPLCG: function() {
var x = ((this.get("UsrPrisutstviePL") + this.get("UsrPrisutstvieCG")) * this.get("UsrOborotSNashejKompaniejPoLK")) / this.get("UsrPotencialKlientaPoSovmestimymLK");
var result = this.validate(Math.round(x));
this.set("UsrIzNihPLCG", result);
},
calcUsrGP05: function() {
var x = (this.get("UsrPrisutstvieGP05") * this.get("UsrOborotSNashejKompaniejPoLK")) / this.get("UsrPotencialKlientaPoSovmestimymLK");
var result = this.validate(Math.round(x));
this.set("UsrGP05", result);
},
calcUsrGP510: function() {
var x = (this.get("UsrPrisutstvieGP510") * this.get("UsrOborotSNashejKompaniejPoLK")) / this.get("UsrPotencialKlientaPoSovmestimymLK");
var result = this.validate(Math.round(x));
this.set("UsrGP510", result);
},
calcUsrGP1015: function() {
var x = (this.get("UsrPrisutstvieGP1015") * this.get("UsrOborotSNashejKompaniejPoLK")) / this.get("UsrPotencialKlientaPoSovmestimymLK");
var result = this.validate(Math.round(x));
this.set("UsrGP1015", result);
},
calcUsrGP15: function() {
var x = (this.get("UsrPrisutstvieGP15") * this.get("UsrOborotSNashejKompaniejPoLK")) / this.get("UsrPotencialKlientaPoSovmestimymLK");
var result = this.validate(Math.round(x));
this.set("UsrGP15", result);
},
calcUsrBallyMenedzheraPoPLCG: function() {
var x = (this.get("UsrIzNihPLCG") * this.get("UsrBallyPLCG")) / this.get("UsrPlanNaPrisutstviePoPLCG");
var result = this.validate(Math.round(x));
this.set("UsrBallyMenedzheraPoPLCG", result);
},
calcUsrBallyMenedzheraPoGP05: function() {
var x = (this.get("UsrGP05") * this.get("UsrBallyGP05")) / this.get("UsrPlanNaPrisutstviePoGP05");
var result = this.validate(Math.round(x));
this.set("UsrBallyMenedzheraPoGP05", result);
},
calcUsrBallyMenedzheraPoGP510: function() {
var x = (this.get("UsrGP510") * this.get("UsrBallyGP510")) / this.get("UsrPlanNaPrisutstviePoGP510");
var result = this.validate(Math.round(x));
this.set("UsrBallyMenedzheraPoGP510", result);
},
calcUsrBallyMenedzheraPoGP1015: function() {
var x = (this.get("UsrGP1015") * this.get("UsrBallyGP1015")) / this.get("UsrPlanNaPrisutstviePoGP1015");
var result = this.validate(Math.round(x));
this.set("UsrBallyMenedzheraPoGP1015", result);
},
calcUsrBallyMenedzheraPoGP15: function() {
var x = (this.get("UsrGP15") * this.get("UsrBallyGP15")) / this.get("UsrPlanNaPrisutstviePoGP15");
var result = this.validate(Math.round(x));
this.set("UsrBallyMenedzheraPoGP15", result);
},
calcUsrSummaBallovMenedzhera: function() {
var summaBallov = this.get("UsrBallyMenedzheraPoPLCG") + this.get("UsrBallyMenedzheraPoGP05") + this.get("UsrBallyMenedzheraPoGP510") + this.get("UsrBallyMenedzheraPoGP1015") + this.get("UsrBallyMenedzheraPoGP15");
var p1 = this.get("UsrKorrektnostZapolneniyaKartochkiKontragenta");
var p2 = this.get("UsrPolnotaZapolneniyaKartochkiKontragenta");
var h = this.get("UsrPovyshayushijKoefficientOtProdazhDrugogoAss");
//var f = this.get("UsrKoefficientSlozhnostiMnenieRukovodstva");
var x = summaBallov-(summaBallov*(p1+p2))/100 + ((summaBallov*h)/100);
var result = this.validate(Math.round(x));
this.set("UsrSummaBallovMenedzhera", result);
}
},
dataModels: /**SCHEMA_DATA_MODELS*/{}/**SCHEMA_DATA_MODELS*/,
diff: /**SCHEMA_DIFF*/[
{
"operation": "merge",
"name": "AccountPhotoContainer",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 0
}
}
},
{
"operation": "merge",
"name": "AccountName",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 1
}
}
},
{
"operation": "merge",
"name": "AccountType",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 2
}
}
},
{
"operation": "merge",
"name": "AccountOwner",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 3
}
}
},
{
"operation": "merge",
"name": "AccountWeb",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 4
}
}
},
{
"operation": "merge",
"name": "AccountPhone",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 5
}
}
},
{
"operation": "merge",
"name": "NewAccountCategory",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 6
}
}
},
{
"operation": "merge",
"name": "AccountIndustry",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 7
}
}
},
{
"operation": "insert",
"name": "INTEGER20d4d658-6bc5-4ac5-9cb4-a2a0ae5c8a76",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 8,
"layoutName": "ProfileContainer"
},
"bindTo": "UsrRating",
"enabled": true
},
"parentName": "ProfileContainer",
"propertyName": "items",
"index": 8
},
{
"operation": "merge",
"name": "AccountPageGeneralTabContainer",
"values": {
"order": 0
}
},
{
"operation": "merge",
"name": "AlternativeName",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0
}
}
},
{
"operation": "merge",
"name": "Code",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0
}
}
},
{
"operation": "merge",
"name": "EmployeesNumber",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0
}
}
},
{
"operation": "merge",
"name": "Ownership",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 12,
"row": 0
}
}
},
{
"operation": "merge",
"name": "AnnualRevenue",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1
}
}
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGroup853e0173",
"values": {
"caption": {
"bindTo": "Resources.Strings.AccountPageGeneralTabContainerGroup853e0173GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "AccountPageGeneralTabContainer",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGridLayout11d59d8f",
"values": {
"itemType": 0,
"items": []
},
"parentName": "AccountPageGeneralTabContainerGroup853e0173",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUP10f4aaa9-eb60-44a5-8c15-dd4de23d6821",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "AccountPageGeneralTabContainerGridLayout11d59d8f"
},
"bindTo": "UsrActiviti",
"enabled": true,
"contentType": 3
},
"parentName": "AccountPageGeneralTabContainerGridLayout11d59d8f",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGroupfed35432",
"values": {
"caption": {
"bindTo": "Resources.Strings.AccountPageGeneralTabContainerGroupfed35432GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "AccountPageGeneralTabContainer",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGridLayout81e4a8f9",
"values": {
"itemType": 0,
"items": []
},
"parentName": "AccountPageGeneralTabContainerGroupfed35432",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPd47ac8cd-2e10-4214-8f44-3e0901ce118a",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "AccountPageGeneralTabContainerGridLayout81e4a8f9"
},
"bindTo": "UsrCalls",
"enabled": true,
"contentType": 3
},
"parentName": "AccountPageGeneralTabContainerGridLayout81e4a8f9",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGroupd0894ec0",
"values": {
"caption": {
"bindTo": "Resources.Strings.AccountPageGeneralTabContainerGroupd0894ec0GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "AccountPageGeneralTabContainer",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGridLayout04d2b6f7",
"values": {
"itemType": 0,
"items": []
},
"parentName": "AccountPageGeneralTabContainerGroupd0894ec0",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPee26b34a-7d60-477b-a91b-77e6eb1f225e",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "AccountPageGeneralTabContainerGridLayout04d2b6f7"
},
"bindTo": "UsrMonths",
"enabled": true,
"contentType": 3
},
"parentName": "AccountPageGeneralTabContainerGridLayout04d2b6f7",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGroup0e270862",
"values": {
"caption": {
"bindTo": "Resources.Strings.AccountPageGeneralTabContainerGroup0e270862GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "AccountPageGeneralTabContainer",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGridLayoutd4dbd874",
"values": {
"itemType": 0,
"items": []
},
"parentName": "AccountPageGeneralTabContainerGroup0e270862",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPe6f0dac7-e15d-44d0-92d8-f486b52251d5",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "AccountPageGeneralTabContainerGridLayoutd4dbd874"
},
"bindTo": "UsrMonthManager",
"enabled": true,
"contentType": 3
},
"parentName": "AccountPageGeneralTabContainerGridLayoutd4dbd874",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGroup0c6372e5",
"values": {
"caption": {
"bindTo": "Resources.Strings.AccountPageGeneralTabContainerGroup0c6372e5GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "AccountPageGeneralTabContainer",
"propertyName": "items",
"index": 11
},
{
"operation": "insert",
"name": "AccountPageGeneralTabContainerGridLayoute45d58b9",
"values": {
"itemType": 0,
"items": []
},
"parentName": "AccountPageGeneralTabContainerGroup0c6372e5",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRING497e11bb-8e6d-4adb-8976-8ea21a3635c3",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "AccountPageGeneralTabContainerGridLayoute45d58b9"
},
"bindTo": "UsrStringPreviousManager",
"enabled": true
},
"parentName": "AccountPageGeneralTabContainerGridLayoute45d58b9",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelTabCaption"
},
"items": [],
"order": 1
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 1
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroup03f16250",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroup03f16250GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayoutce0620c7",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroup03f16250",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrPotencialKlientaPoSovmestimymLK94b3fa21-81ee-41fd-ad71-f8987cb79dbe",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPotencialKlientaPoSovmestimymLK",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER65fcb363-d95a-4637-bea2-f8e2451860d8",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrNashePrisutstviePoLKvObemePoLKclienta",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "INTEGER3a1d8768-0562-49af-a22f-b4e83ac2ea1e",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrtrebuemoePrisutstviePoLKVObemeKlienta",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrIzNihPLCG0b7d70a1-8d19-4441-9e35-855cdea775e5",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrIzNihPLCG",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "INTEGERa9db5e3e-f9b4-442f-9b9b-491affc398ca",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 2,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPlanNaPrisutstviePoPLCG",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "INTEGERc5d58990-fe85-432b-b8a6-d8aed53a42de",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 12,
"row": 2,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrBallyPLCG",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "UsrGP0570fd6549-559e-4ef1-9de2-6c9db8e4b6f9",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 3,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrGP05",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "INTEGERd455ea96-174c-47eb-8897-ce2d5170703a",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 3,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPlanNaPrisutstviePoGP05",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "INTEGER76ebd189-2021-4a08-9f53-d9166b2a3c1d",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 12,
"row": 3,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrBallyGP05",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "UsrGP510e24771d8-fefc-49f8-bb16-991a970fb123",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 4,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrGP510",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "INTEGER3c2df273-133d-4dae-b4bf-0e460b9750bf",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 4,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPlanNaPrisutstviePoGP510",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 10
},
{
"operation": "insert",
"name": "UsrBallyGP510cede400a-eb30-4ad1-8e01-e07d2b99137d",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 12,
"row": 4,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrBallyGP510"
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 11
},
{
"operation": "insert",
"name": "UsrGP10156709465b-5f7e-48f8-aec6-1bd05176abfc",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 5,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrGP1015",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 12
},
{
"operation": "insert",
"name": "INTEGERa4ba6c7b-1775-4461-b5b7-4fc1d6a282a7",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 5,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPlanNaPrisutstviePoGP1015",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 13
},
{
"operation": "insert",
"name": "INTEGERca23bdbf-692e-43c4-a40c-8580901e9304",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 12,
"row": 5,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrBallyGP1015",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 14
},
{
"operation": "insert",
"name": "UsrGP156cd70a8c-f6d4-40fb-9c2a-c77bedc80d20",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 6,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrGP15",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 15
},
{
"operation": "insert",
"name": "INTEGER3b2c4da5-5b1b-440b-81b2-a7a34e42aa75",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 6,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPlanNaPrisutstviePoGP15",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 16
},
{
"operation": "insert",
"name": "UsrPlanNaPrisutstviePoPLCG02ea8cc9f-b13b-4af0-a2b0-5dac3cb918ef",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 12,
"row": 6,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrBallyGP15",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 17
},
{
"operation": "insert",
"name": "INTEGERc55a28aa-321e-48dc-85e5-be27aeecd2c0",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 7,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPlaniruemoeMenedzheromPrisutstviePoLKCherez3m",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 18
},
{
"operation": "insert",
"name": "INTEGER6a686578-fc3b-4e0e-a1c2-53088560f1ee",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 8,
"layoutName": "Tab0d885a61TabLabelGridLayoutce0620c7"
},
"bindTo": "UsrPlanNaPrisutstviePoLKOtRukovodstvaCherez3m",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutce0620c7",
"propertyName": "items",
"index": 19
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroupaf424ce1",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroupaf424ce1GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayout31b4b544",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroupaf424ce1",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrPotencialKlientaPoOstalnomuAssortimentubc3d83c3-46d6-4af1-a733-a443f9dc00ee",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayout31b4b544"
},
"bindTo": "UsrPotencialKlientaPoOstalnomuAssortimentu",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayout31b4b544",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGERa7d72719-2764-45c2-b628-de03f541ac56",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayout31b4b544"
},
"bindTo": "UsrNashePrisutstviePoOstalnomuAssortimentu",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout31b4b544",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "INTEGERb4d6dd0a-cb85-4b6f-a168-2cbd1d512e5b",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab0d885a61TabLabelGridLayout31b4b544"
},
"bindTo": "UsrPlanMenedzheraCherez3mPoOstalnomuAssortimentu",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout31b4b544",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroup88d3deb1",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroup88d3deb1GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayout7a18c403",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroup88d3deb1",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRINGcfff1338-d188-4834-a969-92b12c211ecc",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayout7a18c403"
},
"bindTo": "UsrKommentarijMenedzhera",
"labelConfig": {
"visible": false
},
"enabled": true,
"contentType": 0
},
"parentName": "Tab0d885a61TabLabelGridLayout7a18c403",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroup10fd3ae9",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroup10fd3ae9GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayout116b329d",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroup10fd3ae9",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRINGec0149db-5641-4dd5-91f7-395e38de2eca",
"values": {
"layout": {
"colSpan": 24,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayout116b329d"
},
"bindTo": "UsrKommentarijRukovodstva",
"labelConfig": {
"visible": false
},
"enabled": true,
"contentType": 0
},
"parentName": "Tab0d885a61TabLabelGridLayout116b329d",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroupf1629e13",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroupf1629e13GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayoutbf1e47ae",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroupf1629e13",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrIntegerPlanPresencePL3e1e64ca-b6bd-4a22-9411-711d2a582644",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayoutbf1e47ae"
},
"bindTo": "UsrPrisutstviePL",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutbf1e47ae",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER40c9e087-701c-472a-bcd7-d409d77ad8d4",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayoutbf1e47ae"
},
"bindTo": "UsrPrisutstvieCG",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutbf1e47ae",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "INTEGER76fa914e-9e21-4219-ad7d-587b89e3576f",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayoutbf1e47ae"
},
"bindTo": "UsrPlanMenedzheraCherez3MesyacaPLCG",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutbf1e47ae",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroup25fc8275",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroup25fc8275GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayoutd248867b",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroup25fc8275",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrPrisutstvieCG05af38599a-f2de-4e11-a107-be9fdcda3a04",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayoutd248867b"
},
"bindTo": "UsrPrisutstvieGP05",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutd248867b",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER8ebd0014-fb8a-4e8a-a8f0-325eb6d58097",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayoutd248867b"
},
"bindTo": "UsrPlanMenedzheraCherez3MesyacaGP05",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayoutd248867b",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroupd7e1bfcb",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroupd7e1bfcbGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayout6f1bb88f",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroupd7e1bfcb",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrPrisutstvieGP510d3c711bd-2718-40ce-a980-1c60115b7e16",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayout6f1bb88f"
},
"bindTo": "UsrPrisutstvieGP510",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout6f1bb88f",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER8d241df4-d740-4036-9e75-88a8ffc8a1c8",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayout6f1bb88f"
},
"bindTo": "UsrPlanMenedzheraCherez3MesyacaGP510",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout6f1bb88f",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroupe66a35a2",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroupe66a35a2GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayout599bb08b",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroupe66a35a2",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrPrisutstvieGP1015a496c53e-f77d-43da-9d50-73a3480da2ba",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayout599bb08b"
},
"bindTo": "UsrPrisutstvieGP1015",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout599bb08b",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER33f8604a-72df-46e1-9b61-a75eb1e161e4",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayout599bb08b"
},
"bindTo": "UsrPlanMenedzheraCherez3MesyacaGP1015",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout599bb08b",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroup32a5f3bc",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroup32a5f3bcGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 8
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayout7f27e13d",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroup32a5f3bc",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrPrisutstvieGP15af03789d-349e-4f16-b26b-a9fc483e655a",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayout7f27e13d"
},
"bindTo": "UsrPrisutstvieGP15",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout7f27e13d",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER05c5207e-d133-4975-8de7-0e7a34b518d1",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayout7f27e13d"
},
"bindTo": "UsrPlanyMenedzheraCherez3MesyacaGP15",
"enabled": true
},
"parentName": "Tab0d885a61TabLabelGridLayout7f27e13d",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGroup2ce62783",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0d885a61TabLabelGroup2ce62783GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0d885a61TabLabel",
"propertyName": "items",
"index": 9
},
{
"operation": "insert",
"name": "Tab0d885a61TabLabelGridLayout8d72a538",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0d885a61TabLabelGroup2ce62783",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrBallyMenedzheraPoPLCG003161c3-ebcb-4933-a759-cbad2a1f3f1e",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0d885a61TabLabelGridLayout8d72a538"
},
"bindTo": "UsrBallyMenedzheraPoPLCG",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayout8d72a538",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrBallyMenedzheraPoGP05965c8d9c-ced1-41fc-a10e-04cf5cdb705c",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 1,
"layoutName": "Tab0d885a61TabLabelGridLayout8d72a538"
},
"bindTo": "UsrBallyMenedzheraPoGP05",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayout8d72a538",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "UsrBallyMenedzheraPoGP510c8bd2cb2-14fd-4ac9-af97-8de21c5f61c4",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 2,
"layoutName": "Tab0d885a61TabLabelGridLayout8d72a538"
},
"bindTo": "UsrBallyMenedzheraPoGP510",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayout8d72a538",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "UsrBallyMenedzheraPoGP1015fa2f3fab-5481-4fa1-b4b6-0b3d2489ca38",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 3,
"layoutName": "Tab0d885a61TabLabelGridLayout8d72a538"
},
"bindTo": "UsrBallyMenedzheraPoGP1015",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayout8d72a538",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "UsrBallyMenedzheraPoGP15d968b9d9-7544-4c2d-ad62-38b80d53fbdc",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 4,
"layoutName": "Tab0d885a61TabLabelGridLayout8d72a538"
},
"bindTo": "UsrBallyMenedzheraPoGP15",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayout8d72a538",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "UsrSummaBallovMenedzheraa54f4933-1334-4db3-a759-d847e48c4bab",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 5,
"layoutName": "Tab0d885a61TabLabelGridLayout8d72a538"
},
"bindTo": "UsrSummaBallovMenedzhera",
"enabled": false
},
"parentName": "Tab0d885a61TabLabelGridLayout8d72a538",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabf059d06cTabLabelTabCaption"
},
"items": [],
"order": 2
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 2
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGroup79234019",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabf059d06cTabLabelGroup79234019GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabf059d06cTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGridLayout1b332e5b",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabf059d06cTabLabelGroup79234019",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER96fb3523-e86c-46d7-a235-9e9299ec02d9",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabf059d06cTabLabelGridLayout1b332e5b"
},
"bindTo": "UsrPolnotaZapolneniyaKartochkiKontragenta",
"enabled": true,
"labelConfig": {
"visible": false
}
},
"parentName": "Tabf059d06cTabLabelGridLayout1b332e5b",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGroupf01240d4",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabf059d06cTabLabelGroupf01240d4GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabf059d06cTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGridLayout69c1a172",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabf059d06cTabLabelGroupf01240d4",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrIntegerCartCorrectnessba84a8f4-aa38-4190-911d-61d2a114cfa2",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabf059d06cTabLabelGridLayout69c1a172"
},
"bindTo": "UsrKorrektnostZapolneniyaKartochkiKontragenta",
"labelConfig": {
"visible": false
},
"enabled": true
},
"parentName": "Tabf059d06cTabLabelGridLayout69c1a172",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGroup22e8283b",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabf059d06cTabLabelGroup22e8283bGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabf059d06cTabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGridLayoutf7466506",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabf059d06cTabLabelGroup22e8283b",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "FLOAT8d87c447-fbf8-4795-8c74-365c985bf9e0",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabf059d06cTabLabelGridLayoutf7466506"
},
"bindTo": "UsrKoefficientSlozhnostiMnenieMenedzhera",
"enabled": true
},
"parentName": "Tabf059d06cTabLabelGridLayoutf7466506",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "FLOATfaf8f587-8ddc-41bc-b4d5-06173f68a50e",
"values": {
"layout": {
"colSpan": 6,
"rowSpan": 1,
"column": 6,
"row": 0,
"layoutName": "Tabf059d06cTabLabelGridLayoutf7466506"
},
"bindTo": "UsrKoefficientSlozhnostiMnenieRukovodstva",
"enabled": true
},
"parentName": "Tabf059d06cTabLabelGridLayoutf7466506",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGroup15ec1d24",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabf059d06cTabLabelGroup15ec1d24GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabf059d06cTabLabel",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "Tabf059d06cTabLabelGridLayout0ce373b1",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabf059d06cTabLabelGroup15ec1d24",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER912b7481-2806-4dfd-9538-7c04ad943d53",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabf059d06cTabLabelGridLayout0ce373b1"
},
"bindTo": "UsrPovyshayushijKoefficientOtProdazhDrugogoAss",
"enabled": true,
"labelConfig": {
"visible": false
}
},
"parentName": "Tabf059d06cTabLabelGridLayout0ce373b1",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0e9d7e21TabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0e9d7e21TabLabelTabCaption"
},
"items": [],
"order": 3
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 3
},
{
"operation": "insert",
"name": "Tab0e9d7e21TabLabelGroupdef10531",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0e9d7e21TabLabelGroupdef10531GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0e9d7e21TabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0e9d7e21TabLabelGridLayoutab9b448e",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0e9d7e21TabLabelGroupdef10531",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER2d2dfd3b-e944-4927-8f1a-9bbc2b793031",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0e9d7e21TabLabelGridLayoutab9b448e"
},
"bindTo": "UsrPotencialKlientaPoSovmestimymLK",
"enabled": true,
"labelConfig": {
"visible": false
}
},
"parentName": "Tab0e9d7e21TabLabelGridLayoutab9b448e",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0e9d7e21TabLabelGroupa186ca8a",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0e9d7e21TabLabelGroupa186ca8aGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0e9d7e21TabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab0e9d7e21TabLabelGridLayoutebd6d007",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0e9d7e21TabLabelGroupa186ca8a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER0123e1b7-d93b-49d3-a13f-47609d9ea3ca",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0e9d7e21TabLabelGridLayoutebd6d007"
},
"bindTo": "UsrPotencialKlientaPoOriginalnymLK",
"enabled": true,
"labelConfig": {
"visible": false
}
},
"parentName": "Tab0e9d7e21TabLabelGridLayoutebd6d007",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab0e9d7e21TabLabelGroup5cba2ff7",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab0e9d7e21TabLabelGroup5cba2ff7GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab0e9d7e21TabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Tab0e9d7e21TabLabelGridLayout653cf169",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab0e9d7e21TabLabelGroup5cba2ff7",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER405d2395-d332-4a37-8d1f-7046fa8c466f",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab0e9d7e21TabLabelGridLayout653cf169"
},
"bindTo": "UsrPotencialKlientaPoOstalnomuAssortimentu",
"enabled": true,
"labelConfig": {
"visible": false
}
},
"parentName": "Tab0e9d7e21TabLabelGridLayout653cf169",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelTabCaption"
},
"items": [],
"order": 4
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 4
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroupf8a89cc0",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroupf8a89cc0GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayouta639995e",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroupf8a89cc0",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER2d5801e0-30a5-4a96-a4c8-af4e727dc608",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayouta639995e"
},
"bindTo": "UsrTendershik",
"enabled": true
},
"parentName": "Tabd7a07a4dTabLabelGridLayouta639995e",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroup98f6d123",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroup98f6d123GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayout8940f7f2",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroup98f6d123",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER6aa29a13-6cd9-4422-b6be-e6b2858119a6",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayout8940f7f2"
},
"bindTo": "UsrKorporativ",
"enabled": true
},
"parentName": "Tabd7a07a4dTabLabelGridLayout8940f7f2",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroup7c65947b",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroup7c65947bGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayoutd4c553b0",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroup7c65947b",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER33bff3ce-67f2-4a85-8068-0e19da95428c",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayoutd4c553b0"
},
"bindTo": "UsrKonechnyjPotrebitel",
"enabled": true
},
"parentName": "Tabd7a07a4dTabLabelGridLayoutd4c553b0",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroupba75e612",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroupba75e612GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayout0e604edd",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroupba75e612",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER533c1cc8-eab4-4ebc-a3b7-67a050d7c60c",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayout0e604edd"
},
"bindTo": "UsrOptovik",
"enabled": true
},
"parentName": "Tabd7a07a4dTabLabelGridLayout0e604edd",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroup1da8b090",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroup1da8b090GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayoutbece58f9",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroup1da8b090",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGERe5b6f2ba-c6d9-4ec9-b401-c083783455f0",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayoutbece58f9"
},
"bindTo": "UsrRoznichnik",
"enabled": true
},
"parentName": "Tabd7a07a4dTabLabelGridLayoutbece58f9",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroup7519728e",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroup7519728eGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 5
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayout0bc3a5a2",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroup7519728e",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER26a2c382-becb-4ced-81a8-b76b50a5f04d",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayout0bc3a5a2"
},
"bindTo": "UsrInternetmagazin",
"enabled": true
},
"parentName": "Tabd7a07a4dTabLabelGridLayout0bc3a5a2",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroup67897e89",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroup67897e89GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 6
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayoutfe5d54ef",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroup67897e89",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrOborotPoLKb1a2abd8-ff91-4ba1-a6dd-8442d9ec9144",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayoutfe5d54ef"
},
"bindTo": "UsrOborotSNashejKompaniejPoLK",
"enabled": true,
"labelConfig": {
"visible": false
}
},
"parentName": "Tabd7a07a4dTabLabelGridLayoutfe5d54ef",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGroup748acf7a",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd7a07a4dTabLabelGroup748acf7aGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd7a07a4dTabLabel",
"propertyName": "items",
"index": 7
},
{
"operation": "insert",
"name": "Tabd7a07a4dTabLabelGridLayout4faae6c9",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd7a07a4dTabLabelGroup748acf7a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "FLOATe9174017-c853-4f4b-b951-855b67e7efc0",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd7a07a4dTabLabelGridLayout4faae6c9"
},
"bindTo": "UsrOborotSNashejKompaniejPoOstalnomuAss",
"labelConfig": {
"visible": false
},
"enabled": true
},
"parentName": "Tabd7a07a4dTabLabelGridLayout4faae6c9",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab55345255TabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab55345255TabLabelTabCaption"
},
"items": [],
"order": 5
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 5
},
{
"operation": "insert",
"name": "UsrSchema5Detail76778edd",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tab55345255TabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Taba20c4c4fTabLabelTabCaption"
},
"items": [],
"order": 6
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 6
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGroup95bb319b",
"values": {
"caption": {
"bindTo": "Resources.Strings.Taba20c4c4fTabLabelGroup95bb319bGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Taba20c4c4fTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGridLayoutc7e128ee",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Taba20c4c4fTabLabelGroup95bb319b",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGER1948a584-e82f-49af-b800-f9a722d1dc3d",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Taba20c4c4fTabLabelGridLayoutc7e128ee"
},
"bindTo": "UsrOzhidaemoePrisutstvieVPerspektive",
"enabled": true
},
"parentName": "Taba20c4c4fTabLabelGridLayoutc7e128ee",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGroup63baf8c5",
"values": {
"caption": {
"bindTo": "Resources.Strings.Taba20c4c4fTabLabelGroup63baf8c5GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Taba20c4c4fTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGridLayoutf7fe316f",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Taba20c4c4fTabLabelGroup63baf8c5",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPe3c804f7-6c1f-4f2d-b887-f29292d472ad",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Taba20c4c4fTabLabelGridLayoutf7fe316f"
},
"bindTo": "UsrSroki",
"enabled": true,
"contentType": 3
},
"parentName": "Taba20c4c4fTabLabelGridLayoutf7fe316f",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGroup00c6758a",
"values": {
"caption": {
"bindTo": "Resources.Strings.Taba20c4c4fTabLabelGroup00c6758aGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Taba20c4c4fTabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGridLayout184a1275",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Taba20c4c4fTabLabelGroup00c6758a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPd1cc34d6-863d-4bba-b3b8-44da246ca117",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Taba20c4c4fTabLabelGridLayout184a1275"
},
"bindTo": "UsrUvelichiliPrisutstvie",
"enabled": true,
"contentType": 3
},
"parentName": "Taba20c4c4fTabLabelGridLayout184a1275",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGroup9b6be18f",
"values": {
"caption": {
"bindTo": "Resources.Strings.Taba20c4c4fTabLabelGroup9b6be18fGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Taba20c4c4fTabLabel",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGridLayout3246fc24",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Taba20c4c4fTabLabelGroup9b6be18f",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPb0d68e1b-4b79-49da-9802-e2952382118d",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Taba20c4c4fTabLabelGridLayout3246fc24"
},
"bindTo": "UsrPrisutstviePonizilos",
"enabled": true,
"contentType": 3
},
"parentName": "Taba20c4c4fTabLabelGridLayout3246fc24",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGroup19a93315",
"values": {
"caption": {
"bindTo": "Resources.Strings.Taba20c4c4fTabLabelGroup19a93315GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Taba20c4c4fTabLabel",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "Taba20c4c4fTabLabelGridLayoutfa812a3a",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Taba20c4c4fTabLabelGroup19a93315",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPecdd1f46-3e82-4427-89ae-c09637645833",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Taba20c4c4fTabLabelGridLayoutfa812a3a"
},
"bindTo": "UsrUshel",
"enabled": true,
"contentType": 3
},
"parentName": "Taba20c4c4fTabLabelGridLayoutfa812a3a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd067fe3fTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd067fe3fTabLabelTabCaption"
},
"items": [],
"order": 7
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 7
},
{
"operation": "insert",
"name": "Tabd067fe3fTabLabelGroupf9600da6",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd067fe3fTabLabelGroupf9600da6GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd067fe3fTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd067fe3fTabLabelGridLayouta7045437",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd067fe3fTabLabelGroupf9600da6",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "UsrNashePrisutstviePoOstalnomuAssortimentue9852825-6450-4d52-8920-bee145a5ab4a",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd067fe3fTabLabelGridLayouta7045437"
},
"bindTo": "UsrNashePrisutstviePoOstalnomuAssortimentu",
"enabled": true
},
"parentName": "Tabd067fe3fTabLabelGridLayouta7045437",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tabd067fe3fTabLabelGroupc3829d6a",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tabd067fe3fTabLabelGroupc3829d6aGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tabd067fe3fTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tabd067fe3fTabLabelGridLayouta2ff87e6",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tabd067fe3fTabLabelGroupc3829d6a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUP9f2a880b-88cc-4943-9522-5fe4b29cf641",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tabd067fe3fTabLabelGridLayouta2ff87e6"
},
"bindTo": "UsrPoziciiOstalnojAssortiment",
"enabled": true,
"contentType": 3
},
"parentName": "Tabd067fe3fTabLabelGridLayouta2ff87e6",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab3fd4783fTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab3fd4783fTabLabelTabCaption"
},
"items": [],
"order": 8
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 8
},
{
"operation": "insert",
"name": "UsrSchema6Detailaaa82cbe",
"values": {
"itemType": 2,
"markerValue": "added-detail"
},
"parentName": "Tab3fd4783fTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabel",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab3091b7cfTabLabelTabCaption"
},
"items": [],
"order": 9
},
"parentName": "Tabs",
"propertyName": "tabs",
"index": 9
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGroup98382fb5",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab3091b7cfTabLabelGroup98382fb5GroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab3091b7cfTabLabel",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGridLayoutde12ecb1",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab3091b7cfTabLabelGroup98382fb5",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "INTEGERc886d937-d55d-42db-a5ab-0fdd5ccc01e3",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab3091b7cfTabLabelGridLayoutde12ecb1"
},
"bindTo": "UsrOzhidaemoePrisutstviePoOstalnomuAssortimentu",
"enabled": true
},
"parentName": "Tab3091b7cfTabLabelGridLayoutde12ecb1",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGroup548a3f1e",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab3091b7cfTabLabelGroup548a3f1eGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab3091b7cfTabLabel",
"propertyName": "items",
"index": 1
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGridLayout7febf56c",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab3091b7cfTabLabelGroup548a3f1e",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPdffe5d39-3f17-4e76-8d10-33b2b1159f02",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab3091b7cfTabLabelGridLayout7febf56c"
},
"bindTo": "UsrSrokiPoOstalnomuAssortimentu",
"enabled": true,
"contentType": 3
},
"parentName": "Tab3091b7cfTabLabelGridLayout7febf56c",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGroupfaf7434a",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab3091b7cfTabLabelGroupfaf7434aGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab3091b7cfTabLabel",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGridLayout1b207477",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab3091b7cfTabLabelGroupfaf7434a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUP156b741e-9226-4997-bac0-b44f701eadc4",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab3091b7cfTabLabelGridLayout1b207477"
},
"bindTo": "UsrUvelichiliPrisutstviePoOstalnomuAssortimentu",
"enabled": true,
"contentType": 3
},
"parentName": "Tab3091b7cfTabLabelGridLayout1b207477",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGroup1505151a",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab3091b7cfTabLabelGroup1505151aGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab3091b7cfTabLabel",
"propertyName": "items",
"index": 3
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGridLayout131464f9",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab3091b7cfTabLabelGroup1505151a",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUPb040b9b9-185f-4648-8904-310f096f0bf8",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab3091b7cfTabLabelGridLayout131464f9"
},
"bindTo": "UsrPonizilosPrisutstviePoOstalnomuAssortimentu",
"enabled": true,
"contentType": 3
},
"parentName": "Tab3091b7cfTabLabelGridLayout131464f9",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGroupa9acdebf",
"values": {
"caption": {
"bindTo": "Resources.Strings.Tab3091b7cfTabLabelGroupa9acdebfGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "Tab3091b7cfTabLabel",
"propertyName": "items",
"index": 4
},
{
"operation": "insert",
"name": "Tab3091b7cfTabLabelGridLayoutc1ab1502",
"values": {
"itemType": 0,
"items": []
},
"parentName": "Tab3091b7cfTabLabelGroupa9acdebf",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "LOOKUP1d8b234a-be3c-4c5e-986f-71148d9aed5b",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "Tab3091b7cfTabLabelGridLayoutc1ab1502"
},
"bindTo": "UsrUshelPoOstalnomuAssortimentu",
"enabled": true,
"contentType": 3
},
"parentName": "Tab3091b7cfTabLabelGridLayoutc1ab1502",
"propertyName": "items",
"index": 0
},
{
"operation": "merge",
"name": "ContactsAndStructureTabContainer",
"values": {
"order": 10
}
},
{
"operation": "merge",
"name": "AccountPageServiceTab",
"values": {
"order": 11
}
},
{
"operation": "merge",
"name": "RelationshipTabContainer",
"values": {
"order": 12
}
},
{
"operation": "merge",
"name": "HistoryTabContainer",
"values": {
"order": 13
}
},
{
"operation": "merge",
"name": "NotesTabContainer",
"values": {
"order": 14
}
},
{
"operation": "insert",
"name": "NotesTabContainerGroup640dce9e",
"values": {
"caption": {
"bindTo": "Resources.Strings.NotesTabContainerGroup640dce9eGroupCaption"
},
"itemType": 15,
"markerValue": "added-group",
"items": []
},
"parentName": "NotesTabContainer",
"propertyName": "items",
"index": 2
},
{
"operation": "insert",
"name": "NotesTabContainerGridLayout1aab8e78",
"values": {
"itemType": 0,
"items": []
},
"parentName": "NotesTabContainerGroup640dce9e",
"propertyName": "items",
"index": 0
},
{
"operation": "insert",
"name": "STRING47c399d2-9ca0-4415-b8f8-04e4aa4804b5",
"values": {
"layout": {
"colSpan": 12,
"rowSpan": 1,
"column": 0,
"row": 0,
"layoutName": "NotesTabContainerGridLayout1aab8e78"
},
"bindTo": "UsrStringGUIDClient",
"labelConfig": {
"visible": false
},
"enabled": false
},
"parentName": "NotesTabContainerGridLayout1aab8e78",
"propertyName": "items",
"index": 0
},
{
"operation": "merge",
"name": "TimelineTab",
"values": {
"order": 15
}
},
{
"operation": "move",
"name": "TimelineTab",
"parentName": "Tabs",
"propertyName": "tabs",
"index": 15
},
{
"operation": "merge",
"name": "ChangesHistoryTab",
"values": {
"order": 17
}
},
{
"operation": "merge",
"name": "ESNTab",
"values": {
"order": 16
}
}
]/**SCHEMA_DIFF*/
};
});
Судя по названию полей, карточка была значительно переработана. Лучше будет связаться с её авторами, уточнить о дополнительной логике в этом разделе. Может, кроме этой схемы, часть логики и в других пакетах или других схемах (страницах, БП). Либо проверить эту кнопку на чистой системе без доработок.
Зверев Александр,
Над схемой работали люди, которые больше не работают. Из схемы видно, что поля добавлялись/изменялись, то есть форма менялась. Обычно ради такого функционала и берут эту систему, верно? Прочей логики я не нашёл при осмотре: в бизнес-процессах и схемах. Где мне ещё поискать изменённый функционал?
Да, думаю на чистой конфигурации кнопка заработает, но в чём профит?
Рекомендуется производить тестирование доработок на тестовой базе, а уже потом переносить схемы на основную, убедившись, что все функции карточки работают верно. Без удалённого доступа в систему и изучения всей изменённой логики (в пакете Custom и других нестандартных), связанной с этим разделом, сложно показать точное место, где сломалось.
В стандартной BasePageV2 пакета NUI логику реализует кнопка SaveButton и её обработчик save. В AccountPageV2 функцию save переопределяют.
Зверев Александр,
Реализовал перегруженный обработчик save для этой формы, в теле вызывая вывод в консоль и родительский вызов this.callParent(arguments);
Переходя в отладчике внутрь this.callParent(arguments); попадаю в родной функционал. Видео отладки.
Доступ могу дать.
Нужно идти дальше по callParent в базовую карточку. Там и реализована общая для страниц логика сохранения и закрытия. Возможно, там тоже было переопределено.
Андрей Золотарёв,
В консоли браузера откройте вкладку network. При нажатии кнопки "сохранить" выполняется запрос UpdateQuery? Какой ответ от него на вкладке "Preview"?
Дмитрий А.,
В том-то и дело, никаких запросов не идёт.
Значит, где-то есть переопределение базовой логики сохранения на пустую с забытым вызовом базовой. Ищите.
Разобрался, благодаря ТП. Всё просто: метод validate(), который я использовал здесь для валидации полученных по get() и вычисленных значений - СИСТЕМНЫЙ. И я, соответственно его перекрыл. Переименовал метод валидации значений - всё заработало.
Всем спасибо за помощь!