Blame view

frontend/views/accounts/service.php 9.94 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;
e8236f44   Yarik   test
11
      use yii\helpers\ArrayHelper;
5f49082a   Yarik   test
12
13
14
      use yii\helpers\Html;
      use yii\widgets\ActiveForm;
  
8e5fa1e8   Виталий   tokar commit
15
      $this->title = 'Услуги';
5f49082a   Yarik   test
16
      $this->params[ 'breadcrumbs' ][] = $this->title;
51e0a262   Yarik   test
17
  ?>
8e5fa1e8   Виталий   tokar commit
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  <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>
  
  
  
      <div class="input-blocks-wrapper">
e8236f44   Yarik   test
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
          <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): ?>
                                                  <li><a href="#"><?= Html::checkbox('User[specializationInput][]', in_array($child_second->specialization_id, ArrayHelper::getColumn($user->specializations,'specialization_id')),['value' => $child_second->specialization_id, 'label' =>$child_second->specialization_name])?></a></li>
                                              <?php endif;?>
                                          <?php endforeach; ?>
                                      </ul>
                                  </li>
                              <?php endif; ?>
                          <?php endforeach; ?>
  
                      </ul>
                  </li>
              <?php endforeach; ?>
          </ul>
8e5fa1e8   Виталий   tokar commit
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
      </div>
      <div class="input-blocks-wrapper">
          <div class="input-blocks" style="color: red">
              Гоеграфия работ?????????????
          </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
92
93
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
                  ],
                      [
                      '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
114
115
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
                  ], [
                      '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
135
136
                      1 => 'Да',
                      0 => 'Нет',
8e5fa1e8   Виталий   tokar commit
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_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
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
175
176
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
                  ], [
                      '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>
  
  
  
  
  
  
  
      <div class="input-blocks-wrapper">
          <div class="admin-save-btn style admin-save-btn-fix-line">
              <?= Html::submitButton('Сохранить') ?>
          </div>
      </div>
  
      <?php
          $form->end();
      ?>
  </div>