123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <?php
- $config = array
- (
- # 表名
- 'name' => 'goods_stat',
- # 显示给用户看的名称
- 'lang' => '门店单品销售统计',
- 'order' => -12,
- # 数据结构 不同的字段放这里
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- //'list' => true,
- ),
- 'day' => array
- (
- 'type' => 'int-11',
- 'name' => '日期',
- 'default' => '',
- 'match' => 'is_numeric',
- 'desc' => '',
- 'search' => 'day',
- 'search_button' => array
- (
- 'sum' => 'num,cash',
- 'option' => array(
- 'day' => '按天',
- 'week' => '按周',
- 'month' => '按月',
- ),
- 'group' => 'goods_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}")',
- ),
- 'goods_id' => array
- (
- 'type' => 'int-11',
- 'name' => '商品名称',
- 'default' => '',
- 'desc' => '商品名称',
- 'match' => 'is_numeric',
- 'search' => array
- (
- 'api' => 'goods/info-like',
- 'col' => 'name',
- 'result' => 'id',
- 'search' => 'goods_id',//本表的字段,默认为当前的字段
- ),
- 'list' => 'Dever::load("goods/info-find#name", {goods_id})',
- 'list_order' => 5,
- ),
- 'category' => array
- (
- 'type' => 'varchar-500',
- 'name' => '商品分类',
- 'default' => '',
- 'desc' => '商品分类',
- 'match' => 'is_string',
- 'search' => 'linkage',
- 'update' => 'linkage',
- 'option' => Dever::url('api.get', 'category'),
- 'list' => 'Dever::load("category/api.string", "{category}")',
- ),
- 'num' => array
- (
- 'type' => 'float-11,2',
- 'name' => '数量',
- 'default' => '0',
- 'desc' => '数量',
- 'match' => 'is_numeric',
- 'search' => 'order',
- 'list' => true,
- ),
- 'cash' => array
- (
- 'type' => 'varchar-100',
- 'name' => '金额',
- 'default' => '0',
- 'desc' => '金额',
- 'match' => 'is_string',
- 'search' => 'order',
- 'list' => 'round({cash}, 2)',
- ),
- 'hb' => array
- (
- 'type' => 'varchar-11',
- 'name' => '环比增长',
- 'default' => '0',
- 'desc' => '环比增长',
- 'match' => 'option',
- 'update' => 'text',
- 'list' => 'Dever::load("shop/lib/manage.getGoodsHb", "{num}", "{time}", "{goods_id}")',
- ),
- '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})',
- ),
- ),
- 'alter' => array
- (
- 2 => array
- (
- array('update', 'num', 'num', 'float-11,2 0 数量'),
- ),
- 'version' => 2,
- ),
- 'manage' => array
- (
- 'insert' => false,
- 'edit' => false,
- 'delete' => false,
- 'num' => false,
- 'excel' => true,
- ),
- # request 请求接口定义
- 'request' => array
- (
- 'list' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'shop_id' => 'yes',
- 'area' => array('yes', 'like'),
- 'category' => array('yes', 'like'),
- 'start_day' => array('yes-day', '>='),
- 'end_day' => array('yes-day', '<='),
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('time' => 'desc', 'cdate' => 'desc'),
- 'page' => array(20, 'list'),
- 'group' => 'goods_id,day',
- 'col' => '*,min(day) as time,sum(cash) as cash, sum(num) as num',
- ),
- 'prev' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'day' => array('yes-day', '<'),
- //'start_day' => array('yes-day', '>='),
- //'end_day' => array('yes-day', '<='),
- 'state' => 1,
- ),
- 'order' => array('time' => 'desc', 'id' => 'desc'),
- 'type' => 'one',
- 'col' => '*,min(day) as time,sum(cash) as cash, sum(num) as num',
- # 允许自定义以上配置
- 'config' => true,
- ),
- ),
- );
- return $config;
|