array('name' => '提现完成', 'style' => 'font-weight:bold;color:green'), 5 => array('name' => '提现失败', 'style' => 'font-weight:bold;color:#CD3700'), ); $mid = Dever::input('search_fulltext_mid'); $shop_name = Dever::input('search_api_shop_id'); $shop = array(); if ($shop_name) { $shop = Dever::db('shop/info')->likeOne(array('name' => $shop_name)); } elseif ($mid) { $shop = Dever::db('shop/info')->likeOne(array('mid' => $mid)); } $button = array(); $info = ''; if ($shop) { # 申请提现和查看提现日志 $account = Dever::db('shop/yspay_account')->find(array('shop_id' => $shop['id'])); $info = $shop['name'] . ',当前余额:' . round($account['cash']/100, 2) . '元,总提现金额:' . round($account['tx_cash']/100, 2) . '元'; if ($shop['type'] == 10) { $button['手动申请提现'] = array('fast', 1,'yspay_tixian_apply&shop_id=' . $shop['id']); $button['提现申请记录'] = array('location', 'l=project/database/list&project=shop&table=yspay_tixian_log&search_option_state=1&search_option_shop_id='.$shop['id'].'&oper_table=yspay_tixian&search_fulltext_mid=' . $mid . '&search_api_shop_id=' . $shop_name); } } return array ( # 表名 'name' => 'yspay_tixian', # 显示给用户看的名称 'lang' => '银联提现列表', 'order' => -200, 'info' => $info, # 数据结构 'struct' => array ( 'id' => array ( 'type' => 'int-11', 'name' => 'ID', 'default' => '', 'desc' => '', 'match' => 'is_numeric', 'search' => 'order', 'update' => 'hidden', //'list' => true, ), 'shop_id' => array ( 'type' => 'int-11', 'name' => '门店名称', 'default' => '', 'desc' => '所属门店', 'match' => 'is_numeric', 'update' => 'text', 'search' => array ( 'api' => 'shop/info-like', 'col' => 'name', 'result' => 'id', ), 'list' => 'Dever::load("shop/info-one#name", {shop_id})', ), 'mid' => array ( 'type' => 'varchar-50', 'name' => '分账商户号', 'default' => '', 'desc' => '分账商户号', 'match' => 'option', 'update' => 'text', 'search' => 'fulltext', 'list' => true, ), 'order_num' => array ( 'type' => 'varchar-100', 'name' => '订单号', 'default' => '', 'desc' => '订单号', 'match' => 'is_string', 'update' => 'text', 'list' => true, ), 'type' => array ( 'type' => 'varchar-10', 'name' => '类型', 'default' => '', 'desc' => '类型', 'match' => 'is_numeric', 'update' => 'text', ), 'cash' => array ( 'type' => 'int-11', 'name' => '提现金额', 'default' => '0', 'desc' => '提现金额', 'match' => 'option', 'update' => 'text', 'list' => 'round({cash}/100, 2)', ), 'cardNo' => array ( 'type' => 'varchar-100', 'name' => '到账银行卡号', 'default' => '', 'desc' => '到账银行卡号', 'match' => 'is_string', 'update' => 'text', //'list' => true, ), 'tdate' => array ( 'type' => 'int-11', 'name' => '提现到账时间', 'default' => '', 'match' => 'is_numeric', 'desc' => '', 'search' => 'date', 'list' => '"{tdate}" ? date("Y-m-d H:i", \'{tdate}\') : "-"', 'order' => 'desc', ), 'status' => array ( 'type' => 'tinyint-1', 'name' => '提现状态', 'default' => '1', 'desc' => '提现状态', 'match' => 'is_numeric', 'option' => $status, 'search' => 'select', '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})', ), ), 'manage' => array ( 'edit' => false, 'insert' => false, 'delete' => false, 'button' => $button, ), 'request' => array ( 'getTotal' => array ( 'option' => array ( 'shop_id' => 'yes', 'status' => 'yes', 'state' => 1, ), 'type' => 'one', 'col' => 'sum(cash) as cash', ), ), );