dever 3 years ago
parent
commit
25e4c6724a

+ 210 - 0
app/cash/database/factory.php

@@ -0,0 +1,210 @@
+<?php
+
+$status = array
+(
+    1 => '未对账',
+    2 => '已对账',
+);
+
+$type = array
+(
+    1 => '按月对账',
+    2 => '按周对账',
+);
+
+$factory = function()
+{
+    $array = array();
+    $info = Dever::db('factory/info')->all();
+    if($info)
+    {
+        $array += $info;
+    }
+    return $array;
+};
+
+return array
+(
+    # 表名
+    'name' => 'factory',
+    # 显示给用户看的名称
+    'lang' => '工厂对账单',
+    'order' => 70,
+    'config_status' => $status,
+    'config_type' => $type,
+    # 数据结构
+    'struct' => array
+    (
+    
+        'id'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => 'ID',
+            'default'   => '',
+            'desc'      => '',
+            'match'     => 'is_numeric',
+            'search'    => 'order',
+            //'list'      => true,
+        ),
+
+        'type'        => array
+        (
+            'type'      => 'tinyint-1',
+            'name'      => '对账单类型',
+            'default'   => '1',
+            'desc'      => '对账单类型',
+            'match'     => 'is_numeric',
+        ),
+
+        'day'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账单时间',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+            'search'    => 'day',
+            'order'     => 'desc',
+            'list'      => 'Dever::load("cash/lib/manage.statDate", "{type}", "{day}")',
+        ),
+
+        'factory_id'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账工厂',
+            'default'   => '',
+            'desc'      => '对账工厂',
+            'match'     => 'is_numeric',
+            'search'    => 'select',
+            'option'    => $factory,
+            'update'    => 'hidden',
+            'value'     => Dever::input('search_option_factory_id'),
+            'list'      => 'Dever::load("factory/info-find#name", {factory_id})',
+        ),
+
+        'start'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账单开始时间',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+        ),
+
+        'end'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账单结束时间',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+            'list_name' => '对账周期',
+            'list'      => 'Dever::load("cash/lib/manage.statTime", "{start}", "{end}")',
+        ),
+
+        'cash'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '对账金额',
+            'default'   => '0',
+            'desc'      => '对账金额',
+            'match'     => 'option',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'num'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '对账数量',
+            'default'   => '0',
+            'desc'      => '对账数量',
+            'match'     => 'option',
+            'update'    => 'text',
+            //'list'        => true,
+        ),
+
+        'factory_status'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => '工厂对账状态',
+            'default'   => '1',
+            'desc'      => '工厂对账状态',
+            'match'     => 'is_numeric',
+            'update'    => 'radio',
+            'search'    => 'select',
+            'option'    => $status,
+            'list'      => true,
+        ),
+
+        'status'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => '平台对账状态',
+            'default'   => '1',
+            'desc'      => '平台对账状态',
+            'match'     => 'is_numeric',
+            'update'    => 'radio',
+            'search'    => 'select',
+            'option'    => $status,
+            'list'      => true,
+        ),
+
+        'state'     => array
+        (
+            'type'      => 'tinyint-1',
+            'name'      => '状态',
+            'default'   => '1',
+            'desc'      => '请选择状态',
+            'match'     => 'is_numeric',
+        ),
+        
+        'cdate'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '生成时间',
+            'match'     => array('is_numeric', time()),
+            'desc'      => '',
+            # 只有insert时才生效
+            'insert'    => true,
+            //'search'    => 'date',
+            //'list'        => 'date("Y-m-d H:i:s", {cdate})',
+            //'list'      => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
+        ),
+    ),
+
+    'manage' => array
+    (
+        'delete' => false,
+        'edit' => false,
+        'insert' => false,
+        'excel' => true,
+
+        'list_button' => array(
+
+            'list' => array('查看详情', '"order&project=cash&id={id}&page_type=1&type=factory"'),
+
+            'oper'  => array('确认对账金额', '"cash/lib/manage.audit?id={id}&type=factory"', '{status} == 1', 'Dever::load("cash/lib/manage.statYes", "{id}", "factory")', '请确认'),
+        ),
+    ),
+
+    'request' => array
+    (
+        # 获取总金额
+        'getAll' => array
+        (
+            # 匹配的正则或函数 选填项
+            'option' => array
+            (
+                'start' => array('yes-day', '>='),
+                'end' => array('yes-day', '<='),
+                'factory_id' => 'yes',
+                'status' => 'yes',
+                'state' => 1,
+            ),
+            'type' => 'all',
+            'page' => array(10, 'list'),
+            'col' => '*',
+        ),
+    ),
+);

+ 19 - 0
app/cash/database/order.php

@@ -382,5 +382,24 @@ return array
             'type' => 'one',
             'col' => 'sum(cash) as total',
         ),
+
+        # 获取总金额
+        'getPCash' => array
+        (
+            # 匹配的正则或函数 选填项
+            'option' => array
+            (
+                'start' => array('yes-cdate', '>='),
+                'end' => array('yes-cdate', '<='),
+                'type' => 'yes',
+                'type_id' => 'yes',
+                'source_type' => 'yes',
+                'source_id' => 'yes',
+                'status' => array('yes', 'in'),
+                'state' => 1,
+            ),
+            'type' => 'one',
+            'col' => 'sum(p_cash) as total',
+        ),
     ),
 );

+ 3 - 1
app/cash/database/shop.php

