| 1 | <?php |
||
| 16 | class BillType extends Type |
||
| 17 | { |
||
| 18 | public $defaultValues = [ |
||
| 19 | 'success' => [ |
||
| 20 | 'deposit,*', |
||
| 21 | 'monthly,*', |
||
| 22 | ], |
||
| 23 | 'info' => [ |
||
| 24 | 'overuse,*', |
||
| 25 | ], |
||
| 26 | 'warning' => [ |
||
| 27 | 'monthly,monthly', |
||
| 28 | 'exchange,*', |
||
| 29 | ], |
||
| 30 | 'primary' => [ |
||
| 31 | 'monthly,leasing', |
||
| 32 | ], |
||
| 33 | 'default' => [ |
||
| 34 | 'monthly,hardware', |
||
| 35 | 'correction,*', |
||
| 36 | ], |
||
| 37 | ]; |
||
| 38 | public $field = 'type'; |
||
| 39 | public $i18nDictionary = 'hipanel.finance.billTypes'; |
||
| 40 | |||
| 41 | protected function getModelLabel(): string |
||
| 47 | } |
||
| 48 |