target list listed status

This commit is contained in:
yuri
2018-06-08 16:00:31 +03:00
parent a4c15992a9
commit ef9609b710
3 changed files with 4 additions and 3 deletions
@@ -28,7 +28,8 @@
"Newsletter": "Newsletter"
},
"targetStatus": {
"Opted Out": "Opted Out"
"Opted Out": "Opted Out",
"Listed": "Listed"
}
},
"labels": {
@@ -73,7 +73,7 @@
},
"targetStatus": {
"type": "enum",
"options": ["", "Opted Out"],
"options": ["Listed", "Opted Out"],
"notStorable": true,
"readOnly": true,
"layoutListDisabled": true,
@@ -35,7 +35,7 @@ Espo.define('crm:views/target-list/fields/target-status', 'views/fields/base', f
return this.getLanguage().translateOption('Opted Out', 'targetStatus', 'TargetList');
}
return '';
return this.getLanguage().translateOption('Listed', 'targetStatus', 'TargetList');
}
});
});