@@ -15,7 +15,7 @@ $type = array
 $shop = function()
 {
 	$array = array();
-	$info = Dever::db('shop/info')->select();
+	$info = Dever::db('shop/info')->all();
 	if($info)
 	{
 		$array += $info;
@@ -132,6 +132,7 @@ return array
             'desc'      => '门店对账状态',
             'match'     => 'is_numeric',
             'update'    => 'radio',
+            'search'    => 'select',
             'option'    => $status,
             'list'      => true,
         ),
@@ -144,6 +145,7 @@ return array
             'desc'      => '平台对账状态',
             'match'     => 'is_numeric',
             'update'    => 'radio',
+            'search'    => 'select',
             'option'    => $status,
             'list'      => true,
         ),

+ 210 - 0
app/cash/database/store.php

@@ -0,0 +1,210 @@
+<?php
+
+$status = array
+(
+    1 => '未对账',
+    2 => '已对账',
+);
+
+$type = array
+(
+    1 => '按月对账',
+    2 => '按周对账',
+);
+
+$store = function()
+{
+    $array = array();
+    $info = Dever::db('store/info')->all();
+    if($info)
+    {
+        $array += $info;
+    }
+    return $array;
+};
+
+return array
+(
+    # 表名
+    'name' => 'store',
+    # 显示给用户看的名称
+    'lang' => '仓库对账单',
+    'order' => 80,
+    'config_status' => $status,
+    'config_type' => $type,
+    # 数据结构
+    'struct' => array
+    (
+    
+        'id'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => 'ID',
+            'default'   => '',
+            'desc'      => '',
+            'match'     => 'is_numeric',
+            'search'    => 'order',
+            //'list'      => true,
+        ),
+
+        'type'        => array
+        (
+            'type'      => 'tinyint-1',
+            'name'      => '对账单类型',
+            'default'   => '1',
+            'desc'      => '对账单类型',
+            'match'     => 'is_numeric',
+        ),
+
+        'day'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账单时间',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+            'search'    => 'day',
+            'order'     => 'desc',
+            'list'      => 'Dever::load("cash/lib/manage.statDate", "{type}", "{day}")',
+        ),
+
+        'store_id'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账仓库',
+            'default'   => '',
+            'desc'      => '对账仓库',
+            'match'     => 'is_numeric',
+            'search'    => 'select',
+            'option'    => $store,
+            'update'    => 'hidden',
+            'value'     => Dever::input('search_option_store_id'),
+            'list'      => 'Dever::load("store/info-find#name", {store_id})',
+        ),
+
+        'start'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账单开始时间',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+        ),
+
+        'end'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '对账单结束时间',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+            'list_name' => '对账周期',
+            'list'      => 'Dever::load("cash/lib/manage.statTime", "{start}", "{end}")',
+        ),
+
+        'cash'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '对账金额',
+            'default'   => '0',
+            'desc'      => '对账金额',
+            'match'     => 'option',
+            'update'    => 'text',
+            //'list'      => true,
+        ),
+
+        'num'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '对账数量',
+            'default'   => '0',
+            'desc'      => '对账数量',
+            'match'     => 'option',
+            'update'    => 'text',
+            //'list'        => true,
+        ),
+
+        'store_status'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => '仓库对账状态',
+            'default'   => '1',
+            'desc'      => '仓库对账状态',
+            'match'     => 'is_numeric',
+            'update'    => 'radio',
+            'search'    => 'select',
+            'option'    => $status,
+            'list'      => true,
+        ),
+
+        'status'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => '平台对账状态',
+            'default'   => '1',
+            'desc'      => '平台对账状态',
+            'match'     => 'is_numeric',
+            'update'    => 'radio',
+            'search'    => 'select',
+            'option'    => $status,
+            'list'      => true,
+        ),
+
+        'state'     => array
+        (
+            'type'      => 'tinyint-1',
+            'name'      => '状态',
+            'default'   => '1',
+            'desc'      => '请选择状态',
+            'match'     => 'is_numeric',
+        ),
+        
+        'cdate'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '生成时间',
+            'match'     => array('is_numeric', time()),
+            'desc'      => '',
+            # 只有insert时才生效
+            'insert'    => true,
+            //'search'    => 'date',
+            //'list'        => 'date("Y-m-d H:i:s", {cdate})',
+            //'list'      => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
+        ),
+    ),
+
+    'manage' => array
+    (
+        'delete' => false,
+        'edit' => false,
+        'insert' => false,
+        'excel' => true,
+
+        'list_button' => array(
+
+            'list' => array('查看详情', '"order&project=cash&id={id}&page_type=1&type=store"'),
+
+            'oper'  => array('确认对账金额', '"cash/lib/manage.audit?id={id}&type=store"', '{status} == 1', 'Dever::load("cash/lib/manage.statYes", "{id}", "store")', '请确认'),
+        ),
+    ),
+
+    'request' => array
+    (
+        # 获取总金额
+        'getAll' => array
+        (
+            # 匹配的正则或函数 选填项
+            'option' => array
+            (
+                'start' => array('yes-day', '>='),
+                'end' => array('yes-day', '<='),
+                'store_id' => 'yes',
+                'status' => 'yes',
+                'state' => 1,
+            ),
+            'type' => 'all',
+            'page' => array(10, 'list'),
+            'col' => '*',
+        ),
+    ),
+);

+ 40 - 2
app/cash/lib/Cron.php

@@ -23,6 +23,38 @@ class Cron
         }
     }
 
