123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?php
- $shop = function()
- {
- $array = array();
- $info = Dever::db('shop/info')->select();
- if($info)
- {
- $array += $info;
- }
- return $array;
- };
- return array
- (
- # 表名
- 'name' => 'sell_stat',
- # 显示给用户看的名称
- 'lang' => '销售额统计',
- 'order' => -9,
- # 数据结构
- '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',
- 'search_button' => array
- (
- 'sum' => 'cash,`order`,goods',
- 'option' => array(
- 'day' => '按天',
- 'week' => '按周',
- 'month' => '按月',
- ),
- 'group' => 'shop_id',
- ),
- 'order' => 'desc',
- 'list' => 'Dever::showDay("{day}")',
- ),
- 'shop_id' => array
- (
- 'type' => 'int-11',
- 'name' => '门店名称',
- 'default' => '',
- 'desc' => '门店名称',
- 'match' => 'is_numeric',
- 'search' => 'select',
- //'option' => $shop,
- 'update' => 'hidden',
- 'search' => 'hidden',
- 'search' => array
- (
- 'api' => 'shop/info-like',
- 'col' => 'name',
- 'result' => 'id',
- ),
- 'value' => Dever::input('search_option_shop_id'),
- 'list' => 'Dever::load("shop/info-one#name", {shop_id})',
- ),
- 'area' => array
- (
- 'type' => 'varchar-500',
- 'name' => '所在街道',
- 'default' => '',
- 'desc' => '所在街道',
- 'match' => 'option',
- 'search' => 'linkage',
- 'update' => 'linkage',
- 'option' => Dever::url('lib/area.get', 'shop'),
- //'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,
- ),
- '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' => '*',
- ),
- ),
- );
|