| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 | <?php$status = array(    1 => '待审核',    2 => '已审核',    3 => '已驳回',);return array(    # 表名    'name' => 'servicer_in',    # 显示给用户看的名称    'lang' => '入库订单',    'order' => 98,    'set' => array    (    	'status' => $status,    ),    # 数据结构    'struct' => array    (        'id'        => array        (            'type'      => 'int-11',            'name'      => 'ID',            'default'   => '',            'desc'      => '',            'match'     => 'is_numeric',            'search'    => 'order',            //'list'      => true,        ),        'order_num'      => array        (            'type'      => 'varchar-100',            'name'      => '订单号',            'default'   => '',            'desc'      => '订单号',            'match'     => 'is_string',            'update'    => 'text',            'search'    => 'fulltext',            'list_name'	=> '订单信息',            'list'      => 'Dever::load("scm_order/lib/sell.info#order", {id})',        ),        'type_id'      => array        (            'type'      => 'int-11',            'name'      => '角色ID',            'default'   => '',            'desc'      => '角色ID',            'match'     => 'is_numeric',            'update'    => 'hidden',            'search'    => array            (                'api' => 'scm_role/seller-like',                'col' => 'name',                'result' => 'id',            ),            'value'     => Dever::input('search_option_seller_id'),        ),        'info'      => array        (            'type'      => 'varchar-300',            'name'      => '订单备注',            'default'   => '',            'desc'      => '订单备注',            'match'     => 'option',            'update'    => 'textarea',        ),        'status'        => array        (            'type'      => 'tinyint-1',            'name'      => '订单状态',            'default'   => '1',            'desc'      => '订单状态',            'match'     => 'is_numeric',            'option'    => $status,            'search'    => 'select',            //'search_after' => '<br />',            //'mul'   => true,            //'mul_option' => array(2 => '批量审核', 5 => '确认收货'),        ),        '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'    => 'sdate',            'list'        => 'date("Y-m-d H:i", {cdate})',        ),    ),    'manage' => array    (        'delete' => false,        'edit' => false,        'insert' => false,        //'excel' => $excel,        //'mul' => $mul,        'button' => array        (            //'导出订单明细' => array('excel', 'shop/excel.sell_order'),        ),        'list_button' => array        (            //fast_list            /*            'list' => array('查看详情', '"sell_order_goods&project=shop&order_id={id}&page_type=&search_option_shop_type='.$search_option_shop_type.'"'),            'list11' => array('查看采购单', '"buy_order&project=shop&search_option_type=1&&search_option_parent_type=2&search_option_parent_order_id={id}&oper_table=sell_order&search_option_shop_type='.$search_option_shop_type.'"', '{status} >= 3 && {audit} == 2 && {shop_type} == 2'),            'list1' => array('审核', '"sell_order_goods&project=shop&order_id={id}&audit=1&page_type=&search_option_shop_type='.$search_option_shop_type.'"', '{status} == 2 && {shop_type} == 2'),            'oper'  => array('确认收货', '"shop/lib/manage.setSellOrderStatus?shop_id={shop_id}&order_id={id}"', '{status} == 4 && {shop_type} == 2'),            */        ),    ),    'request' => array    (        'getList' => array        (            # 匹配的正则或函数 选填项            'option' => array            (                'shop_id' => 'yes',                'uid' => 'yes',                'status' => 'yes',                'state' => 1,            ),            'type' => 'all',            'order' => array('cdate' => 'desc'),            'page' => array(5, 'list'),            'col' => '*',        ),        'getAll' => array        (            # 匹配的正则或函数 选填项            'option' => array            (                'uid' => 'yes',                'name' => array('yes', 'like'),                'shop_id' => 'yes',                'method' => 'yes',                'pay_method' => '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' => '*',        ),    ),);
 |