+    public function store_api(){}
+    public function store()
+    {
+        $num = Dever::input('num', -1);
+
+        $where['status'] = 2;
+       
+        $store = Dever::db('store/info')->select();
+
+        foreach ($store as $k => $v) {
+            $where['type'] = 2;
+            $where['type_id'] = $v['id'];
+            $this->up($where, $v, 'store', $num);
+        }
+    }
+
+    public function factory_api(){}
+    public function factory()
+    {
+        $num = Dever::input('num', -1);
+
+        $where['status'] = 2;
+       
+        $store = Dever::db('factory/info')->select();
+
+        foreach ($store as $k => $v) {
+            $where['source_type'] = 3;
+            $where['source_id'] = $v['id'];
+            $this->up($where, $v, 'factory', $num);
+        }
+    }
+
     private function up($where, $info, $type, $num)
     {
         if ($info['stat_type'] == 2) {
@@ -42,8 +74,14 @@ class Cron
         $data['day'] = $start;
         $info = Dever::db('cash/' . $type)->find($data);
 
-        $cash = Dever::db('cash/order')->getCash($where);
-        $data['cash'] = $cash['total'] ? $cash['total'] : 0;
+        if ($type == 'factory') {
+            $cash = Dever::db('cash/order')->getPCash($where);
+            $data['cash'] = $cash['total'] ? $cash['total'] : 0;
+        } else {
+            $cash = Dever::db('cash/order')->getCash($where);
+            $data['cash'] = $cash['total'] ? $cash['total'] : 0;
+        }
+        
         $num = Dever::db('cash/order')->getNum($where);
         $data['num'] = $num['total'] ? $num['total'] : 0;
         $data['start'] = $start;

+ 58 - 21
app/cash/lib/Manage.php

@@ -24,14 +24,14 @@ class Manage
         return date($string, $day);
     }
 
-    public function statYes($id, $type)
+    public function statYes($info, $type)
     {
         $table = 'cash/' . $type;
 
-        $info = Dever::db($table)->one($id);
-        $shop = Dever::db('shop/info')->find($info[$type . '_id']);
+        $info = is_array($info) ? $info : Dever::db($table)->one($infoid);
+        $other = Dever::db($type . '/info')->find($info[$type . '_id']);
 
-        return $this->statDate($info['type'], $info['day']) . '与'.$shop['name'].'对账单款项是否正确<br />对账金额¥' . $info['cash'] . '元';
+        return $this->statDate($info['type'], $info['day']) . '与'.$other['name'].'对账单款项是否正确<br />对账金额¥' . $info['cash'] . '元';
     }
 
     public function statTime($start, $end) 
@@ -67,15 +67,25 @@ class Manage
             Dever::db($table)->update(array('where_id' => $id, 'status' => 2));
         }
 
-        return 'ok';
+        return 'reload';
     }
 
     # 查看对账单详情
     public function view_api()
     {
         $id = Dever::input('id');
+        if (!$id) {
+            return false;
+        }
 
         $type = Dever::input('type', 'shop');
+        if ($type == 'shop') {
+            $name = '门店';
+        } elseif ($type == 'store') {
+            $name = '仓库';
+        } elseif ($type == 'factory') {
+            $name = '工厂';
+        }
 
         $table = 'cash/' . $type;
 
@@ -84,17 +94,17 @@ class Manage
         $info = Dever::db($table)->one($id);
 
         $status = $config['config_status'][$info['status']];
-        $shop_status = $config['config_status'][$info['shop_status']];
+        $other_status = $config['config_status'][$info[$type . '_status']];
 
-        $shop = Dever::db('shop/info')->find($info[$type . '_id']);
+        $other = Dever::db($type . '/info')->find($info[$type . '_id']);
 
         $html = '<div class="layui-col-md12"><div class="layui-card"><div class="layui-card-header">对账单详情</div><div class="layui-card-body">';
 
         $html .= '<table class="layui-table"><tbody>';
 
         $html .= '<tr>
-          <td width="80">对账门店</td>
-          <td>'.$this->table(false, array(array($shop['name']))).'</td>
+          <td width="80">对账'.$name.'</td>
+          <td>'.$this->table(false, array(array($other['name']))).'</td>
 
         </tr>';
 
@@ -104,15 +114,23 @@ class Manage
 
         </tr>';
 
-        $html .= '<tr>
-          <td width="80">对账金额</td>
-          <td>'.$this->table(false, array(array('¥' . $info['cash'] . ''))).'</td>
+        if ($type == 'store') {
+            $html .= '<tr>
+              <td width="80">对账商品数量</td>
+              <td>'.$this->table(false, array(array($info['num']))).'</td>
 
-        </tr>';
+            </tr>';
+        } else {
+            $html .= '<tr>
+              <td width="80">对账金额</td>
+              <td>'.$this->table(false, array(array('¥' . $info['cash'] . ''))).'</td>
+
+            </tr>';
+        }
 
         $html .= '<tr>
-          <td width="80">门店对账状态</td>
-          <td>'.$this->table(false, array(array($shop_status))).'</td>
+          <td width="80">'.$name.'对账状态</td>
+          <td>'.$this->table(false, array(array($other_status))).'</td>
 
         </tr>';
 
@@ -124,11 +142,18 @@ class Manage
 
         $button = array();
         if ($info['status'] == 1) {
-            $button[] = '<button class="layui-btn layui-btn-primary" onclick="">立即确认</button>';
-        }
-        $button[] = '<button class="layui-btn layui-btn-primary" onclick="">联系门店</button>';
 
-        $button[] = '<button class="layui-btn layui-btn-primary" onclick="">导出对账单</button>';
+            $url = Dever::url('lib/manage.audit&id='.$id.'&type=' . $type, 'cash');
+            $button[] = '<button class="layui-btn layui-btn-primary" onclick="load(\''.$url.'\', \''.$this->statYes($info, $type).'\', \'请确认\')">立即确认</button>';
+        }
+        $config['phone'] = '联系人:' . $other['truename'] . ',联系电话:' . $other['mobile'];
+        $button[] = '<button class="layui-btn layui-btn-primary" onclick="showAlert(\''.$config['phone'].'\')">联系'.$name.'</button>';
+
+        $info['start'] = date('Y-m-d H:i:s', $info['start']);
+        $info['end'] = date('Y-m-d H:i:s', $info['end']);
+        $out = Dever::url('database.list_excel?project=cash&table=order&search_option_status=2&search_option_state=1&search_option_start_cdate=' . $info['start'] . '&search_option_end_cdate=' . $info['end'], 'manage');
+        
+        $button[] = '<a class="layui-btn layui-btn-primary" href="'.$out.'">导出对账单</a>';
         $html .= '<tr>
               <td>功能按钮</td>
               <td>'.$this->table(false, array($button)).'</td>
