@@ -221,6 +221,17 @@ class DecOrderList extends \common\libs\dataList\DataList implements DataListInt
},
'headerOther' => ['width' => '190'],
],
+ 'IS_AUTO' => [
+ 'header' => 'Is Auto', // 是否自动
+ 'value' => function ($row) {
+ switch ($row['IS_AUTO']) {
+ case 1:
+ return 'Yes';
+ case 0:
+ return 'No';
+ }
+ },
+ ],
];
}
return $this->columns;