This commit is contained in:
fengjh5 2024-05-15 16:20:06 +08:00
parent 422ad40cde
commit 034eb70046
5 changed files with 15 additions and 10 deletions

View File

@ -956,7 +956,7 @@ class Order extends CI_Controller
$where = " 1 ";
//处理数组
if ($searchPlaceType) {
if ($searchPlaceType && !in_array(-1,$searchPlaceType)) {
$tstr = "0";
foreach ($searchPlaceType as $k => $v) {
$tstr .= "," . intval($v);
@ -1013,10 +1013,6 @@ class Order extends CI_Controller
$dataName = 'orderList';
$paramFilter = array();
$rowData = $this->lw_pagination2->lists($sql, $param, $page, $hasWhere, $group, $order, $action, $dataName, $paramFilter);
// echo "<pre>";
// print_r($rowData);
// echo "</pre>";
// exit();
$data = $rowData;
// 获取菜品名称并且拼接
@ -1074,7 +1070,7 @@ class Order extends CI_Controller
$where = " 1 ";
//处理数组
if ($searchPlaceType) {
if ($searchPlaceType && !in_array(-1,$searchPlaceType)) {
$tstr = "0";
foreach ($searchPlaceType as $k => $v) {
$tstr .= "," . intval($v);
@ -1082,7 +1078,7 @@ class Order extends CI_Controller
$where .= " and a.deliver_place_id in (" . $tstr . ")";
}
if ($searchMealType) {
if ($searchMealTypee && !in_array(-1,$searchMealTypee)) {
$tstr = "0";
foreach ($searchMealType as $k => $v) {
$tstr .= "," . intval($v);

View File

@ -203,6 +203,13 @@ class Order_model extends CI_Model
return $this->db->query($sql)->row_array();
}
public function get_deliver_place($hallId) {
$sql = "
select a.*,b.name as diningName,b.id as diningId from tb_order_deliver_place a left join tb_dining_hall b on a.dining_hall_id = b.id where b.id in ('{$hallId}')
";
return $this->db->query($sql)->result_array();
}
//获取所有包间信息
public function getALLbjData($page)
{

View File

@ -1,3 +1,6 @@
<?php
$dataList = isset($dataList)? $dataList : array();
?>
<div class="modal-dialog modal-lg">
<div class="modal-content">
<form id="submitForm">

View File

@ -1,6 +1,6 @@
<?php
$orderStateList = isset($orderStateList)? $orderStateList : array();
$orderTypeList = isset($orderTypeList) ? $orderTypeList :array();
$deliverPlaceList = isset($deliverPlaceList)? $deliverPlaceList : array();
$mealList = isset($mealList) ? $mealList :array();
?>
<div class="row">
<div class="col-md-3">

View File

@ -1,6 +1,5 @@
<?php
$orderList = isset($orderList)? $orderList : array();
$dishList = isset($dishList)? $dishList : array();
?>
<div class="row">