@@ -138,20 +163,32 @@ class Manage
         $html .= '</tbody></table></div></div>';
 
         $where['type'] = 1;
-        $where['type_id'] = $info['shop_id'];
+        $where['type_id'] = $info[$type . '_id'];
         $where['status'] = 2;
 
         $data = Dever::db('cash/order')->select_page($where);
         if ($data) {
             $head = array('结算单号', '订货单号', '结算类型', '下单日期', '完成日期', '结算日期', '对账金额', '结算状态');
 
+            if ($type == 'store') {
+                $head[6] = '对账数量';
+            }
             $body = array();
             $config = Dever::db('cash/order')->config;
             foreach ($data as $k => $v) {
                 $cdate = date('Y-m-d H:i', $v['cdate']);
                 $fdate = date('Y-m-d H:i', $v['fdate']);
                 $operdate = date('Y-m-d H:i', $v['operdate']);
-                $cash = $v['cash'];
+                if ($type == 'store') {
+                    $cash = $v['num'];
+                } elseif ($type == 'factory') {
+                    $cash = $v['p_cash'];
+                } else {
+                    $cash = $v['cash'];
+                }
+
+                $url = Dever::url('project/database/list?project=shop&table=buy_order_goods&order_id='.$v['source_order_id'].'&page_type=1', 'manage');
+                $v['source_order_num'] = '<a href="'.$url.'" style="color:blue">'.$v['source_order_num'].'</a>';
                 $body[] = array
                 (
                     $v['order_num'],

+ 40 - 0
app/mshop/lib/Buy.php

@@ -823,8 +823,48 @@ class Buy
         if ($type == 1) {
             # 门店结算单
             $cash_order = Dever::db('cash/order')->select(array('type' => $info['type'], 'type_id' => $info['type_id'], 'source_order_id' => $info['id']));
+
         } elseif ($type == 2) {
             # 工厂结算单
+            $cash_order = Dever::db('cash/order')->select(array('source_type' => $info['source_type'], 'source_id' => $info['source_id'], 'source_order_id' => $info['id']));
+        }
+
+        if ($cash_order) {
+            $head = array('序号', '结算单号', '数量', '金额', '结算类型', '入账状态', '审核状态', '结算时间', '审核未通过原因', '管理');
+
+            $body = array();
+            $config = Dever::db('cash/order')->config;
+            foreach ($cash_order as $k => $v) {
+                $cdate = date('Y-m-d H:i', $v['cdate']);
+                $fdate = date('Y-m-d H:i', $v['fdate']);
+                $operdate = date('Y-m-d H:i', $v['operdate']);
+                $cash = $v['cash'];
+
+                $url = Dever::url('project/database/list?project=shop&table=buy_order_goods&order_id='.$v['source_order_id'].'&page_type=1', 'manage');
+                $v['source_order_num'] = '<a href="'.$url.'" style="color:blue">'.$v['source_order_num'].'</a>';
+
+                $m = '';
+                if ($v['audit'] == 1) {
+                    $url = Dever::url('project/database/update?project=cash&table=order&where_id='.$v['id'].'&col=audit,desc', 'manage');
+                    $m = '<a href="javascript:;" onclick="fastEdit($(this), \''.$url.'\', \'审核\', \'\', 1)" class="layui-btn">审核</a>';
+                }
+                $body[] = array
+                (
+                    $k+1,
+                    $v['order_num'],
+                    $v['num'],
+                    $cash,
+                    $config['config_jstype'][$v['jstype']],
+                    $config['config_status'][$v['status']],
+                    $config['config_audit'][$v['audit']],
+                    $operdate,
+                    $v['desc'],
+                    $m,
+                );
+            }
+
+            $html .= '<div class="layui-card"><div class="layui-card-header">对账清单</div><div class="layui-card-body" style="max-heights: 500px;overflow: auto;">' . $this->table($head, $body)  . '</div></div>';
+                
         }
 
         $html .= '</div>';

+ 21 - 0
app/shop/database/buy_order.php

@@ -336,6 +336,27 @@ return array
             'col' => 'sum(price-refund_cash) as total',
         ),
 
+        # 获取总金额
+        'getPCashNum' => array
+        (
+            # 匹配的正则或函数 选填项
+            'option' => array
+            (
+                'start' => array('yes-cdate', '>='),
+                'end' => array('yes-cdate', '<='),
+                'start_o' => array('yes-operdate', '>='),
+                'end_o' => array('yes-operdate', '<='),
+                'type' => 'yes',
+                'type_id' => 'yes',
+                'source_type' => 'yes',
+                'source_id' => 'yes',
+                'status' => array('yes', 'in'),
+                'state' => 1,
+            ),
+            'type' => 'one',
+            'col' => 'sum(p_price-refund_p_cash) as total',
+        ),
+
         # 获取商品数量
         'getGoodsNum' => array
         (

+ 207 - 157
app/shop/database/sell_stat_month.php → app/shop/database/buy_stat.php

@@ -1,157 +1,207 @@
-<?php
-
-$type = array
-(
-    1 => '未对账',
-    2 => '已对账',
-);
-
-return array
-(
-    # 表名
-    'name' => 'sell_stat_month',
-    # 显示给用户看的名称
-    'lang' => '销售月度对账单',
-    'order' => 100,
-    'menu' => false,
-    'config_type' => $type,
-    # 数据结构
-    'struct' => array
-    (
-    
-        'id'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => 'ID',
-            'default'   => '',
-            'desc'      => '',
-            'match'     => 'is_numeric',
-            'search'    => 'order',
-            //'list'      => true,
-        ), 
-
-        'shop_id'      => array
-        (
-            'type'      => 'int-11',
-            'name'      => '所属门店',
-            'default'   => '',
-            'desc'      => '所属门店',
-            'match'     => 'is_numeric',
-            //'search'    => '',
-            'update'    => 'hidden',
-            'value'     => Dever::input('search_option_shop_id'),
-            'list'      => 'Dever::load("shop/info-find#name", {shop_id})',
-        ),
-
-        'month'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '账单时间',
-            'default'   => '',
-            'match'     => 'is_numeric',
-            'desc'      => '',
-            'search'	=> 'day',
-            'order'		=> 'desc',
-            'list'      => 'date("Y-m", {month})',
-        ),
-
-        'order'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '订单量',
-            'default'   => '0',
-            'desc'      => '订单量',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'goods'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '商品数',
-            'default'   => '0',
-            'desc'      => '商品数',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'cash'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '销售额',
-            'default'   => '0',
-            'desc'      => '销售额',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'type'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => '是否已对账',
-            'default'   => '1',
-            'desc'      => '是否已对账',
-            'match'     => 'is_numeric',
-            'update'    => 'radio',
-            'option'    => $type,
-            'list'      => true,
-            'edit'      => true,
-        ),
-
-        'state'     => array
-        (
-            'type'      => 'tinyint-1',
-            'name'      => '状态',
-            'default'   => '1',
-            'desc'      => '请选择状态',
-            'match'     => 'is_numeric',
-        ),
-        
-        'cdate'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '生成时间',
-            'match'     => array('is_numeric', time()),
-            'desc'      => '',
-            # 只有insert时才生效
-            'insert'    => true,
-            //'search'    => 'date',
-            'list'        => 'date("Y-m-d H:i:s", {cdate})',
-            //'list'      => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
-        ),
-    ),
-
-    'manage' => array
-    (
-        'delete' => false,
-        'edit' => false,
-        'insert' => false,
-        'excel'	=> true,
-
-        'list_button' => array(
-            //'fast_list' => array('查看详情', '"sell_stat_month&project=shop&stat_id={id}&page_type=1"'),
-        ),
-    ),
-
-    'request' => array
-    (
-        # 获取总金额
-        'getAll' => array
-        (
-            # 匹配的正则或函数 选填项
-            'option' => array
-            (
-                'start' => array('yes-month', '>='),
-                'end' => array('yes-month', '<='),
-                'shop_id' => 'yes',
-                'state' => 1,
-            ),
-            'type' => 'all',
-            'page' => array(10, 'list'),
-            'col' => '*',
-        ),
-    ),
-);
+<?php
+
+$shop = function()
+{
+    $array = array();
+    $info = Dever::db('shop/info')->select();
+    if($info)
+    {
+        $array += $info;
+    }
+    return $array;
+};
+
+return array
+(
+    # 表名
+    'name' => 'buy_stat',
+    # 显示给用户看的名称
+    'lang' => '采购额统计',
+    'order' => -10,
+    # 数据结构
+    'struct' => array
+    (
+    
+        'id'        => array
+        (
+            'type'      => 'int-11',
+            'name'      => 'ID',
+            'default'   => '',
+            'desc'      => '',
+            'match'     => 'is_numeric',
+            'search'    => 'order',
+            //'list'      => true,
+        ), 
+
+        'day'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '日期',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+            'search'    => 'day',
+            'order'     => 'desc',
+            'list'      => 'date("Y-m-d", {day})',
+        ),
+
+        'shop_id'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '所属门店',
+            'default'   => '',
+            'desc'      => '所属门店',
+            'match'     => 'is_numeric',
+            'option'    => $shop,
+            'update'    => 'hidden',
+            'value'     => Dever::input('search_option_shop_id'),
+            'list'      => 'Dever::load("shop/info-find#name", {shop_id})',
+        ),
+
+        'area'       => array
+        (
+            'type'      => 'varchar-500',
+            'name'      => '选择地区',
+            'default'   => '',
+            'desc'      => '选择地区',
+            'match'     => 'option',
+            'search'    => 'linkage',
+            'update'    => 'linkage',
+            'option'    => Dever::url('api.get?level_total=4', 'area'),
+            //'list'      => 'Dever::load("area/api.string", "{area}")',
+        ),
+
+        'province'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '省份',
+            'default'   => '',
+            'desc'      => '省份',
+            'match'     => 'option',
+            //'update'  => 'text',
+        ),
+
+        'city'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '城市',
+            'default'   => '',
+            'desc'      => '城市',
+            'match'     => 'option',
+            //'update'  => 'text',
+        ),
+
+        'county'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '县区',
+            'default'   => '',
+            'desc'      => '县区',
+            'match'     => 'option',
+            //'update'  => 'text',
+        ),
+
+        'town'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '街道',
+            'default'   => '',
+            'desc'      => '街道',
+            'match'     => 'option',
+            //'update'  => 'text',
+        ),
+
+        'order'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '订货单数',
+            'default'   => '0',
+            'desc'      => '订货单数',
+            'match'     => 'option',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'goods'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '商品数量',
+            'default'   => '0',
+            'desc'      => '商品数',
+            'match'     => 'option',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'cash'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '采购金额',
+            'default'   => '0',
+            'desc'      => '采购金额',
+            'match'     => 'option',
+            'update'    => 'text',
+            'list'      => true,
+        ),
+
+        'p_cash'      => array
+        (
+            'type'      => 'varchar-100',
+            'name'      => '出厂价',
+            'default'   => '0',
+            'desc'      => '出厂价',
+            'match'     => 'option',
+            'update'    => 'text',
+            'list_name' => '毛利',
+            'list'      => '{cash}-{p_cash}',
+        ),
+
+        'state'     => array
+        (
+            'type'      => 'tinyint-1',
+            'name'      => '状态',
+            'default'   => '1',
+            'desc'      => '请选择状态',
+            'match'     => 'is_numeric',
+        ),
+        
+        'cdate'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '生成时间',
+            'match'     => array('is_numeric', time()),
+            'desc'      => '',
+            # 只有insert时才生效
+            'insert'    => true,
+            //'search'    => 'date',
+            'list'        => 'date("Y-m-d H:i:s", {cdate})',
+            //'list'      => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
+        ),
+    ),
+
+    'manage' => array
+    (
+        'delete' => false,
+        'edit' => false,
+        'insert' => false,
+        'excel' => true,
+    ),
+
+    'request' => array
+    (
+        # 获取总金额
+        'getAll' => array
+        (
+            # 匹配的正则或函数 选填项
+            'option' => array
+            (
+                'start' => array('yes-day', '>='),
+                'end' => array('yes-day', '<='),
+                'shop_id' => 'yes',
+                'state' => 1,
+            ),
+            'type' => 'all',
+            'col' => '*',
+        ),
+    ),
+);

