Terminierte Transfers implemeniert

This commit is contained in:
Markus
2024-03-17 00:01:23 +01:00
parent 77d4fd938c
commit dda8db42b1
4 changed files with 28 additions and 10 deletions

View File

@@ -72,8 +72,15 @@ class Home extends BaseController
return $data;
}
public function newScheduled(){
return $this->newBill(NULL,NULL,true);
/**
* Legt eine neue Terminbuchung an
* @param bool $transfer ob Terminbuchung vom Typ Transfer ist
* @return char gibt die View zurück
**/
public function newScheduled($transfer = 0){
$data = $this->loadFormDefaults();
$data['transfer'] = (bool)$transfer;
return $this->newBill($data,NULL,true);
}
public function newTransfer(){
@@ -94,10 +101,11 @@ class Home extends BaseController
$data['scheduled'] = array('NumList' => array('1'=>'1','2'=>'2','3'=>'3','4'=>'4','5'=>'5','6'=>'6'),
'TypeList' => array('week'=>'Woche(n)','month'=>'Monat(e)','year'=>'Jahr(e)'),
'style' => 'class="form-select"');
if (!$data['transfer'])
$categories = $this->accounts->getDropDownLists( 'InOut', TRUE );
else
if ($data['transfer'])
$categories = $this->accounts->getDropDownLists( 'Acc', TRUE );
else
$categories = $this->accounts->getDropDownLists( 'InOut', TRUE );
// $data['catparentlist'] = $categories['parent'];
// if (!array_key_exists('catparent', $data))
// $data['catparent'] = $this->accounts->getParent($data['cat']);