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>
|
</h2>
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
<div class="col-5">
|
<div class="col-12 text-right">
|
||||||
<div>
|
<span>
|
||||||
<font color="#fff">Origin:
|
<font color="#fff">Origin :
|
||||||
<t t-field="o.picking_type_id"/></font>
|
<span t-field="o.picking_type_id"/>
|
||||||
</div>
|
</font>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-4">
|
<div class="col-12 text:right">
|
||||||
<div>
|
|
||||||
<div>
|
<span>
|
||||||
<font color="#fff">Scheduled Date:<t t-field="o.scheduled_date"/>
|
<font color="#fff">Scheduled Date:<span t-field="o.scheduled_date"/>
|
||||||
</font>
|
</font>
|
||||||
|
|
||||||
</div>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -133,45 +134,48 @@
|
|||||||
t-if="not o.move_line_ids">
|
t-if="not o.move_line_ids">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th style="background-color:#3498DB !important;color:#FFF !important;">No</th>
|
<th colspan="2" style="background-color:#3498DB !important;color:#FFF !important;">No</th>
|
||||||
<th style="background-color:#3498DB !important;color:#FFF !important;">W/H</th>
|
<th colspan="2" style="background-color:#3498DB !important;color:#FFF !important;">W/H</th>
|
||||||
<th style="background-color:#3498DB !important;color:#FFF !important;">Code</th>
|
<th colspan="2" style="background-color:#3498DB !important;color:#FFF !important;">Code</th>
|
||||||
<th style="background-color:#3498DB !important;color:#FFF !important;">Product</th>
|
<th colspan="3" 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;">Ordered Quantity
|
||||||
</th>
|
</th>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr t-foreach="o.move_lines" t-as="move">
|
<tr t-foreach="o.move_lines" t-as="move">
|
||||||
<td>
|
<td colspan="2">
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td colspan="2">
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td colspan="2">
|
||||||
<span t-field="move.product_id.default_code"/>
|
<span t-field="move.product_id.default_code"/>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td colspan="3">
|
||||||
<span t-field="move.product_id"/>
|
<span t-field="move.product_id"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td colspan="2">
|
||||||
<span t-field="move.product_qty"/>
|
<span t-field="move.product_qty"/>
|
||||||
<span t-field="move.product_uom"/>
|
<span t-field="move.product_uom"/>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr rowspan="2">
|
<tr rowspan="2">
|
||||||
<td colspan="3">Transport</td>
|
<td colspan="6">Transport</td>
|
||||||
<td colspan="3">Material Received by</td>
|
<td colspan="3">Material Received by</td>
|
||||||
<td colspan="3">Deleivery Given by</td>
|
<td colspan="2">Deleivery Given by</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr rowspan="2">
|
<tr rowspan="2">
|
||||||
<td colspan="2">Deriver's Name</td>
|
<td colspan="6">Deriver's Name</td>
|
||||||
<td colspan="2">Signature</td>
|
<td colspan="3">Signature</td>
|
||||||
<td colspan="2">Signature</td>
|
<td colspan="2">Signature</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr rowspan="2">
|
<tr rowspan="2">
|
||||||
<td colspan="2">Truck No.</td>
|
<td colspan="6">Truck No.</td>
|
||||||
<td colspan="2">Date</td>
|
<td colspan="3">Date</td>
|
||||||
<td colspan="2">Date</td>
|
<td colspan="2">Date</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
Reference in New Issue
Block a user