Ejemplo n.º 1
0
</table>
<br/>
<?php 
if (!empty($error_msg)) {
    ?>
    <div class="msg_error" style="width:70%; margin-left:auto;margin-right:auto;">
        <?php 
    echo $error_msg;
    ?>
    </div>
<?php 
}
?>

  <form action="<?php 
echo $PHP_SELF . '?id=' . $receipt->getId();
?>
" method="post" >
     <input id="action" type="hidden" name="action" value="<?php 
if (!empty($idc)) {
    echo "update";
} else {
    echo "add";
}
?>
"/>
    <input id="idc" type="hidden" name="idc" value="<?php 
if (!empty($idc)) {
    echo $idc;
}
?>
Ejemplo n.º 2
0
	    	 	<td >
	    	 		&nbsp;
	    	 	</td>
    	 	</tr>
    	</table>
	</td>
	</tr>
</table>
<br/>
<?php if(!empty($error_msg)){ ?>
	<div class="msg_error" style="width:70%; margin-left:auto;margin-right:auto;">
		<?php echo $error_msg ?>
	</div>
<?php } ?>

  <form action="<?php echo $PHP_SELF.'?id='.$receipt->getId(); ?>" method="post" >
 	<input id="action" type="hidden" name="action" value="<?php if(!empty($idc)) echo "update"; else echo "add" ?>"/>
	<input id="idc" type="hidden" name="idc" value="<?php if(!empty($idc)) echo $idc;?>"/>
	<table class="invoice_table">
		<tr class="form_invoice_head">
	    	<td colspan="2" align="center"><font color="#FFFFFF"><?php echo gettext("ADD RECEIPT ITEM "); ?></font></td>
		</tr>
		<tr >
	    	<td colspan="2">&nbsp;</td>
		</tr>
		<?php
			if(empty($date)){
				$date = date("Y-m-d H:i:s");
			}
		?>
		<tr>
Ejemplo n.º 3
0
    }
    $checkoutProductsTable .= '<tr><td colspan="4">&nbsp;</td></tr>';
    $checkoutProductsTable .= '<tr>
                    <td>Totaal</td>
                    <td colspan="2">&nbsp;</td>
                    <td>' . $checkoutTotalPrice . '</td>
                </tr>';
    $checkoutProductsTable .= '<tr><td colspan="4">&nbsp;</td></tr>';
    $checkoutProductsTable .= '<tr><td>&nbsp;</td><td>BTW</td><td colspan="2">&nbsp;</td></tr>';
    $checkoutTotalVAT = number_format($checkoutTotalPrice * 0.06, 2);
    $checkoutTotalExVAT = $checkoutTotalPrice - $checkoutTotalVAT;
    $checkoutProductsTable .= '<tr>
                    <td>&nbsp;</td>
                    <td>Schaal</td>
                    <td>Over</td>
                    <td>EUR</td>
                </tr>';
    $checkoutProductsTable .= '<tr>
                    <td>&nbsp;</td>
                    <td>6%</td>
                    <td>' . $checkoutTotalExVAT . '</td>
                    <td>' . $checkoutTotalVAT . '</td>
                </tr>';
    $checkoutProductsTable .= '</table>';
    $Receipt->setEmployee($GLOBALS['_USER']);
    $Receipt->setPriceInVat($checkoutTotalPrice);
    $Receipt->setPriceExVat($checkoutTotalExVAT);
    $Receipt->save();
    $receiptId = $Receipt->getId();
}
include_once '/views/checkout.php';
Ejemplo n.º 4
0
<?php

if (isset($_GET['deleteReceiptId']) && (int) $_GET['deleteReceiptId'] > 0) {
    include_once '/models/receipt.php';
    $Receipt = new Receipt((int) $_GET['deleteReceiptId']);
    $Receipt->delete();
}
include_once '/helpers/adminHelper.php';
$AdminHelper = new AdminHelper();
$receiptOverview = '';
if (count($AdminHelper->getAllReceiptIdsOrderByDate()) > 0) {
    include_once '/models/receipt.php';
    foreach ($AdminHelper->getAllReceiptIdsOrderByDate() as $receiptId) {
        $Receipt = new Receipt($receiptId);
        $receiptOverview .= '<tr>';
        $receiptOverview .= '<td><a href="index.php?page=print&receiptId=' . $Receipt->getId() . '" target="_blank" >' . $Receipt->getTimestamp() . '</a></td>';
        $receiptOverview .= '<td>' . $Receipt->getEmployee() . '</td>';
        $receiptOverview .= '<td>' . $Receipt->getPriceInVat() . '</td>';
        $receiptOverview .= '<td>$nbsp;</td>';
        $receiptOverview .= '<td><a href="index.php?page=admin&deleteReceiptId=' . $Receipt->getId() . '" >verwijderen</a></td>';
        $receiptOverview .= '</tr>';
    }
}
include_once '/views/admin.php';