+ 0 - 153
app/shop/database/buy_stat_month.php

@@ -1,153 +0,0 @@
-<?php
-
-$type = array
-(
-    1 => '未对账',
-    2 => '已对账',
-);
-
-return array
-(
-    # 表名
-    'name' => 'buy_stat_month',
-    # 显示给用户看的名称
-    'lang' => '门店月度对账单',
-    'order' => 100,
-    'menu' => false,
-    'config_type' => $type,
-    # 数据结构
-    'struct' => array
-    (
-    
-        'id'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => 'ID',
-            'default'   => '',
-            'desc'      => '',
-            'match'     => 'is_numeric',
-            'search'    => 'order',
-            //'list'      => true,
-        ), 
-
-        'shop_id'      => array
-        (
-            'type'      => 'int-11',
-            'name'      => '所属门店',
-            'default'   => '',
-            'desc'      => '所属门店',
-            'match'     => 'is_numeric',
-            //'search'    => '',
-            'update'    => 'hidden',
-            'value'     => Dever::input('search_option_shop_id'),
-            'list'      => 'Dever::load("shop/info-find#name", {shop_id})',
-        ),
-
-        'month'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '账单时间',
-            'default'   => '',
-            'match'     => 'is_numeric',
-            'desc'      => '',
-            'search'	=> 'day',
-            'order'		=> 'desc',
-            'list'      => 'date("Y-m", {month})',
-        ),
-
-        'order'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '订单量',
-            'default'   => '0',
-            'desc'      => '订单量',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'goods'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '商品数',
-            'default'   => '0',
-            'desc'      => '商品数',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'cash'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '销售额',
-            'default'   => '0',
-            'desc'      => '销售额',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'type'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => '是否已对账',
-            'default'   => '1',
-            'desc'      => '是否已对账',
-            'match'     => 'is_numeric',
-            'update'    => 'radio',
-            'option'    => $type,
-            'list'      => true,
-            'edit'      => true,
-        ),
-
-        'state'     => array
-        (
-            'type'      => 'tinyint-1',
-            'name'      => '状态',
-            'default'   => '1',
-            'desc'      => '请选择状态',
-            'match'     => 'is_numeric',
-        ),
-        
-        'cdate'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '生成时间',
-            'match'     => array('is_numeric', time()),
-            'desc'      => '',
-            # 只有insert时才生效
-            'insert'    => true,
-            //'search'    => 'date',
-            'list'        => 'date("Y-m-d H:i:s", {cdate})',
-            //'list'      => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
-        ),
-    ),
-
-    'manage' => array
-    (
-        'delete' => false,
-        'edit' => false,
-        'insert' => false,
-        'excel'	=> true,
-    ),
-
-    'request' => array
-    (
-        # 获取总金额
-        'getAll' => array
-        (
-            # 匹配的正则或函数 选填项
-            'option' => array
-            (
-                'start' => array('yes-month', '>='),
-                'end' => array('yes-month', '<='),
-                'shop_id' => 'yes',
-                'state' => 1,
-            ),
-            'type' => 'all',
-            'page' => array(10, 'list'),
-            'col' => '*',
-        ),
-    ),
-);

