Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lighting_reporting_vanguard_product/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Contributors

* Frank Cespedes <[email protected]>
* Eric Antones <[email protected]>
* Bijaya Kumal <[email protected]>

Maintainers
~~~~~~~~~~~
Expand Down
1 change: 0 additions & 1 deletion lighting_reporting_vanguard_product/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
from . import res_config_settings
from . import lighting_product_source_line
from . import lighting_product
30 changes: 0 additions & 30 deletions lighting_reporting_vanguard_product/models/lighting_product.py

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

* Frank Cespedes <[email protected]>
* Eric Antones <[email protected]>
* Bijaya Kumal <[email protected]>
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,7 @@ <h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
<li><a class="reference external" href="https://www.nuobit.com">NuoBiT</a>:<ul>
<li>Frank Cespedes &lt;<a class="reference external" href="mailto:fcespedes&#64;nuobit.com">fcespedes&#64;nuobit.com</a>&gt;</li>
<li>Eric Antones &lt;<a class="reference external" href="mailto:eantones&#64;nuobit.com">eantones&#64;nuobit.com</a>&gt;</li>
<li>Bijaya Kumal &lt;<a class="reference external" href="mailto:bkumal&#64;nuobit.com">bkumal&#64;nuobit.com</a>&gt;</li>
</ul>
</li>
</ul>
Expand Down
35 changes: 32 additions & 3 deletions lighting_reporting_vanguard_product/views/report_vanguard.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright NuoBiT Solutions - Eric Antones <[email protected]>
Copyright NuoBiT Solutions 2025 - Bijaya Kumal <[email protected]>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) -->
<odoo>
<template id="external_layout_lighting_vanguard">
Expand Down Expand Up @@ -167,12 +168,40 @@
/>
</td>
</tr>
<tr t-if="doc.finish_id or doc.finish2_id">
<tr t-if="doc.finish_id">
<td>
Finish
<t
t-if="doc.finish_type_id"
t-out="doc.finish_type_id.display_name"
/>
<t t-else="">
Finish 1
</t>
</td>
<td>
<span t-out="doc.finish_id.display_name" />
</td>
</tr>
<tr t-if="doc.finish2_id">
<td>
<t
t-if="doc.finish2_type_id"
t-out="doc.finish2_type_id.display_name"
/>
<t t-else="">
Finish 2
</t>
</td>
<td>
<span t-out="doc.finish2_id.display_name" />
</td>
</tr>
<tr t-if="doc.ral_id">
<td>
RAL
</td>
<td>
<span t-out="doc.get_finish_display()" />
<span t-out="doc.ral_id.display_name" />
</td>
</tr>
<tr t-if="doc.location_ids">
Expand Down