Commit b27f5ef9 authored by zhuwei's avatar zhuwei

1

parent f32695fe
...@@ -469,6 +469,12 @@ class AStore extends BaseModel ...@@ -469,6 +469,12 @@ class AStore extends BaseModel
->column($field); ->column($field);
} }
/**
* 查询未提交日报门店详细信息
* @param $field
* @param $params
* @return false|\PDOStatement|string|\think\Collection
*/
public function selectDailyUncommitted($field,$params) public function selectDailyUncommitted($field,$params)
{ {
$params["a.status"] = 0; $params["a.status"] = 0;
...@@ -482,6 +488,11 @@ class AStore extends BaseModel ...@@ -482,6 +488,11 @@ class AStore extends BaseModel
return $result; return $result;
} }
/**
* 查询未提交日报门店id
* @param $time
* @return mixed
*/
public function getDailyUncommittedId($time) public function getDailyUncommittedId($time)
{ {
$sql = "SELECT $sql = "SELECT
......
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