+ 0 - 153
app/shop/database/factory_stat_month.php

@@ -1,153 +0,0 @@
-<?php
-
-$type = array
-(
-    1 => '未对账',
-    2 => '已对账',
-);
-
-return array
-(
-    # 表名
-    'name' => 'factory_stat_month',
-    # 显示给用户看的名称
-    'lang' => '工厂月度对账单',
-    'order' => 100,
-    'menu' => false,
-    'config_type' => $type,
-    # 数据结构
-    'struct' => array
-    (
-    
-        'id'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => 'ID',
-            'default'   => '',
-            'desc'      => '',
-            'match'     => 'is_numeric',
-            'search'    => 'order',
-            //'list'      => true,
-        ), 
-
-        'factory_id'      => array
-        (
-            'type'      => 'int-11',
-            'name'      => '所属工厂',
-            'default'   => '',
-            'desc'      => '所属工厂',
-            'match'     => 'is_numeric',
-            //'search'    => '',
-            'update'    => 'hidden',
-            'value'     => Dever::input('search_option_factory_id'),
-            'list'      => 'Dever::load("factory/info-find#name", {factory_id})',
-        ),
-
-        'month'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '账单时间',
-            'default'   => '',
-            'match'     => 'is_numeric',
-            'desc'      => '',
-            'search'	=> 'day',
-            'order'		=> 'desc',
-            'list'      => 'date("Y-m", {month})',
-        ),
-
-        'order'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '订单量',
-            'default'   => '0',
-            'desc'      => '订单量',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'goods'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '商品数',
-            'default'   => '0',
-            'desc'      => '商品数',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'cash'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '销售额',
-            'default'   => '0',
-            'desc'      => '销售额',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'type'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => '是否已对账',
-            'default'   => '1',
-            'desc'      => '是否已对账',
-            'match'     => 'is_numeric',
-            'update'    => 'radio',
-            'option'    => $type,
-            'list'      => true,
-            'edit'      => true,
-        ),
-
-        'state'     => array
-        (
-            'type'      => 'tinyint-1',
-            'name'      => '状态',
-            'default'   => '1',
-            'desc'      => '请选择状态',
-            'match'     => 'is_numeric',
-        ),
-        
-        'cdate'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '生成时间',
-            'match'     => array('is_numeric', time()),
-            'desc'      => '',
-            # 只有insert时才生效
-            'insert'    => true,
-            //'search'    => 'date',
-            'list'        => 'date("Y-m-d H:i:s", {cdate})',
-            //'list'      => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
-        ),
-    ),
-
-    'manage' => array
-    (
-        'delete' => false,
-        'edit' => false,
-        'insert' => false,
-        'excel'	=> true,
-    ),
-
-    'request' => array
-    (
-        # 获取总金额
-        'getAll' => array
-        (
-            # 匹配的正则或函数 选填项
-            'option' => array
-            (
-                'start' => array('yes-month', '>='),
-                'end' => array('yes-month', '<='),
-                'factory_id' => 'yes',
-                'state' => 1,
-            ),
-            'type' => 'all',
-            'page' => array(10, 'list'),
-            'col' => '*',
-        ),
-    ),
-);

