本文整理汇总了PHP中Receipt::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Receipt::getId方法的具体用法?PHP Receipt::getId怎么用?PHP Receipt::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Receipt
的用法示例。
在下文中一共展示了Receipt::getId方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
</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;
}
?>
示例2: if
<td >
</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"> </td>
</tr>
<?php
if(empty($date)){
$date = date("Y-m-d H:i:s");
}
?>
<tr>
示例3:
}
$checkoutProductsTable .= '<tr><td colspan="4"> </td></tr>';
$checkoutProductsTable .= '<tr>
<td>Totaal</td>
<td colspan="2"> </td>
<td>' . $checkoutTotalPrice . '</td>
</tr>';
$checkoutProductsTable .= '<tr><td colspan="4"> </td></tr>';
$checkoutProductsTable .= '<tr><td> </td><td>BTW</td><td colspan="2"> </td></tr>';
$checkoutTotalVAT = number_format($checkoutTotalPrice * 0.06, 2);
$checkoutTotalExVAT = $checkoutTotalPrice - $checkoutTotalVAT;
$checkoutProductsTable .= '<tr>
<td> </td>
<td>Schaal</td>
<td>Over</td>
<td>EUR</td>
</tr>';
$checkoutProductsTable .= '<tr>
<td> </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';
示例4: Receipt
<?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';