|
@@ -71,6 +71,26 @@ return array
|
|
|
//'mul' => array(1 => '恢复使用', 4 => '已作废'),
|
|
|
),
|
|
|
|
|
|
+ 'total_cash' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-50',
|
|
|
+ 'name' => '总额',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '总额',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'text',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'use_cash' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-50',
|
|
|
+ 'name' => '已使用',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '已使用',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'text',
|
|
|
+ ),
|
|
|
+
|
|
|
'uid' => array
|
|
|
(
|
|
|
'type' => 'int-11',
|
|
@@ -216,7 +236,7 @@ return array
|
|
|
'type' => 'all',
|
|
|
'page' => array(10, 'list'),
|
|
|
'order' => array('cdate' => 'ddate'),
|
|
|
- 'col' => '*',
|
|
|
+ 'col' => '*,total_cash-use_cash as cash',
|
|
|
),
|
|
|
),
|
|
|
);
|