+ 75 - 14
app/shop/database/sell_stat.php

@@ -1,15 +1,23 @@
 <?php
 
-//1待支付2支付成功3处理中4待确认5已完成6已完成(有退款)7已取消8已退款11已过期
+$shop = function()
+{
+    $array = array();
+    $info = Dever::db('shop/info')->select();
+    if($info)
+    {
+        $array += $info;
+    }
+    return $array;
+};
 
 return array
 (
     # 表名
     'name' => 'sell_stat',
     # 显示给用户看的名称
-    'lang' => '销售对账单',
-    'order' => 100,
-    'menu' => false,
+    'lang' => '销售额统计',
+    'order' => -9,
     # 数据结构
     'struct' => array
     (
@@ -25,6 +33,18 @@ return array
             //'list'      => true,
         ), 
 
+        'day'     => array
+        (
+            'type'      => 'int-11',
+            'name'      => '日期',
+            'default'   => '',
+            'match'     => 'is_numeric',
+            'desc'      => '',
+            'search'    => 'day',
+            'order'     => 'desc',
+            'list'      => 'date("Y-m-d", {day})',
+        ),
+
         'shop_id'      => array
         (
             'type'      => 'int-11',
@@ -32,22 +52,63 @@ return array
             'default'   => '',
             'desc'      => '所属门店',
             'match'     => 'is_numeric',
-            //'search'    => '',
+            'option'    => $shop,
             'update'    => 'hidden',
             'value'     => Dever::input('search_option_shop_id'),
             'list'      => 'Dever::load("shop/info-find#name", {shop_id})',
         ),
 
-        'day'     => array
+        'area'       => array
+        (
+            'type'      => 'varchar-500',
+            'name'      => '选择地区',
+            'default'   => '',
+            'desc'      => '选择地区',
+            'match'     => 'option',
+            'search'    => 'linkage',
+            'update'    => 'linkage',
+            'option'    => Dever::url('api.get?level_total=4', 'area'),
+            //'list'      => 'Dever::load("area/api.string", "{area}")',
+        ),
+
+        'province'      => array
         (
             'type'      => 'int-11',
-            'name'      => '账单时间',
+            'name'      => '省份',
             'default'   => '',
-            'match'     => 'is_numeric',
-            'desc'      => '',
-            'search'	=> 'day',
-            'order'		=> 'desc',
-            'list'      => 'date("Y-m-d", {day})',
+            'desc'      => '省份',
+            'match'     => 'option',
+            //'update'  => 'text',
+        ),
+
+        'city'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '城市',
+            'default'   => '',
+            'desc'      => '城市',
+            'match'     => 'option',
+            //'update'  => 'text',
+        ),
+
+        'county'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '县区',
+            'default'   => '',
+            'desc'      => '县区',
+            'match'     => 'option',
+            //'update'  => 'text',
+        ),
+
+        'town'      => array
+        (
+            'type'      => 'int-11',
+            'name'      => '街道',
+            'default'   => '',
+            'desc'      => '街道',
+            'match'     => 'option',
+            //'update'  => 'text',
         ),
 
         'order'      => array
