1 | <?php |
||
9 | class BillHwPurchaseCombo extends Combo |
||
10 | { |
||
11 | /** {@inheritdoc} */ |
||
12 | public $type = 'bill/descr'; |
||
13 | |||
14 | /** {@inheritdoc} */ |
||
15 | public $name = 'descr'; |
||
16 | |||
17 | /** {@inheritdoc} */ |
||
18 | public $url = '/finance/bill/index'; |
||
19 | |||
20 | /** {@inheritdoc} */ |
||
21 | public $_return = ['id', 'client', 'sum', 'currency', 'descr', 'label', 'time']; |
||
22 | |||
23 | /** {@inheritdoc} */ |
||
24 | public $_rename = ['text' => 'label']; |
||
25 | |||
26 | /** {@inheritdoc} */ |
||
27 | public $_primaryFilter = 'descr'; |
||
28 | |||
29 | /** {@inheritdoc} */ |
||
30 | public function getPluginOptions($options = []) |
||
52 | |||
53 | /** {@inheritdoc} */ |
||
54 | public function getFilter() |
||
61 | } |
||
62 |