Commit b27f5ef9 authored by zhuwei's avatar zhuwei

1

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