|
|
@@ -204,13 +204,6 @@ class OrderList extends \common\libs\dataList\DataList implements DataListInterf
|
|
|
}
|
|
|
},
|
|
|
],
|
|
|
-// 'IS_AUTO' => [
|
|
|
-// 'header' => 'Is Auto', // 是否自动
|
|
|
-// 'headerOther' => ['width' => '120'],
|
|
|
-// 'value' => function ($row) {
|
|
|
-// return $row['IS_AUTO'] == 1 ? 'Yes' : 'No';
|
|
|
-// },
|
|
|
-// ],
|
|
|
// 'WAREHOUSE' => [
|
|
|
// 'header' => 'Delivery warehouse',//发货仓
|
|
|
// ],
|
|
|
@@ -355,6 +348,12 @@ class OrderList extends \common\libs\dataList\DataList implements DataListInterf
|
|
|
return \Yii::$app->params['deliveryStatus'][$row['DELIVERY_STATUS']]['label'] ?? '';
|
|
|
},
|
|
|
],
|
|
|
+ 'IS_AUTO' => [
|
|
|
+ 'header' => 'Is Auto', // 是否自动
|
|
|
+ 'value' => function ($row) {
|
|
|
+ return $row['IS_AUTO'] == 1 ? 'Yes' : 'No';
|
|
|
+ },
|
|
|
+ ],
|
|
|
];
|
|
|
}
|
|
|
return $this->columns;
|