[IMP] nfu_wholesaler_exporter: show exporter in in_progress state
This commit is contained in:
parent
155c91051a
commit
a92326e511
5 changed files with 6 additions and 3 deletions
|
|
@ -48,6 +48,7 @@ Changelog
|
|||
- 16.0.1.0.1: Rename to CSV Exporter
|
||||
- 16.0.1.1.0: Add rounding for float values and remove zero lines
|
||||
- 16.0.1.2.0: Change limiter to ";" and only show exporter in closed state
|
||||
- 16.0.1.2.1: Show exporter in in_progress state as well
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"author": "BAKEUP",
|
||||
"website": "https://www.bakeup.org",
|
||||
"category": "Sale",
|
||||
"version": "16.0.1.2.0",
|
||||
"version": "16.0.1.2.1",
|
||||
"depends": ["sale_order_batch", "nfu_sale_order_batch_packaging"],
|
||||
"data": ["views/sale_order_batch_views.xml"],
|
||||
"license": "LGPL-3",
|
||||
|
|
|
|||
|
|
@ -3,3 +3,4 @@
|
|||
- 16.0.1.0.1: Rename to CSV Exporter
|
||||
- 16.0.1.1.0: Add rounding for float values and remove zero lines
|
||||
- 16.0.1.2.0: Change limiter to ";" and only show exporter in closed state
|
||||
- 16.0.1.2.1: Show exporter in in_progress state as well
|
||||
|
|
@ -409,6 +409,7 @@ Das ist aktuell der default_code, falls wir den mal prefixen, muss das hier ange
|
|||
<li>16.0.1.0.1: Rename to CSV Exporter</li>
|
||||
<li>16.0.1.1.0: Add rounding for float values and remove zero lines</li>
|
||||
<li>16.0.1.2.0: Change limiter to “;” and only show exporter in closed state</li>
|
||||
<li>16.0.1.2.1: Show exporter in in_progress state as well</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
type="object"
|
||||
string="Export Wholesaler CSV"
|
||||
class="oe_highlight"
|
||||
attrs="{'invisible': [('state', '!=','closed')]}"
|
||||
attrs="{'invisible': [('state', 'not in', ['in_progress','closed'])]}"
|
||||
/>
|
||||
</xpath>
|
||||
</field>
|
||||
|
|
|
|||
Loading…
Reference in a new issue