html5 datetime instead of jquery

anhang pdf rechnung
This commit is contained in:
Markus
2025-05-16 21:21:09 +02:00
parent de4bd6e366
commit 842d9050dc
6 changed files with 68 additions and 11 deletions

View File

@@ -29,7 +29,7 @@ class mScheduled extends Model {
$data = $this->asObject()->find($id);
$result = (array)json_decode($data->data);
$result['id'] = $id;
$result['datum'] = date( "d.m.Y", strtotime($data->next_date));
$result['datum'] = $data->next_date; //date( "d.m.Y", strtotime($data->next_date));
for ($i=0;$i<10;$i++){
$result['category_parent'][$i]= $accounts->getParent($result['category'][$i]);
}