Blame view

frontend/views/accounts/service.php 11.1 KB
51e0a262   Yarik   test
1
  <?php
5f49082a   Yarik   test
2
      /**
b95371cf   Yarik   test
3
       * @var User               $user
5f49082a   Yarik   test
4
5
       * @var UserInfo           $user_info
       * @var string[]           $specialization
5f49082a   Yarik   test
6
       * @var string[]           $payment
5f49082a   Yarik   test
7
       */
e8236f44   Yarik   test
8
      use common\models\Specialization;
b95371cf   Yarik   test
9
      use common\models\User;
5f49082a   Yarik   test
10
      use common\models\UserInfo;
d02fd466   Yarik   test
11
      use kartik\select2\Select2;
e8236f44   Yarik   test
12
      use yii\helpers\ArrayHelper;
5f49082a   Yarik   test
13
      use yii\helpers\Html;
d02fd466   Yarik   test
14
      use yii\web\JsExpression;
5f49082a   Yarik   test
15
16
      use yii\widgets\ActiveForm;
  
8e5fa1e8   Виталий   tokar commit
17
      $this->title = 'Услуги';
5f49082a   Yarik   test
18
      $this->params[ 'breadcrumbs' ][] = $this->title;
51e0a262   Yarik   test
19
  ?>
8e5fa1e8   Виталий   tokar commit
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
  <div class="login-left-column-title style">
      <table cellpadding="0" cellspacing="0" border="0">
          <tr>
              <td><?= $this->title ?></td>
              <td style="font-size: 13px; color: #b7b7b7;padding-left: 15px;">Рекомендуем детально заполнить для исполнителя. Это сильно влияет на количество заказов.</td>
          </tr>
      </table>
  </div>
  <div class="admin-service-wr style">
      <?php
          $form = ActiveForm::begin();
      ?>
      <div class="input-blocks-wrapper">
          <div class="input-blocks">
              <?= $form->field($user_info, 'salary', [
                  'template' => "{label}<br /><span class='admn-input-txt'>от</span>{input}<span class='admn-input-txt'><span style='color: red'>ВЫБОР ВАЛЮТЫ!!!!!!!</span>за час</span>\n{hint}\n{error}",
                  'options'  => [ 'class' => 'form-inline' ],
              ])
                  ->label('Стоимость работ')
                  ->textInput (['class'=> 'custom-input-2 custom-input-2-date','type'=>'number']);
              ?>
          </div>
      </div>
  
8e5fa1e8   Виталий   tokar commit
44
      <div class="input-blocks-wrapper">
e8236f44   Yarik   test
45
46
47
48
49
50
51
52
53
54
55
56
57
          <ul class="content-menu-first">
              <?php foreach($specializations as $specialization):?>
                  <li data-img="<?= $specialization->image?>">
                      <span data-menu-bg="<?= $specialization->background ?>"  style="background: <?= $specialization->background ?>"></span><a href="#"><?= $specialization->specialization_name?></a>
                      <ul>
                          <?php  foreach($specialization->children as $child_first):?>
  
                              <?php if($child_first instanceof Specialization):?>
                                  <li>
                                      <a href="#"><?= $child_first->specialization_name?></a>
                                      <ul>
                                          <?php foreach($child_first->children as $child_second):?>
                                              <?php if($child_first instanceof Specialization): ?>
44bb2fe3   Yarik   test
58
59
60
61
62
                                                  <li>
                                                      <a href="#">
                                                          <?= $form->field($user, "specializationInput[{$child_second->specialization_id}]")->checkbox(['value' => $child_second->specialization_id, 'label' => $child_second->specialization_name, 'uncheck' => null, 'checked' => 'checked']) ?>
                                                      </a>
                                                  </li>
e8236f44   Yarik   test
63
64
65
66
67
68
69
70
71
72
73
                                              <?php endif;?>
                                          <?php endforeach; ?>
                                      </ul>
                                  </li>
                              <?php endif; ?>
                          <?php endforeach; ?>
  
                      </ul>
                  </li>
              <?php endforeach; ?>
          </ul>
8e5fa1e8   Виталий   tokar commit
74
75
      </div>
      <div class="input-blocks-wrapper">
d02fd466   Yarik   test
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
          <div class="input-blocks">
              <?=
                  $form->field($user_info, 'geographies')->widget(Select2::classname(), [
                      'options' => ['placeholder' => 'Выбор города ...', 'multiple' => true],
                      'pluginOptions' => [
                          'allowClear' => true,
                          'minimumInputLength' => 3,
                          'ajax' => [
                              'url' => \yii\helpers\Url::to(['site/city']),
                              'dataType' => 'json',
                              'data' => new JsExpression('function(params) { return {q:params.term}; }')
                          ],
                          'escapeMarkup' => new JsExpression('function (markup) { return markup; }'),
                          'templateResult' => new JsExpression('function(city) { return city.text; }'),
                          'templateSelection' => new JsExpression('function (city) { return city.text; }'),
                      ],
                  ]);
              ?>
