Blame view

frontend/views/accounts/service.php 11.2 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
       */
9cc08528   Yarik   test
8
      use common\models\Currency;
e8236f44   Yarik   test
9
      use common\models\Specialization;
b95371cf   Yarik   test
10
      use common\models\User;
5f49082a   Yarik   test
11
      use common\models\UserInfo;
d02fd466   Yarik   test
12
      use kartik\select2\Select2;
e8236f44   Yarik   test
13
      use yii\helpers\ArrayHelper;
5f49082a   Yarik   test
14
      use yii\helpers\Html;
d02fd466   Yarik   test
15
      use yii\web\JsExpression;
5f49082a   Yarik   test
16
17
      use yii\widgets\ActiveForm;
  
8e5fa1e8   Виталий   tokar commit
18
      $this->title = 'Услуги';
5f49082a   Yarik   test
19
      $this->params[ 'breadcrumbs' ][] = $this->title;
51e0a262   Yarik   test
20
  ?>
8e5fa1e8   Виталий   tokar commit
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  <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">
9cc08528   Yarik   test
35
36
37
              <?=
                  $form->field($user_info, 'salary_currency')->label(false)->dropDownList(Currency::getCurrencyDropdown());
              ?>
8e5fa1e8   Виталий   tokar commit
38
              <?= $form->field($user_info, 'salary', [
9cc08528   Yarik   test
39
                  'template' => "{label}<br /><span class='admn-input-txt'>от</span>{input}<span class='admn-input-txt'>за час</span>\n{hint}\n{error}",
8e5fa1e8   Виталий   tokar commit
40
41
42
43
44
45
46
47
                  'options'  => [ 'class' => 'form-inline' ],
              ])
                  ->label('Стоимость работ')
                  ->textInput (['class'=> 'custom-input-2 custom-input-2-date','type'=>'number']);
              ?>
          </div>
      </div>
  
8e5fa1e8   Виталий   tokar commit
48
      <div class="input-blocks-wrapper">
e8236f44   Yarik   test
49
50
51
52
53
54
55
56
57
58
59
60
61
          <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
62
63
64
65
66
                                                  <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
67
68
69
70
71
72
73
74
75
76
77
                                              <?php endif;?>
                                          <?php endforeach; ?>
                                      </ul>
                                  </li>
                              <?php endif; ?>
                          <?php endforeach; ?>
  
                      </ul>
                  </li>
              <?php endforeach; ?>
          </ul>
8e5fa1e8   Виталий   tokar commit
78
79
      </div>
      <div class="input-blocks-wrapper">
d02fd466   Yarik   test
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
          <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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
          </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
116
117
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
                  ],
                      [
                      '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
138
139
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
                  ], [
                      '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
159
160
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
                  ], [
                      '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
179
180
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
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
222
223
224
225
                  ], [
                      '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
226
227
228
229
230
231
232
233
234
235
      <div class="input-blocks-wrapper">
          <div class="admin-save-btn style admin-save-btn-fix-line">
              <?= Html::submitButton('Сохранить') ?>
          </div>
      </div>
  
      <?php
          $form->end();
      ?>
  </div>