Initial commit

This commit is contained in:
meusinfirmary
2025-04-22 14:31:37 +07:00
commit b7e852126c
115 changed files with 23188 additions and 0 deletions

View File

@ -0,0 +1,88 @@
<%- include('template/start', {asset: asset}) %>
<tr>
<td valign="middle" class="hero" style="padding: .25rem 0 .75rem 0">
<table>
<tr>
<td>
<div class="text" style="padding: 1.5rem 1rem; text-align: left; background-color: #fff; margin: 0 1.5rem; border: 1px solid #e4e4e4; border-top: 4px solid #e52920;">
<h4 style="font-size: 14x; color: #212B36">Halo <%= admin_name %>,</h4>
<h4 style="font-size: 14x; color: #212B36">
Transfer uang saku kepada driver <% drv_name %>, dengan rincian:
</h4>
<table style="font-size: 14x; color: #212B36">
<tbody>
<tr>
<th style="white-space: nowrap;">Order Code</th>
<td><%= trx_code %></td>
</tr>
<tr>
<th style="white-space: nowrap; vertical-align: top;">Pickup Zone</th>
<td style="vertical-align: top;">
<b><%= pickup_zone_title %></b> <br>
<%= pickup_zone_addr %>
</td>
</tr>
<% if(drop_zone_title !== ''){ %>
<tr>
<th style="white-space: nowrap; vertical-align: top;">Drop Zone</th>
<td style="vertical-align: top;">
<b><%= drop_zone_title %></b> <br>
<%= drop_zone_addr %>
</td>
</tr>
<% } %>
<tr>
<th>&nbsp;</th>
<td>&nbsp;</td>
</tr>
<tr>
<th>Nominal</th>
<td><%= pocket_total %></td>
</tr>
<tr>
<th>&nbsp;</th>
<td>&nbsp;</td>
</tr>
<tr>
<th>Bank</th>
<td><%= bank_name %></td>
</tr>
<tr>
<th>Kode</th>
<td><%= bank_code %></td>
</tr>
<% if(bank_branch_name !== ''){ %>
<tr>
<th>Cabang</th>
<td><%= bank_branch_name %></td>
</tr>
<% } %>
<tr>
<th style="white-space: nowrap;">Pemilik Rekening</th>
<td><%= bank_acc_name %></td>
</tr>
<tr>
<th style="white-space: nowrap;">No Rekening</th>
<td><%= bank_acc_no %></td>
</tr>
</tbody>
</table>
<br>
<h4 style="font-size: 14x; color: #212B36">
Segera lakukan pembayaran
</h4>
<h4 style="font-size: 14x; color: #212B36">
Butuh bantuan ? Segera hubungi layanan pelanggan Bonceng di <%= cs_phone %> atau email ke <%= cs_mail %>.
</h4>
<h4 style="font-size: 14x; color: #212B36">
Email ini dibuat secara otomatis. Mohon tidak mengirimkan balasan ke email ini.
</h4>
</div>
</td>
</tr>
</table>
</td>
</tr>
<%- include('template/end', {asset: asset, cs_mail: cs_mail, cs_phone: cs_phone, cs_addr: cs_addr}) %>