@@ -64,7 +125,7 @@ return array
         'goods'      => array
         (
             'type'      => 'varchar-100',
-            'name'      => '商品数',
+            'name'      => '商品数',
             'default'   => '0',
             'desc'      => '商品数',
             'match'     => 'option',
@@ -75,7 +136,7 @@ return array
         'cash'      => array
         (
             'type'      => 'varchar-100',
-            'name'      => '销售额',
+            'name'      => '营业额',
             'default'   => '0',
             'desc'      => '销售额',
             'match'     => 'option',

+ 0 - 153
app/shop/database/store_stat_month.php

@@ -1,153 +0,0 @@
-<?php
-
-$type = array
-(
-    1 => '未对账',
-    2 => '已对账',
-);
-
-return array
-(
-    # 表名
-    'name' => 'store_stat_month',
-    # 显示给用户看的名称
-    'lang' => '仓库月度对账单',
-    'order' => 100,
-    'menu' => false,
-    'config_type' => $type,
-    # 数据结构
-    'struct' => array
-    (
-    
-        'id'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => 'ID',
-            'default'   => '',
-            'desc'      => '',
-            'match'     => 'is_numeric',
-            'search'    => 'order',
-            //'list'      => true,
-        ), 
-
-        'store_id'      => array
-        (
-            'type'      => 'int-11',
-            'name'      => '所属仓库',
-            'default'   => '',
-            'desc'      => '所属仓库',
-            'match'     => 'is_numeric',
-            //'search'    => '',
-            'update'    => 'hidden',
-            'value'     => Dever::input('search_option_store_id'),
-            'list'      => 'Dever::load("store/info-find#name", {store_id})',
-        ),
-
-        'month'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '账单时间',
-            'default'   => '',
-            'match'     => 'is_numeric',
-            'desc'      => '',
-            'search'	=> 'day',
-            'order'		=> 'desc',
-            'list'      => 'date("Y-m", {month})',
-        ),
-
-        'order'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '订单量',
-            'default'   => '0',
-            'desc'      => '订单量',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'goods'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '商品数',
-            'default'   => '0',
-            'desc'      => '商品数',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'cash'      => array
-        (
-            'type'      => 'varchar-100',
-            'name'      => '销售额',
-            'default'   => '0',
-            'desc'      => '销售额',
-            'match'     => 'option',
-            'update'    => 'text',
-            'list'		=> true,
-        ),
-
-        'type'        => array
-        (
-            'type'      => 'int-11',
-            'name'      => '是否已对账',
-            'default'   => '1',
-            'desc'      => '是否已对账',
-            'match'     => 'is_numeric',
-            //'update'    => 'radio',
-            'option'    => $type,
-            //'list'      => true,
-            //'edit'      => true,
-        ),
-
-        'state'     => array
-        (
-            'type'      => 'tinyint-1',
-            'name'      => '状态',
-            'default'   => '1',
-            'desc'      => '请选择状态',
-            'match'     => 'is_numeric',
-        ),
-        
-        'cdate'     => array
-        (
-            'type'      => 'int-11',
-            'name'      => '生成时间',
-            'match'     => array('is_numeric', time()),
-            'desc'      => '',
-            # 只有insert时才生效
-            'insert'    => true,
-            //'search'    => 'date',
-            'list'        => 'date("Y-m-d H:i:s", {cdate})',
-            //'list'      => 'Dever::load("service/lib/manage.showOrderTime", "{id}")',
-        ),
-    ),
-
-    'manage' => array
-    (
-        'delete' => false,
-        'edit' => false,
-        'insert' => false,
-        'excel'	=> true,
-    ),
-
-    'request' => array
-    (
-        # 获取总金额
-        'getAll' => array
-        (
-            # 匹配的正则或函数 选填项
-            'option' => array
-            (
-                'start' => array('yes-month', '>='),
-                'end' => array('yes-month', '<='),
-                'store_id' => 'yes',
-                'state' => 1,
-            ),
-            'type' => 'all',
-            'page' => array(10, 'list'),
-            'col' => '*',
-        ),
-    ),
-);

+ 47 - 0
app/shop/lib/Cron.php

@@ -88,6 +88,11 @@ class Cron
                 $data['cash'] = Dever::db('shop/sell_order')->getCashNum($where);
                 $data['order'] = Dever::db('shop/sell_order')->getOrderNum($where);
                 $data['goods'] = Dever::db('shop/sell_order')->getGoodsNum($where);
+                $data['area'] = $shop['area'];
+                $data['province'] = $shop['province'];
+                $data['city'] = $shop['city'];
+                $data['county'] = $shop['county'];
+                $data['town'] = $shop['town'];
                 if (!$info) {
                     Dever::db('shop/sell_stat')->insert($data);
                 } else {
@@ -98,6 +103,48 @@ class Cron
         }
     }
 
+    public function buy_api()
+    {
+        $num = Dever::input('num', 1);
+        $start = Dever::input('start', date('Y-m-d', strtotime('-'.$num.' day')));
+        $end = Dever::input('end', date('Y-m-d'));
+
+        $where['status'] = '1,2,3,4,5,6';
+        $start = Dever::maketime($start . ' 00:00:00');
+        $end = Dever::maketime($end . ' 23:59:59');
+        $day = intval(($end - $start)/86400);
+
+        $shop = Dever::db('shop/info')->select();
+
+        foreach ($shop as $k => $v) {
+            $where['shop_id'] = $v['id'];
+            for($i=0; $i<=$day; $i++) {
+                $where['start'] = $start + 86400*$i;
+                $where['end'] = $start + 86400*$i + 86399;
+                $data = array();
+                $data['type'] = 1;
+                $data['type_id'] = $v['id'];
+                $data['day'] = $where['start'];
+                $info = Dever::db('shop/buy_stat')->find($data);
+                $data['cash'] = Dever::db('shop/buy_order')->getCashNum($where);
+                $data['p_cash'] = Dever::db('shop/buy_order')->getPCashNum($where);
+                $data['order'] = Dever::db('shop/buy_order')->getOrderNum($where);
+                $data['goods'] = Dever::db('shop/buy_order')->getGoodsNum($where);
+                $data['area'] = $shop['area'];
+                $data['province'] = $shop['province'];
+                $data['city'] = $shop['city'];
+                $data['county'] = $shop['county'];
+                $data['town'] = $shop['town'];
+                if (!$info) {
+                    Dever::db('shop/buy_stat')->insert($data);
+                } else {
+                    $data['where_id'] = $info['id'];
+                    Dever::db('shop/buy_stat')->update($data);
+                }
+            }
+        }
+    }
+
     # 处理月度对账数据 废弃,直接用结算单处理
     public function sell_month_api()
     {