Skip to content
Snippets Groups Projects
Commit 94b12edc authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX #209 check is_generated

parent c1099a03
No related branches found
No related tags found
No related merge requests found
...@@ -358,6 +358,7 @@ export class DoctypesAdministrationComponent implements OnInit { ...@@ -358,6 +358,7 @@ export class DoctypesAdministrationComponent implements OnInit {
this.models = data['models']; this.models = data['models'];
if(mode == 'doctype'){ if(mode == 'doctype'){
this.currentType.indexes = data['indexes']; this.currentType.indexes = data['indexes'];
this.currentType.is_generated = 'N';
this.loadIndexesTable(); this.loadIndexesTable();
} }
}, (err) => { }, (err) => {
......
...@@ -48,6 +48,11 @@ class DoctypeController ...@@ -48,6 +48,11 @@ class DoctypeController
$doctypeExt = DoctypeExtModel::getById(['id' => $obj['doctype']['type_id']]); $doctypeExt = DoctypeExtModel::getById(['id' => $obj['doctype']['type_id']]);
$template = TemplateDoctypeModel::getById(["id" => $obj['doctype']['type_id']]); $template = TemplateDoctypeModel::getById(["id" => $obj['doctype']['type_id']]);
if (empty($template)) {
$template["template_id"] = null;
$template["is_generated"] = 'N';
}
$indexes = DoctypeIndexesModel::getAllIndexes(); $indexes = DoctypeIndexesModel::getAllIndexes();
$indexesSelected = DoctypeIndexesModel::getById(['id' => $obj['doctype']['type_id']]); $indexesSelected = DoctypeIndexesModel::getById(['id' => $obj['doctype']['type_id']]);
foreach ($indexes as $key => $value) { foreach ($indexes as $key => $value) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment