mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 10:19:09 +02:00
work on sales report
This commit is contained in:
@@ -108,21 +108,22 @@
|
||||
</h2>
|
||||
<div>
|
||||
|
||||
<div class="col-5">
|
||||
<div>
|
||||
<font color="#fff">Origin:
|
||||
<t t-field="o.picking_type_id"/></font>
|
||||
<div class="col-12 text-right">
|
||||
<span>
|
||||
<font color="#fff">Origin :
|
||||
<span t-field="o.picking_type_id"/>
|
||||
</font>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-4">
|
||||
<div>
|
||||
<div>
|
||||
<font color="#fff">Scheduled Date:<t t-field="o.scheduled_date"/>
|
||||
<div class="col-12 text:right">
|
||||
|
||||
<span>
|
||||
<font color="#fff">Scheduled Date:<span t-field="o.scheduled_date"/>
|
||||
</font>
|
||||
|
||||
</div>
|
||||
</span>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -133,45 +134,48 @@
|
||||
t-if="not o.move_line_ids">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="background-color:#3498DB !important;color:#FFF !important;">No</th>
|
||||
<th style="background-color:#3498DB !important;color:#FFF !important;">W/H</th>
|
||||
<th style="background-color:#3498DB !important;color:#FFF !important;">Code</th>
|
||||
<th style="background-color:#3498DB !important;color:#FFF !important;">Product</th>
|
||||
<th style="background-color:#3498DB !important;color:#FFF !important;">Ordered Quantity
|
||||
<th colspan="2" style="background-color:#3498DB !important;color:#FFF !important;">No</th>
|
||||
<th colspan="2" style="background-color:#3498DB !important;color:#FFF !important;">W/H</th>
|
||||
<th colspan="2" style="background-color:#3498DB !important;color:#FFF !important;">Code</th>
|
||||
<th colspan="3" style="background-color:#3498DB !important;color:#FFF !important;">Product</th>
|
||||
<th colspan="2" style="background-color:#3498DB !important;color:#FFF !important;">Ordered Quantity
|
||||
</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr t-foreach="o.move_lines" t-as="move">
|
||||
<td>
|
||||
<td colspan="2">
|
||||
</td>
|
||||
<td>
|
||||
<td colspan="2">
|
||||
</td>
|
||||
<td>
|
||||
<td colspan="2">
|
||||
<span t-field="move.product_id.default_code"/>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<td colspan="3">
|
||||
<span t-field="move.product_id"/>
|
||||
</td>
|
||||
<td>
|
||||
<td colspan="2">
|
||||
<span t-field="move.product_qty"/>
|
||||
<span t-field="move.product_uom"/>
|
||||
</td>
|
||||
|
||||
|
||||
</tr>
|
||||
<tr rowspan="2">
|
||||
<td colspan="3">Transport</td>
|
||||
<td colspan="6">Transport</td>
|
||||
<td colspan="3">Material Received by</td>
|
||||
<td colspan="3">Deleivery Given by</td>
|
||||
<td colspan="2">Deleivery Given by</td>
|
||||
</tr>
|
||||
<tr rowspan="2">
|
||||
<td colspan="2">Deriver's Name</td>
|
||||
<td colspan="2">Signature</td>
|
||||
<td colspan="6">Deriver's Name</td>
|
||||
<td colspan="3">Signature</td>
|
||||
<td colspan="2">Signature</td>
|
||||
</tr>
|
||||
<tr rowspan="2">
|
||||
<td colspan="2">Truck No.</td>
|
||||
<td colspan="2">Date</td>
|
||||
<td colspan="6">Truck No.</td>
|
||||
<td colspan="3">Date</td>
|
||||
<td colspan="2">Date</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user