Skip to content

Commit

Permalink
[FIX] sale_stock_info_popup_color: fix assets error
Browse files Browse the repository at this point in the history
closes #680

Signed-off-by: jok-adhoc <jok@adhoc.com.ar>
  • Loading branch information
augusto-weiss committed Jul 12, 2023
1 parent c29ddb3 commit 31f8a04
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sale_stock_info_popup_color/__manifest__.py
@@ -1,6 +1,6 @@
{
'name': 'Sale Stock Info Pop-up Color',
'version': "16.0.1.0.0",
'version': "16.0.1.1.0",
'category': 'Sales',
'sequence': 14,
'summary': '',
Expand Down
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<templates>
<t t-name="sale_stock.qtyAtDate" owl="1">
<div t-att-class="!props.record.data.display_qty_widget ? 'invisible' : ''">
<a t-att-tabindex="props.record.data.display_qty_widget ? '0' : '-1'" t-on-click="showPopup"
t-attf-class="fa fa-area-chart {{ props.record.data.free_qty_today &lt; props.record.data.qty_to_deliver ? 'text-danger' : 'text-primary' }}"/>
</div>
</t>
</templates>

0 comments on commit 31f8a04

Please sign in to comment.