本文整理汇总了PHP中OperationData::getAllByDateOfficialBP方法的典型用法代码示例。如果您正苦于以下问题:PHP OperationData::getAllByDateOfficialBP方法的具体用法?PHP OperationData::getAllByDateOfficialBP怎么用?PHP OperationData::getAllByDateOfficialBP使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OperationData
的用法示例。
在下文中一共展示了OperationData::getAllByDateOfficialBP方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
</div>
</div>
<br><!--- -->
<div class="row">
<div class="col-md-12">
<?php
if (isset($_GET["sd"]) && isset($_GET["ed"])) {
if ($_GET["sd"] != "" && $_GET["ed"] != "") {
?>
<?php
$operations = array();
if ($_GET["product_id"] == "") {
$operations = OperationData::getAllByDateOfficial($_GET["sd"], $_GET["ed"]);
} else {
$operations = OperationData::getAllByDateOfficialBP($_GET["product_id"], $_GET["sd"], $_GET["ed"]);
}
?>
<?php
if (count($operations) > 0) {
?>
<table class="table table-bordered">
<thead>
<th>Id</th>
<th>Producto</th>
<th>Cantidad</th>
<th>Operacion</th>
<th>Fecha</th>
</thead>
<?php