Blame view

frontend/views/cabinet/notifications.php 2.39 KB
caf85dfb   Yarik   Html
1
  <?php
7af4d34d   Alexey Boroda   -Kind of ready
2
      use common\models\User;
00b29a46   Alexey Boroda   -Royalty and table
3
      use frontend\models\Report;
caf85dfb   Yarik   Html
4
5
6
7
      use yii\web\View;
      
      /**
       * @var View                 $this
00b29a46   Alexey Boroda   -Royalty and table
8
       * @var Report[] $table
7af4d34d   Alexey Boroda   -Kind of ready
9
       * @var User $user
caf85dfb   Yarik   Html
10
       */
7af4d34d   Alexey Boroda   -Kind of ready
11
      $user = \Yii::$app->user->identity;
caf85dfb   Yarik   Html
12
13
14
15
16
17
18
19
20
21
  ?>
  <div class="style cab_content_list">
      <div class="cab_content_list-dropdown">
          <div class="style table-forms tables-1">
              <div class="title_forms">Звіт про загальну суму винагороди (з кількістю сповіщень)</div>
              <div class="style table-forms-wrapp">
                  <table class="table-1" cellpadding="0" cellspacing="0" border="0">
                      <tr>
                          <td><br/>п/п</td>
                          <td>Назва використаного твору</td>
caf85dfb   Yarik   Html
22
23
24
25
26
27
28
                          <td>Автор музики (П.І.Б.)</td>
                          <td>Автор тексту (П.І.Б.)</td>
                          <td width="150">Тривалість звучання<br/> (год.:хвил.: сек.)<br/>0:00:00</td>
                          <td>Роялті, грн</td>
                          <td>Кількість публічних сповіщень твору</td>
                          <td>Загальна Тривалість звучання твору<br/>(год.:хвил.: сек.) 0:00:00</td>
                      </tr>
00b29a46   Alexey Boroda   -Royalty and table
29
30
31
32
33
34
                      <?php
                        $i = 1;
                      foreach ($table as $row) {
                          ?>
                        <tr>
                          <td><?=$i?></td>
de0f55ab   Alexey Boroda   -Last
35
                          <td><span class="name-songs"><?=$row->intellectualProperty->title?></span></td>
00b29a46   Alexey Boroda   -Royalty and table
36
37
                          <td>-</td>
                          <td>-</td>
caf85dfb   Yarik   Html
38
                          <td></td>
7af4d34d   Alexey Boroda   -Kind of ready
39
40
41
42
43
44
45
                          <td><?php
                              if ($user->isAdmin()) {
                                echo $row->royalty;
                              } else {
                                echo $row->royalty * $row->intellectualProperty->creativeRoles[0]->part /100;
                              }
                              ?></td>
00b29a46   Alexey Boroda   -Royalty and table
46
                          <td><?=$row->count?></td>
caf85dfb   Yarik   Html
47
                          <td></td>
00b29a46   Alexey Boroda   -Royalty and table
48
49
50
51
52
                        </tr>
                          <?php
                          $i++;
                      }
                    ?>
caf85dfb   Yarik   Html
53
54
55
56
57
                  </table>
              </div>
          </div>
      </div>
  </div>