Skip to content

Commit b50a904

Browse files
authored
HP-2387: refactor DateTimePicker (#187)
* HP-2387: refactor DateTimePicker * HP-2387: refactor DateTimePicker * HP-2387: refactor DateTimePicker
1 parent feddbca commit b50a904

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

src/views/order/_form.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<?= $form->field($model, 'time')->widget(DateTimePicker::class, [
6060
'clientOptions' => [
6161
'todayBtn' => true,
62-
'format' => 'yyyy-mm-dd hh:ii', // @see https://github.com/sabinus52/bootstrap-datetimepicker?tab=readme-ov-file
62+
'dateFormat' => 'Y-m-d H:i'
6363
],
6464
]) ?>
6565
</div>

src/views/order/_search.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
use hipanel\modules\stock\widgets\combo\ContactCombo;
55
use hipanel\widgets\RefCombo;
66
use hiqdev\yii2\daterangepicker\DateRangePicker;
7-
use yii\bootstrap\Html;
87

98
/**
109
* @var \hipanel\widgets\AdvancedSearch $search
@@ -50,13 +49,13 @@
5049

5150
<div class="col-md-4 col-sm-6 col-xs-12">
5251
<div class="form-group">
53-
<?= Html::tag('label', Yii::t('hipanel', 'Time'), ['class' => 'control-label']); ?>
5452
<?= DateRangePicker::widget([
5553
'model' => $search->model,
5654
'attribute' => 'time_from',
5755
'attribute2' => 'time_till',
5856
'options' => [
5957
'class' => 'form-control',
58+
'placeholder' => Yii::t('hipanel', 'Time'),
6059
],
6160
'dateFormat' => 'yyyy-mm-dd',
6261
]) ?>
@@ -66,13 +65,13 @@
6665
<?php if ($uiModel->representation === 'profit-report'): ?>
6766
<div class="col-md-4 col-sm-6 col-xs-12">
6867
<div class="form-group">
69-
<?= Html::tag('label', Yii::t('hipanel:stock', 'Profit period'), ['class' => 'control-label']); ?>
7068
<?= DateRangePicker::widget([
7169
'model' => $search->model,
7270
'attribute' => 'profit_time_from',
7371
'attribute2' => 'profit_time_till',
7472
'options' => [
7573
'class' => 'form-control',
74+
'placeholder' => Yii::t('hipanel:stock', 'Profit period'),
7675
],
7776
'dateFormat' => 'yyyy-mm-dd',
7877
]) ?>

src/views/part/modals/sell-by-plan.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function setContactFieldByClientName(selectedClientId, selectedClientName) {
8080
],
8181
],
8282
]) ?>
83-
<?= $form->field($model, 'time')->widget(DateTimePicker::class, ['clientOptions' => ['todayBtn' => true]]) ?>
83+
<?= $form->field($model, 'time')->widget(DateTimePicker::class) ?>
8484
<?= $form->field($model, 'reason')->textInput() ?>
8585
</div>
8686
</div>

src/views/part/modals/sell.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ function setContactFieldByClientName(selectedClientId, selectedClientName) {
153153
<div class="col-md-6">
154154
<?= $form->field($model, 'time')->widget(DateTimePicker::class, [
155155
'clientOptions' => [
156-
'endDate' => date('Y-m-d'),
157-
'todayBtn' => true,
156+
'maxDate' => date('Y-m-d'),
158157
],
159158
]) ?>
160159
</div>

tests/playwright/e2e/manager/part/part-create.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import PartView from "@hipanel-module-stock/page/PartView";
77

88
function getPartData() {
99
return {
10-
partno: 'CHASSIS EPYC 7402P',
10+
partno: 'EPYC 7402P',
1111
src_id: 'TEST-DS-01',
1212
dst_id: 'TEST-DS-02',
1313
serials: UniqueId.generate(`MG_TEST_PART`),

0 commit comments

Comments
 (0)