mirror of
https://github.com/Karaka-Management/oms-Checklist.git
synced 2026-01-11 07:18:40 +00:00
crash backup
This commit is contained in:
parent
e69cc42f5e
commit
8c16c2980b
|
|
@ -240,7 +240,7 @@ final class ApiController extends Controller
|
|||
->with('tasks/files')
|
||||
->with('tasks/tags')
|
||||
->with('tasks/attributes')
|
||||
->where('id', (int) $request->getData('id'))
|
||||
->where('id', $request->getDataInt('id') ?? 0)
|
||||
->execute();
|
||||
|
||||
$checklist = new Checklist();
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ final class BackendController extends Controller
|
|||
->with('tasks/taskElements/accRelation/relation')
|
||||
->with('tasks/taskElements/grpRelation')
|
||||
->with('tasks/taskElements/grpRelation/relation')
|
||||
->where('id', (int) $request->getData('id'))
|
||||
->where('id', $request->getDataInt('id') ?? 0)
|
||||
->sort('tasks/due', OrderType::ASC)
|
||||
->execute();
|
||||
|
||||
|
|
@ -161,7 +161,7 @@ final class BackendController extends Controller
|
|||
->with('tasks/taskElements/accRelation/relation')
|
||||
->with('tasks/taskElements/grpRelation')
|
||||
->with('tasks/taskElements/grpRelation/relation')
|
||||
->where('id', (int) $request->getData('id'))
|
||||
->where('id', $request->getDataInt('id') ?? 0)
|
||||
->sort('tasks/due', OrderType::ASC)
|
||||
->execute();
|
||||
|
||||
|
|
|
|||
|
|
@ -26,12 +26,12 @@ echo $this->data['nav']->render(); ?>
|
|||
<div class="portlet-body">
|
||||
<div class="form-group">
|
||||
<label for="iiReceiver"><?= $this->getHtml('To'); ?></label>
|
||||
<?= $this->getData('accGrpSelector')->render('iReceiver', 'forward', true); ?>
|
||||
<?= $this->data['accGrpSelector']->render('iReceiver', 'forward', true); ?>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="iObserver"><?= $this->getHtml('CC'); ?></label>
|
||||
<?= $this->getData('accGrpSelector')->render('iCC', 'cc', false); ?>
|
||||
<?= $this->data['accGrpSelector']->render('iCC', 'cc', false); ?>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
|
|
@ -61,7 +61,7 @@ echo $this->data['nav']->render(); ?>
|
|||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<?= $this->data['editor']->getData('text')?->render('task-editor', 'plain', 'fTask'); ?>
|
||||
<?= $this->data['editor']->data['text']?->render('task-editor', 'plain', 'fTask'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="portlet-foot">
|
||||
|
|
@ -95,4 +95,4 @@ echo $this->data['nav']->render(); ?>
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<?= $this->getData('accGrpSelector')->getData('popup')?->render(); ?>
|
||||
<?= $this->data['accGrpSelector']->data['popup']?->render(); ?>
|
||||
Loading…
Reference in New Issue
Block a user