Misc updates

This commit is contained in:
Ryan Prather 2018-11-16 21:42:57 -05:00
parent 699604534c
commit f022791e44
No known key found for this signature in database
GPG Key ID: 66FDE2B4E8AB87A7
4 changed files with 648 additions and 536 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6035,6 +6035,16 @@
"nn": true, "nn": true,
"default": "" "default": ""
}, },
{
"name": "scan_id",
"dataType": "int(11)",
"type": 3,
"length": 11,
"values": [],
"ai": false,
"nn": true,
"default": ""
},
{ {
"name": "note", "name": "note",
"dataType": "mediumtext", "dataType": "mediumtext",
@ -6064,6 +6074,15 @@
"field": "pdi_id", "field": "pdi_id",
"update": null, "update": null,
"delete": null "delete": null
},
{
"id": "scan_find_scan_notes_id",
"local": "scan_id",
"schema": "sagacity",
"table": "scans",
"field": "id",
"update": null,
"delete": null
} }
] ]
}, },

View File

@ -422,8 +422,9 @@ include_once 'header.inc';
<select name='checklists[]' class='checklists' id="checklists" multiple='multiple'> <select name='checklists[]' class='checklists' id="checklists" multiple='multiple'>
<?php <?php
$all_chks = $db->get_Checklist(); $all_chks = $db->get_Checklist();
foreach ($all_chks as $key => $chk):print $chk->print_Option(); /** @var checklist $chk */
endforeach; foreach ($all_chks as $chk)
print $chk->print_Option();
?> ?>
</select> </select>
</td> </td>

18
ste/ste_script.min.js vendored

File diff suppressed because one or more lines are too long