123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- <?php
- $pay_status = Dever::config('base', 'pay')->pay['status'];
- $status = array
- (
- 1 => '待支付',
- 2 => '待审核',
- 3 => '待发货',
- 4 => '待收货确认',
- 5 => '已完成',
- 6 => '已完成(有退款)',
- 7 => '已取消',
- 8 => '已退款',
- 11 => '已过期',
- );
- $source_type = array
- (
- 1 => '仓库',
- 2 => '工厂',
- );
- return array
- (
-
- 'name' => 'buy_order',
-
- 'lang' => '采购订单',
- 'order' => 99,
- 'status' => $status,
-
- 'struct' => array
- (
-
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
-
- ),
- 'shop_id' => array
- (
- 'type' => 'int-11',
- 'name' => '所属门店',
- 'default' => '',
- 'desc' => '所属门店',
- 'match' => 'is_numeric',
- 'update' => 'hidden',
- 'value' => Dever::input('search_option_shop_id'),
- 'list' => 'Dever::load("shop/info-find#name", {shop_id})',
- ),
- 'mobile' => array
- (
- 'type' => 'varchar-300',
- 'name' => '下单手机号',
- 'default' => '',
- 'desc' => '手机号',
- 'match' => 'option',
- 'search' => array
- (
- 'api' => 'shop/info-select',
- 'col' => 'mobile',
- 'result' => 'id',
- 'search' => 'shop_id',
- ),
- ),
- 'name' => array
- (
- 'type' => 'varchar-800',
- 'name' => '订单名称',
- 'default' => '',
- 'desc' => '订单名称',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
- 'order_num' => array
- (
- 'type' => 'varchar-100',
- 'name' => '订单编号',
- 'default' => '',
- 'desc' => '订单编号',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'price' => array
- (
- 'type' => 'varchar-50',
- 'name' => '购买价格',
- 'default' => '',
- 'desc' => '购买价格',
- 'match' => 'option',
- 'update' => 'text',
- 'list' => true,
- ),
- 'num' => array
- (
- 'type' => 'int-11',
- 'name' => '购买数量',
- 'default' => '',
- 'desc' => '购买数量',
- 'match' => 'is_numeric',
- 'search' => 'select',
- 'list' => true,
- ),
- 'refund_cash' => array
- (
- 'type' => 'varchar-50',
- 'name' => '退款合计金额',
- 'default' => '0',
- 'desc' => '退款合计金额',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'type' => array
- (
- 'type' => 'int-11',
- 'name' => '采购来源',
- 'default' => '',
- 'desc' => '采购来源',
- 'match' => 'is_numeric',
- ),
- 'type_id' => array
- (
- 'type' => 'int-11',
- 'name' => '来源id',
- 'default' => '',
- 'desc' => '来源id',
- 'match' => 'is_numeric',
- ),
- 'info' => array
- (
- 'type' => 'varchar-300',
- 'name' => '订单备注',
- 'default' => '',
- 'desc' => '订单备注',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'area' => array
- (
- 'type' => 'varchar-500',
- 'name' => '所在地区',
- 'default' => '',
- 'desc' => '所在地区',
- 'match' => 'option',
- 'search' => 'linkage',
- 'option' => Dever::url('api.get?level_total=4', 'area'),
- ),
- 'province' => array
- (
- 'type' => 'int-11',
- 'name' => '省份',
- 'default' => '',
- 'desc' => '省份',
- 'match' => 'option',
-
- ),
- 'city' => array
- (
- 'type' => 'int-11',
- 'name' => '城市',
- 'default' => '',
- 'desc' => '城市',
- 'match' => 'option',
-
- ),
- 'county' => array
- (
- 'type' => 'int-11',
- 'name' => '县区',
- 'default' => '',
- 'desc' => '县区',
- 'match' => 'option',
-
- ),
- 'town' => array
- (
- 'type' => 'int-11',
- 'name' => '街道',
- 'default' => '',
- 'desc' => '街道',
- 'match' => 'option',
-
- ),
- 'status' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '状态',
- 'match' => 'is_numeric',
- 'option' => $status,
- 'search' => 'select',
- 'list' => 'Dever::load("mshop/lib/buy.orderStatus", "{id}")',
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
- 'operdate' => array
- (
- 'type' => 'int-11',
- 'name' => '审核时间',
- 'default' => '',
- 'match' => 'is_numeric',
- 'desc' => '',
- ),
- 'fdate' => array
- (
- 'type' => 'int-11',
- 'name' => '发货时间',
- 'default' => '',
- 'match' => 'is_numeric',
- 'desc' => '',
- ),
- 'qfdate' => array
- (
- 'type' => 'int-11',
- 'name' => '确认发货时间',
- 'default' => '',
- 'match' => 'is_numeric',
- 'desc' => '',
- ),
- 'shdate' => array
- (
- 'type' => 'int-11',
- 'name' => '确认收货时间',
- 'default' => '',
- 'match' => 'is_numeric',
- 'desc' => '',
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '下单时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
-
- 'insert' => true,
- 'search' => 'date',
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
-
- ),
- ),
- 'manage' => array
- (
- 'delete' => false,
- 'edit' => false,
- 'insert' => false,
- 'button' => array
- (
-
- ),
- 'list_button' => array(
-
-
- 'fast_list' => array('查看详情', '"buy_order_goods&project=shop&order_id={id}&page_type=1"'),
- 'oper' => array('审核', '"mshop/lib/manage.audit?order_id={id}"', '{status} == 2'),
- 'oper1' => array('发货', '"mshop/lib/manage.send?order_id={id}"', '{status} == 3'),
- ),
- ),
- 'request' => array
- (
- 'getAll' => array
- (
-
- 'option' => array
- (
- 'name' => array('yes', 'like'),
- 'shop_id' => 'yes',
- 'mobile' => 'yes',
- 'start' => array('yes-cdate', '>='),
- 'end' => array('yes-cdate', '<='),
- 'status' => array('yes', 'in'),
- 'state' => 1,
- ),
- 'type' => 'all',
- 'order' => array('cdate' => 'desc'),
- 'page' => array(10, 'list'),
- 'col' => '*',
- ),
-
- 'getOrderNum' => array
- (
-
- 'option' => array
- (
- 'start' => array('yes-cdate', '>='),
- 'end' => array('yes-cdate', '<='),
- 'shop_id' => 'yes',
- 'status' => array('yes', 'in'),
- 'state' => 1,
- ),
- 'type' => 'count',
- 'col' => '*',
- ),
-
- 'getCashNum' => array
- (
-
- 'option' => array
- (
- 'start' => array('yes-cdate', '>='),
- 'end' => array('yes-cdate', '<='),
- 'shop_id' => 'yes',
- 'status' => array('yes', 'in'),
- 'state' => 1,
- ),
- 'type' => 'one',
- 'col' => 'sum(price) as total',
- ),
-
- 'getGoodsNum' => array
- (
-
- 'option' => array
- (
- 'start' => array('yes-cdate', '>='),
- 'end' => array('yes-cdate', '<='),
- 'shop_id' => 'yes',
- 'status' => array('yes', 'in'),
- 'state' => 1,
- ),
- 'type' => 'one',
- 'col' => 'sum(num) as total',
- ),
- ),
- );
|