/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<style type="text/css"> table#table { border: 1px solid #ccc; width: 100%; padding: 0 10px; } table#table1 { border-left: 1px solid #ccc; width: 100%; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; } table#tablelist{ border-left: 1px solid #ccc; width: 100%; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; } table#tablelist th { border: 1px solid #ccc; text-align: center; font-size: 12px; text-transform: capitalize; } table#tablelist td{ border-left: 1px solid #ccc; text-align: center; font-size: 12px; } td.logo > img { width: 100px; } td.logo { width: 2%; } td.center { width: 50%; text-align: center; } td.center > h1 { margin: 0 0px 10px 0; color: #737373; } td.center > h3 { margin: 0; } td.print-text { width: 25%; text-align: center; font-size: 30px; font-weight: 700; color: #b5b5b5; } td.center > h2 { padding: 0; margin: 0; text-decoration: underline; } td.center > p { margin: 0; padding: 5px 0; } td.address-left {border-right: 1px solid #ccc;width: 50%;} td.address-right > table { width: 100%; } td.rowb { width: 100%; border-bottom: 1px solid #ccc; } td.address-left > table { width: 100%; } #tablelist > tbody > tr.noboder > td:nth-child(1) { border-bottom: none; text-align: right; } table.innerTable{ width: 100%; } td.right { border-right: 1px solid #ccc; } table.innerTable td { border-bottom: 1px solid #ccc; width: 50%; padding: 10px 5px; } table#footer { border: 1px solid #ccc; width: 100%; } table#footer td.footer-left { width: 60%; padding: 6px 10px; border-right: 1px solid #ccc; font-size: 12px; } table#footer td.footer-right { width: 40%; padding: 6px 10px; text-align: center; } p.signatory { margin-top: 50px; } td.footer-left > h3 { margin-bottom: 100px; } tr.noboder > td { border-top: 1px solid #ccc; } tr.noboderleft> td { text-align: left !important; border-top: 1px solid #ccc; } </style> <button onclick="window.print()" id="printInvoice" class="btn btn-info"><i class="fa fa-print"></i> Print</button> <table id="table"> <tr> <td class="logo"><img src="http://asset.aerialtelecom.in/images/new_logo/dashboard-logo-dark.png" /></td> <td class="center"> <h1>Aerial Telecom Solutions Pvt. Ltd.</h1> <h3>Goods Receipt Note(GRN)</h3> </td> </tr> </table> <table id="table1"> <tr> <td class="address-left"> <table> <tr> <td> <table class="innerTable"> <tr> <td class="right"><strong>Supplier Name :</strong></td> <td><?php echo e($grn->supplier_name); ?></td> </tr> <tr> <td class="right"><strong>GRN Number :</strong></td> <td><?php echo e($grn->grn_no); ?></td> </tr> <tr> <td class="right"><strong>Gate Entry No :</strong></td> <td><?php echo e($grn->gateEntryReceiptNumber); ?></td> </tr> <tr> <td class="right"><strong>PO No :</strong></td> <td><?php echo e($grn->reference_number); ?></td> </tr> <tr> <td class="right"><strong>Delivery No :</strong></td> <td><?php echo e($grn->invoice_number); ?></td> </tr> </table> </td> </tr> </table> </td> <td class="address-right"> <table> <tr> <td> <table class="innerTable"> <tr> <td class="right"><strong>GRN Date :</strong></td> <td><?php echo e($grn->created_at); ?></td> </tr> <tr> <td class="right"><strong>Gate Entry Date :</strong></td> <td><?php echo e($grn->gateEntryDate); ?></td> </tr> <tr> <td class="right"><strong>Delivery Date :</strong></td> <td><?php echo e($grn->gateEntryDate); ?></td> </tr> <tr> <td class="right"><strong>GRN Status :</strong></td> <td><?php echo e($grn->status); ?></td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <table id="tablelist"> <tr> <th>S No.</th> <th>Item Code</th> <th>Item Description </th> <th>Unit</th> <!-- <th>Delivered Qty</th> <th>Received Qty</th> <th>Accepted Qty</th> <th>Rejected Qty</th> --> <th>PO Qty</th> <th>Balance Qty</th> <th>Moved Qty</th> <th>WareHouse</th> </tr> <?php $__currentLoopData = $grn_items; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $grn_item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($key+1); ?></td> <td><?php echo e($grn_item->item_code); ?></td> <td><?php echo e($grn_item->description); ?></td> <td> <?php if($grn_item->uom == 1): ?> PCS <?php elseif($grn_item->uom == 2): ?> LTR <?php elseif($grn_item->uom == 3): ?> SET <?php elseif($grn_item->uom == 4): ?> KG <?php elseif($grn_item->uom == 5): ?> SQM <?php elseif($grn_item->uom == 6): ?> MTR <?php elseif($grn_item->uom == 7): ?> ROLL <?php elseif($grn_item->uom == 8): ?> NOs <?php elseif($grn_item->uom == 9): ?> Km <?php elseif($grn_item->uom == 10): ?> Site <?php elseif($grn_item->uom == 11): ?> Pair <?php elseif($grn_item->uom == 12): ?> LS <?php elseif($grn_item->uom == 13): ?> Pack <?php elseif($grn_item->uom == 14): ?> Monthly <?php elseif($grn_item->uom == 15): ?> Quarterly <?php elseif($grn_item->uom == 16): ?> Half Yearly <?php elseif($grn_item->uom == 17): ?> Yearly <?php else: ?> <?php echo e($grn_item->uom); ?> <?php endif; ?> </td> <!-- <td><?php echo e($grn_item->uom); ?></td> --> <!-- <td><?php echo e($grn_item->delivered_qty); ?></td> <td><?php echo e($grn_item->received_qty); ?></td> <td><?php echo e($grn_item->accepted_qty); ?></td> <td><?php echo e($grn_item->rejected_qty); ?></td> --> <td><?php echo e($grn_item->po_qty); ?></td> <td><?php echo e($grn_item->available_in_grn); ?></td> <td><?php echo e($grn_item->quantity); ?></td> <td><?php echo e($grn->warehouse); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <tr> </tr> </table> <table id="footer"> <tr class="fsrow"> <td class="footer-left"></td> <td class="footer-right"> <h4>Aerial Telecom Solutions Pvt. Ltd.</h4> <p class="signatory">Authorised Signatory</p> </td> </tr> </table> <table class="lasttable"> <tr> <td class="fs"></td> <td class="mid"></td> <td class="ls"></td> </tr> </table> <?php /**PATH /var/www/assets/resources/views/admin/stock/print-mrn.blade.php ENDPATH**/ ?>