8e5fa1e8   Виталий   tokar commit
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
          </div>
      </div>
      <div class="input-blocks-wrapper">
          <div class="input-blocks">
              <?= $form->field($user_info, 'guarantee', [
                  'template' => "{label}<br />{input}<span class='admn-input-txt'>лет</span>\n{hint}\n{error}",
                  'options'  => [ 'class' => 'form-inline' ],
              ])
                  ->label('Гарантия качества работ')
                  ->textInput (['class'=> 'custom-input-2 custom-input-2-date custom-input-2-margin-r','type'=>'number']) ?>
          </div>
      </div>
  
      <div class="input-blocks-wrapper">
          <div class="input-blocks">
              <?= $form->field($user_info, 'contract', [ 'options' => [ 'class' => 'form-inline' ] ])
                  ->label('Работа по договору')
                  ->radioList([
e8236f44   Yarik   test
112
113
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
                  ],
                      [
                      'item' => function($index, $label, $name, $checked, $value) {
                          $return = '<div class="admin-who-check">';
                          $return .= '<input class="custom-radio" id="select_admin_doc'.$value.'" type="radio" name="' . $name . '" value="' . $value . '" '.($checked ? "checked" :"").' >';
                          $return .= '<label for="select_admin_doc'.$value.'" >';
                          $return .= '<span></span>' . ucwords($label);
                          $return .= '</label>';
                          $return .= '</div>';
                          return $return;
                      }
                  ]) ?>
          </div>
      </div>
  
      <div class="input-blocks-wrapper">
          <div class="input-blocks">
              <?= $form->field($user_info, 'estimate', [ 'options' => [ 'class' => 'form-inline' ] ])
                  ->label('Предоставляете смету')
                  ->radioList([
e8236f44   Yarik   test
134
135
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
                  ], [
                      'item' => function($index, $label, $name, $checked, $value) {
                          $return = '<div class="admin-who-check">';
                          $return .= '<input class="custom-radio" id="select_admin_estimate'.$value.'" type="radio" name="' . $name . '" value="' . $value . '" '.($checked ? "checked" :"").' >';
                          $return .= '<label for="select_admin_estimate'.$value.'" >';
                          $return .= '<span></span>' . ucwords($label);
                          $return .= '</label>';
                          $return .= '</div>';
                          return $return;
                      }
                  ]) ?>
          </div>
      </div>
  
      <div class="input-blocks-wrapper">
          <div class="input-blocks">
              <?= $form->field($user_info, 'purchase', [ 'options' => [ 'class' => 'form-inline' ] ])
                  ->label('Делаете сами закупку материалов')
                  ->radioList([
e8236f44   Yarik   test
155
156
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
                  ], [
                      'item' => function($index, $label, $name, $checked, $value) {
                          $return = '<div class="admin-who-check">';
                          $return .= '<input class="custom-radio" id="select_admin_purchase'.$value.'" type="radio" name="' . $name . '" value="' . $value . '" '.($checked ? "checked" :"").' >';
                          $return .= '<label for="select_admin_purchase'.$value.'" >';
                          $return .= '<span></span>' . ucwords($label);
                          $return .= '</label>';
                          $return .= '</div>';
                          return $return;
                      }
                  ]) ?>
          </div>
      </div>
      <div class="input-blocks-wrapper">
          <div class="input-blocks">
              <?= $form->field($user_info, 'delivery', [ 'options' => [ 'class' => 'form-inline' ] ])
                  ->label('Занимаетесь сами доставкой материалов')
                  ->radioList([
e8236f44   Yarik   test
175
176
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
                  ], [
                      'item' => function($index, $label, $name, $checked, $value) {
                          $return = '<div class="admin-who-check">';
                          $return .= '<input class="custom-radio" id="select_admin_delivery'.$value.'" type="radio" name="' . $name . '" value="' . $value . '" '.($checked ? "checked" :"").' >';
                          $return .= '<label for="select_admin_delivery'.$value.'" >';
                          $return .= '<span></span>' . ucwords($label);
                          $return .= '</label>';
                          $return .= '</div>';
                          return $return;
                      }
                  ]) ?>
          </div>
      </div>
  
      <div class="input-blocks-wrapper">
          <div class="input-blocks">
              <?= $form->field($user_info, 'prepayment', [
                  'template' => "{label}<br />{input}<span class='admn-input-txt'>%</span>\n{hint}\n{error}",
                  'options'  => [ 'class' => 'form-inline' ],
              ])
                  ->label('Минимальная предоплата за работы')
                  ->textInput (['class'=> 'custom-input-2 custom-input-2-date custom-input-2-margin-r','type'=>'number'])?>
          </div>
      </div>
  
      <div class="input-blocks-wrapper style border-general">
          <div class="input-blocks">
              <?= $form->field($user, 'paymentInput', [ 'template' => "{label}\n{input}\n{error}" ])
                  ->label('Способы оплаты')
                  ->checkboxList($payment,
                      [
                          'item' => function($index, $label, $name, $checked, $value) {
                              $return = '<div class="admin-who-check-payment">';
                              $return .= '<input class="custom-check" id="select_admin_payment'.$value.'" type="checkbox" name="' . $name . '" value="' . $value . '" '.($checked ? "checked" :"").' >';
                              $return .= '<label for="select_admin_payment'.$value.'" >';
                              $return .= '<span></span>' . ucwords($label);
                              $return .= '</label>';
                              $return .= '</div>';
                              return $return;
                          }
                      ]
                  ) ?>
          </div>
      </div>
  
8e5fa1e8   Виталий   tokar commit
222
223
224
225
226
227
228
229
230
231
      <div class="input-blocks-wrapper">
          <div class="admin-save-btn style admin-save-btn-fix-line">
              <?= Html::submitButton('Сохранить') ?>
          </div>
      </div>
  
      <?php
          $form->end();
      ?>
  </div>