IVT Contract Import WIP

This commit is contained in:
Frank Schubert
2023-11-02 16:05:40 +01:00
parent 90f65abd6f
commit e5f7b59ab4
14 changed files with 610 additions and 7 deletions

View File

@@ -77,6 +77,14 @@ class mfBaseModel {
}
$this->id=$row->id;
if(!property_exists($row, "create")) {
$row->create = date("U");
}
if(!property_exists($row, "edit")) {
$row->edit = date("U");
}
$this->create=$row->create;
$this->edit=$row->edit;
if($this->fieldprefix) {