|
@@ -260,8 +260,30 @@ class BalanceAuditList extends \common\libs\dataList\DataList implements DataLis
|
|
|
'name' => Yii::t('ctx', 'modelListFinanceBalanceAuditListAuditTime'),
|
|
'name' => Yii::t('ctx', 'modelListFinanceBalanceAuditListAuditTime'),
|
|
|
'other' => 'date'
|
|
'other' => 'date'
|
|
|
], // 审核时间
|
|
], // 审核时间
|
|
|
|
|
+
|
|
|
|
|
+ //4047 (2026/3/24 16:54 Ryan)
|
|
|
|
|
+ 'COUNTRY' => [
|
|
|
|
|
+ 'name' => Yii::t('ctx', 'country'),
|
|
|
|
|
+ 'other'=> 'select',
|
|
|
|
|
+ 'selectData'=> self::getCountry()
|
|
|
|
|
+ ],
|
|
|
];
|
|
];
|
|
|
}
|
|
}
|
|
|
return $this->filterTypes;
|
|
return $this->filterTypes;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public function getCountry()
|
|
|
|
|
+ {
|
|
|
|
|
+ $countries = Countries::getFromCache();
|
|
|
|
|
+
|
|
|
|
|
+ $data = [];
|
|
|
|
|
+ foreach ($countries as $country) {
|
|
|
|
|
+ $data[] = [
|
|
|
|
|
+ 'id' => $country['ID'],
|
|
|
|
|
+ 'name' => $country['NAME'],
|
|
|
|
|
+ ];
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ return $data;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|