|
4 | 4 | use hipanel\modules\stock\widgets\combo\ContactCombo;
|
5 | 5 | use hipanel\widgets\RefCombo;
|
6 | 6 | use hiqdev\yii2\daterangepicker\DateRangePicker;
|
7 |
| -use yii\bootstrap\Html; |
8 | 7 |
|
9 | 8 | /**
|
10 | 9 | * @var \hipanel\widgets\AdvancedSearch $search
|
|
50 | 49 |
|
51 | 50 | <div class="col-md-4 col-sm-6 col-xs-12">
|
52 | 51 | <div class="form-group">
|
53 |
| - <?= Html::tag('label', Yii::t('hipanel', 'Time'), ['class' => 'control-label']); ?> |
54 | 52 | <?= DateRangePicker::widget([
|
55 | 53 | 'model' => $search->model,
|
56 | 54 | 'attribute' => 'time_from',
|
57 | 55 | 'attribute2' => 'time_till',
|
58 | 56 | 'options' => [
|
59 | 57 | 'class' => 'form-control',
|
| 58 | + 'placeholder' => Yii::t('hipanel', 'Time'), |
60 | 59 | ],
|
61 | 60 | 'dateFormat' => 'yyyy-mm-dd',
|
62 | 61 | ]) ?>
|
|
66 | 65 | <?php if ($uiModel->representation === 'profit-report'): ?>
|
67 | 66 | <div class="col-md-4 col-sm-6 col-xs-12">
|
68 | 67 | <div class="form-group">
|
69 |
| - <?= Html::tag('label', Yii::t('hipanel:stock', 'Profit period'), ['class' => 'control-label']); ?> |
70 | 68 | <?= DateRangePicker::widget([
|
71 | 69 | 'model' => $search->model,
|
72 | 70 | 'attribute' => 'profit_time_from',
|
73 | 71 | 'attribute2' => 'profit_time_till',
|
74 | 72 | 'options' => [
|
75 | 73 | 'class' => 'form-control',
|
| 74 | + 'placeholder' => Yii::t('hipanel:stock', 'Profit period'), |
76 | 75 | ],
|
77 | 76 | 'dateFormat' => 'yyyy-mm-dd',
|
78 | 77 | ]) ?>
|
|
0 commit comments