Commit 78c96072 authored by zhuwei's avatar zhuwei

1

parent 396da28a
......@@ -438,9 +438,9 @@ class CostDetail extends Basic
public function getAllStoreCost()
{
$params = $this->params;
$params = array(
"district_id" => '12'
);
// $params = array(
// "district_id" => '12'
// );
$checkResult = $this->validate($params, "CostDetailValidate.getAllStoreCost");
if (true !== $checkResult) {
......@@ -449,7 +449,7 @@ class CostDetail extends Basic
$conditions = [];
$conditions["b.district_id"] = $params["district_id"];
$field = 'c.district_name,a.store_name';
$field = 'c.district_name,b.store_name';
$m_store_cost = new FStoreCost();
$list = $m_store_cost->getAllStoreCost($field, $conditions);
$result["list"] = $list;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment