Enhanced to create a modified reason.

This commit is contained in:
BJRambo 2016-03-01 17:19:23 +09:00
parent 2a824e150c
commit d38a4fd987
7 changed files with 66 additions and 1 deletions

View file

@ -1557,6 +1557,16 @@ class documentModel extends document
return $output;
}
function getUpdateLog($update_id)
{
$args = new stdClass();
$args->update_id = $update_id;
$output = exeCuteQuery('document.getUpdateLog', $args);
$updage_log = $output->data;
return $updage_log;
}
}
/* End of file document.model.php */
/* Location: ./modules/document/document.model.php */

View file

@ -0,0 +1,11 @@
<query id="getUpdateLog" action="select">
<tables>
<table name="document_update_log" />
</tables>
<columns>
<column name="*" />
</columns>
<conditions>
<condition operation="equal" column="update_id" var="update_id" filter="number" notnull="notnull" />
</conditions>
</query>