|
|
@@ -84,7 +84,6 @@ class OrderList extends \common\libs\dataList\DataList implements DataListInterf
|
|
|
if(!$this->columns){
|
|
|
$this->columns = [
|
|
|
'ID' => null,
|
|
|
- 'SN' => null,
|
|
|
'DEC_SN' => null,
|
|
|
'USER_NAME' => [
|
|
|
'header' => 'Member code',//会员编号
|
|
|
@@ -217,6 +216,13 @@ class OrderList extends \common\libs\dataList\DataList implements DataListInterf
|
|
|
},
|
|
|
'headerOther' => ['width' => '190'],
|
|
|
],
|
|
|
+ 'PAY_TYPE' => [
|
|
|
+ 'header' => 'Pay type',// 支付方式
|
|
|
+ 'value' => function ($row) {
|
|
|
+ return ShopGoods::payTypes()[$row['PAY_TYPE']]['name'] ?? ShopGoods::payTypes()['cash']['name'];
|
|
|
+ },
|
|
|
+ 'headerOther' => ['width' => '190'],
|
|
|
+ ],
|
|
|
'PAY_AT' => [
|
|
|
'header' => 'Payment time',//支付时间
|
|
|
'value' => function ($row) {
|
|
|
@@ -235,7 +241,6 @@ class OrderList extends \common\libs\dataList\DataList implements DataListInterf
|
|
|
},
|
|
|
'headerOther' => ['width' => '190'],
|
|
|
],
|
|
|
- 'PAY_TYPE' => null,
|
|
|
'REAL_PRICE' => [
|
|
|
'header' => 'item pricing',//商品单价
|
|
|
'headerOther' => [
|