templates\_email\menu-degisiklik.html.twig line 1

Open in your IDE?
  1. {% apply inline_css %}
  2.     <h3>Müşteri Menü Değişikliği</h3>
  3.     <table class="ust-bilgi">
  4.         <tr>
  5.             <th>Cari Kodu</th>
  6.             <td>{{ app.user.cari.FirmaKodu }}</td>
  7.         </tr>
  8.         <tr>
  9.             <th>Cari Adı</th>
  10.             <td>{{ app.user.cari.FirmaAdi }} ({{ app.user.cari.Unvan2 }})</td>
  11.         </tr>
  12.         <tr>
  13.             <th>Dönem</th>
  14.             <td>{{ filter.ay }} {{ filter.yil }}</td>
  15.         </tr>
  16.         <tr>
  17.             <th>Öğün</th>
  18.             <td>{{ filter.ogun }}</td>
  19.         </tr>
  20.         <tr>
  21.             <th>Tür</th>
  22.             <td>{{ filter.turu }}</td>
  23.         </tr>
  24.     </table><br>
  25.     <table>
  26.         <tr>
  27.             <th rowspan="2">Tarih</th>
  28.             <th colspan="3" class="eski">ESKİ MENÜ</th>
  29.             <th colspan="3" class="yeni">GÜNCELLEME</th>
  30.         </tr>
  31.         <tr>
  32.             <th class="eski">Reçete Kodu</th>
  33.             <th class="eski">Reçete Adı</th>
  34.             <th class="eski">Oran</th>
  35.             <th class="yeni">Reçete Kodu</th>
  36.             <th class="yeni">Reçete Adı</th>
  37.             <th class="yeni">Oran</th>
  38.         </tr>
  39.         {% for yemek in fark %}
  40.             <tr>
  41.                 <td>{{ yemek.TARIH | date("d.m.Y") }}</td>
  42.                 <td>{{ yemek.ESKI.RECKODU }}</td>
  43.                 <td>{{ yemek.ESKI.RECADI }}</td>
  44.                 <td>{{ yemek.ESKI.ORAN }}</td>
  45.                 <td>{{ yemek.RECKODU }}</td>
  46.                 <td>{{ yemek.RECADI }}</td>
  47.                 <td>{{ yemek.ORAN }}</td>
  48.             </tr>
  49.         {% endfor %}
  50.     </table>
  51.     <style>
  52.         table, th, td {
  53.             border: 1px solid #777;
  54.             border-collapse: collapse
  55.         }
  56.         th, td {
  57.             padding: 2px 4px
  58.         }
  59.         th {
  60.             color: #FFF;
  61.             background-color: #555;
  62.             text-align: center;
  63.         }
  64.         th.yeni {
  65.             background-color: #080;
  66.         }
  67.         th.eski {
  68.             background-color: #A00;
  69.         }
  70.         tr:nth-child(even) {
  71.             background-color: #DDD;
  72.         }
  73.         .ust-bilgi th {
  74.             color: #FFF;
  75.             background-color: #000;
  76.             text-align: left;
  77.             border: 1px solid #eee;
  78.         }
  79.         .ust-bilgi td {
  80.             font-weight: bold;
  81.             border: 1px solid #666;
  82.         }
  83.     </style>
  84. {% endapply %}