Esempio n. 1
0
* 
* @since 2004-02-25
* @author Christian Ehret <*****@*****.**> 
*/
$smartyType = "www";
include_once "../includes/default.inc.php";
$auth->is_authenticated();
$smarty->assign("tpl_title", "Einnahmen");
$smarty->assign('tpl_nav', 'lists');
$smarty->assign('tpl_subnav', 'income');
$smarty->assign('tpl_type', 'lists');
include_once "accountclass.inc.php";
$account = new Account();
include_once "paycategoryclass.inc.php";
$paycat = new PayCategory();
$smarty->assign('tpl_paycat', $paycat->getall());
$todaydate = getdate();
$day = $todaydate['mday'];
$month = $todaydate['mon'];
$year = $todaydate['year'];
$thedate = "{$day}.{$month}.{$year}";
$theotherdate = "{$day}-{$month}-{$year}";
$smarty->assign('tpl_dates', $account->getdates());
if ($request->GetVar('frm_start', 'post') !== $request->undefined) {
    $thestart = $request->GetVar('frm_start', 'post');
} else {
    $thestart = $month . '/' . $year;
}
$theotherstart = str_replace('/', '-', $thestart);
if ($request->GetVar('frm_end', 'post') !== $request->undefined) {
    $theend = $request->GetVar('frm_end', 'post');
Esempio n. 2
0
    include_once 'paycategoryclass.inc.php';
    $pcat = new PayCategory();
    $todaydate = getdate();
    $day = $todaydate['mday'];
    $month = $todaydate['mon'];
    $year = $todaydate['year'];
    $thedate = "{$day}.{$month}.{$year}";
    $smarty->assign('tpl_thedate', $thedate);
    $smarty->assign('tpl_guestid', $request->GetVar('frm_accountguestid', 'post'));
    $smarty->assign('tpl_bookingid', $request->GetVar('frm_bookid', 'post'));
    $smarty->assign('tpl_bookdate', $booking->getDate($request->GetVar('frm_bookid', 'post')));
    $smarty->assign('tpl_receiptid', $request->GetVar('frm_receiptid', 'post'));
    $smarty->assign('tpl_on_receipt', $request->GetVar('frm_on_receipt', 'post'));
    if ($request->GetVar('frm_bookids', 'post') !== $request->undefined) {
        $bookids = $request->GetVar('frm_bookids', 'post');
        $smarty->assign('tpl_bookids', $bookids);
        for ($i = 0; $i < count($bookids); $i++) {
            $bookings[$i] = $booking->getDate($bookids[$i]);
        }
        $smarty->assign('tpl_bookings', $bookings);
    }
    if ($request->GetVar('frm_difference', 'post') !== $request->undefined) {
        $difference = number_format(strtr($request->GetVar('frm_difference', 'post'), ',', '.'), 2, '.', '');
    } else {
        $difference = "";
    }
    $smarty->assign('tpl_difference', $difference);
    $smarty->assign('tpl_close', 'false');
    $smarty->assign('tpl_pcats', $pcat->getall());
}
$smarty->display('addtoaccount.tpl');
Esempio n. 3
0
* Settings
* 
* @since 2004-06-05
* @author Christian Ehret <*****@*****.**> 
*/
$smartyType = "www";
include_once "../includes/default.inc.php";
$auth->is_authenticated();
include_once 'paycategoryclass.inc.php';
$pcategory = new PayCategory();
$smarty->assign("tpl_title", "Zahlungskategorieverwaltung");
$smarty->assign('tpl_nav', 'settings');
$smarty->assign('tpl_subnav', 'catsettings');
$smarty->assign('tpl_subnav2', 'paycategory');
if ($request->GetVar('frm_catid', 'post') !== $request->undefined) {
    if ($request->GetVar('frm_action', 'post') == 'edit') {
        $smarty->assign('tpl_editid', $request->GetVar('frm_catid', 'post'));
    } else {
        if ($request->GetVar('frm_action', 'post') == 'addnew') {
            $smarty->assign('tpl_addnew', 'true');
        } else {
            if ($request->GetVar('frm_action', 'post') == 'del') {
                $pcategory->del($request->GetVar('frm_catid', 'post'));
            } else {
                $check = $pcategory->saveupdate();
            }
        }
    }
}
$smarty->assign('tpl_category', $pcategory->getall());
$smarty->display('paytypes.tpl');