/
home
/
sjslayjy
/
public_html
/
assets
/
resources
/
views
/
circle-store
/
Upload File
HOME
<style type="text/css"> table#table { border: 1px solid #b1b1b1; width: 100%; padding: 10px; } table#table1 { border-left: 1px solid #b1b1b1; width: 100%; border-right: 1px solid #b1b1b1; border-bottom: 1px solid #b1b1b1; } table#tablelist{ border-left: 1px solid #b1b1b1; width: 100%; border-right: 1px solid #b1b1b1; border-bottom: 1px solid #b1b1b1; } table#tablelist th { border: 1px solid #b1b1b1; text-align: center; } table#tablelist td{ border: 1px solid #b1b1b1; text-align: center; } td.logo > img { width: 100px; } td.logo { width: 5%; } td.center { width: 75%; text-align: center; } td.center > h2 { padding: 0; margin: 0; } td.center > p { margin: 0; padding: 5px 0; } td.address-left {border-right: 1px solid #b1b1b1;} td.address-right > table { width: 100%; } td.rowb { width: 100%; border-bottom: 1px solid #929292; } td.address-left > table { width: 100%; } #tablelist > tbody > tr.noboder > td:nth-child(1) { border-bottom: none; text-align: right; } table#footer { border: 1px solid #ccc; width: 100%; } table#footer td.footer-left { width: 50%; padding: 6px 10px; border-right: 1px solid #ccc; text-align: center; } table#footer td.footer-right { width: 50%; padding: 6px 10px; text-align: center; } td.footer-left > h3 { margin-bottom: 100px; } td.rowt { border-top: 1px solid #ccc; padding: 10px 0; } td.info-to { padding: 10px 0px; } p.signatory { margin-top: 70px; } tr.noboderleft > td { text-align: left !important; padding: 5px 5px; } #printInvoice{ float: right; } </style> <button onclick="window.print()" id="printInvoice" class="btn btn-info"><i class="fa fa-print"></i> Print</button> <div id="print-body"> <table id="table"> <tr> <!-- <td class="logo"><img src="http://aerial.shubhmuhurt.in/images/aerial-logo-print.png" /></td> --> <td class="logo"><img src="http://asset.aerialtelecom.in/images/new_logo/dashboard-logo-dark.png" /></td> <td class="center"> <h2>Aerial Telecom Solutions Pvt. Ltd.</h2> <p>{{$warehouse->address}}</p> <strong>GST NO. : {{$warehouse->gst_no}}</strong> </td> </tr> </table> <table id="table"> <tr> <td> <h2 style="text-align: center;margin: 10px 0;">Delivery Challan</h2> </td> </tr> </table> <table id="table1"> <tr> <td class="address-left"> <table> <tr> <td class="info-to"> <h3>Name & Address Of Consignee </h3> <p>ATS Service Engineer </p> <strong>{{$engineer['name']}} <br> {{$engineer['id']}}</strong><br> {{$engineer['MobileNo'] ?? '' }} </td> </tr> <tr > <td class="rowt"> <strong>Purpose</strong> : {{$delivery_transaction->purpose}} </td> </tr> </table> </td> <td class="address-right"> <strong>Challan No</strong> : <span>{{$delivery_transaction->delivery_challan_no}}</span> <br/><br/> <strong>Challan Date</strong> : <span>{{$delivery_transaction->created_at}}</span> </td> </tr> </table> <table id="tablelist"> <tr> <th>S No.</th> <th>Item Code</th> <th>Description</th> <th>Fresh Qty</th> <th>Repaired Qty</th> <th>Fresh Rate per unit</th> <th>Repaired Rate per unit</th> <th>Total Value</th> </tr> @foreach($delivery_transaction_items as $key => $item) <tr> <td>{{$key+1}}</td> <td>{{$item->spare_code}}</td> <td>{{$item->description}}</td> <td>{{$item->fresh_qty}}</td> <td>{{$item->repaired_qty}}</td> <td>{{$item->rate}} </td> <td>{{($item->rate*$item->repaired_rate)/100}} </td> <td>{{($item->rate*$item->fresh_qty)+ (($item->repaired_qty*$item->rate*$item->repaired_rate)/100)}} Rs</td> </tr> @endforeach <tr class="noboder"> <td colspan="7">Total</td> <td >{{$subtotal}} Rs</td> </tr> <tr class="noboderleft" style="text-align: left;"> <td colspan="8"><b>Amount In Word : <i>{{$number_in_word}}</i></b> </td> </tr> </table> <table id="table"> <tr> <td> <h2 style="text-align: center;margin: 10px 0;">NOT FOR SALE</h2> </td> </tr> </table> <table id="footer"> <tr> <td class="footer-left"> <p> <b>The above mentioned materials is received <br/> in order & good condition </b> </p> <p class="signatory">Receiver's Signature</p> </td> <td class="footer-right"> <h3>Aerial Telecom Solutions Pvt. Ltd.</h3> <p class="signatory">Authorised Signatory</p> </td> </tr> </table> </div>