本文整理汇总了PHP中invoice::getInvoiceCount方法的典型用法代码示例。如果您正苦于以下问题:PHP invoice::getInvoiceCount方法的具体用法?PHP invoice::getInvoiceCount怎么用?PHP invoice::getInvoiceCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类invoice
的用法示例。
在下文中一共展示了invoice::getInvoiceCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
$smarty->assign('orders', $result);
$smarty->assign('content', $smarty->fetch('invoice.tpl'));
} elseif (isset($_GET['action']) && $_GET['action'] == 'deleteinvoice') {
$id = $_GET['id'];
$chalan_no = $_GET['chalan_no'];
$order->deleteInvoice($id, $chalan_no);
header('Location: ' . FRONTEND . 'invoice.php');
exit;
} elseif (isset($_GET['action']) && $_GET['action'] == 'paidinvoice') {
$id = $_GET['id'];
$order->markInvoicedPaid($id);
header('Location: ' . FRONTEND . 'invoice.php');
exit;
} else {
$page = 1;
if (isset($_GET['page'])) {
$page = $_GET['page'];
}
$orders = $order->getOrders($page, $offset = 10);
$smarty->assign('ordercount', $order->getInvoiceCount());
$smarty->assign('page', $page);
$smarty->assign('pagecount', ceil($order->getInvoiceCount() / $offset));
$smarty->assign('orders', $orders);
$smarty->assign('content', $smarty->fetch('invoice.tpl'));
}
$smarty->assign('action', 'invoice');
$smarty->assign('toolbar', $smarty->fetch('toolbar.tpl'));
$smarty->display('two-column-left.html');
?>