|
|
@@ -444,6 +444,42 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
|
|
|
'prop'=>'REAL_BONUS_GL',
|
|
|
],
|
|
|
],
|
|
|
+ 'BONUS_BS' => [
|
|
|
+ 'header' => '蓝星管理奖',
|
|
|
+ 'value' => function($row) {
|
|
|
+ return (new Price([
|
|
|
+ 'value' => $row['BONUS_BS'],
|
|
|
+ ]))->result();
|
|
|
+ },
|
|
|
+ 'headerOther' => [
|
|
|
+ 'width' => '120',
|
|
|
+ 'prop'=>'BONUS_BS',
|
|
|
+ ],
|
|
|
+ ],
|
|
|
+ 'ORI_BONUS_BS' => [
|
|
|
+ 'header' => '蓝星管理奖原金额',
|
|
|
+ 'value' => function($row) {
|
|
|
+ return (new Price([
|
|
|
+ 'value' => $row['ORI_BONUS_BS'],
|
|
|
+ ]))->result();
|
|
|
+ },
|
|
|
+ 'headerOther' => [
|
|
|
+ 'width' => '120',
|
|
|
+ 'prop'=>'ORI_BONUS_BS',
|
|
|
+ ],
|
|
|
+ ],
|
|
|
+ 'REAL_BONUS_BS' => [
|
|
|
+ 'header' => '实发蓝星管理奖',
|
|
|
+ 'value' => function($row) {
|
|
|
+ return (new Price([
|
|
|
+ 'value' => $row['REAL_BONUS_BS'],
|
|
|
+ ]))->result();
|
|
|
+ },
|
|
|
+ 'headerOther' => [
|
|
|
+ 'width' => '120',
|
|
|
+ 'prop'=>'REAL_BONUS_BS',
|
|
|
+ ],
|
|
|
+ ],
|
|
|
'BONUS_QY' => [
|
|
|
'header' => '团队奖',
|
|
|
'value' => function($row) {
|