[FIX] sale_order_batch: unique ids for confirm button
This commit is contained in:
parent
8c3e607077
commit
4149c353df
5 changed files with 15 additions and 12 deletions
|
|
@ -50,6 +50,7 @@ Changelog
|
|||
- 16.0.2.3.0: Add "Reset to Open"
|
||||
- 16.0.2.3.1: Remove Sale Order from batch on cancelation
|
||||
- 16.0.2.4.0: Add Followers on In Progress & add tests
|
||||
- 16.0.2.3.2: Add unique ids for confirm button
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"author": "BAKEUP,Niels Göttsch",
|
||||
"website": "https://ziemlichoptimal.de",
|
||||
"category": "Sale",
|
||||
"version": "16.0.2.3.1",
|
||||
"version": "16.0.2.3.2",
|
||||
"depends": ["sale", "product"],
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
|
|
|
|||
|
|
@ -9,4 +9,5 @@
|
|||
- 16.0.2.2.1: Add lst_price to view
|
||||
- 16.0.2.3.0: Add "Reset to Open"
|
||||
- 16.0.2.3.1: Remove Sale Order from batch on cancelation
|
||||
- 16.0.2.4.0: Add Followers on In Progress & add tests
|
||||
- 16.0.2.4.0: Add Followers on In Progress & add tests
|
||||
- 16.0.2.3.2: Add unique ids for confirm button
|
||||
|
|
@ -406,6 +406,7 @@ anymore as log as they are part of a batch. Only Sale Orders in state Qutotation
|
|||
<li>16.0.2.3.0: Add “Reset to Open”</li>
|
||||
<li>16.0.2.3.1: Remove Sale Order from batch on cancelation</li>
|
||||
<li>16.0.2.4.0: Add Followers on In Progress & add tests</li>
|
||||
<li>16.0.2.3.2: Add unique ids for confirm button</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
|
|
|
|||
|
|
@ -85,22 +85,22 @@
|
|||
/>
|
||||
<button
|
||||
name="action_confirm"
|
||||
id="action_confirm"
|
||||
data-hotkey="v"
|
||||
string="Confirm"
|
||||
class="btn-secondary"
|
||||
type="object"
|
||||
attrs="{'invisible': [('state', 'not in',['open'])]}"
|
||||
/>
|
||||
<button
|
||||
name="action_confirm"
|
||||
id="action_confirm"
|
||||
id="action_confirm_primary"
|
||||
data-hotkey="v"
|
||||
string="Confirm"
|
||||
class="btn-primary"
|
||||
type="object"
|
||||
attrs="{'invisible': [('state', 'not in',['in_progress'])]}"
|
||||
/>
|
||||
<button
|
||||
name="action_confirm"
|
||||
id="action_confirm_secondary"
|
||||
data-hotkey="v"
|
||||
string="Confirm"
|
||||
class="btn-secondary"
|
||||
type="object"
|
||||
attrs="{'invisible': [('state', 'not in',['open'])]}"
|
||||
/>
|
||||
<button
|
||||
id="create_invoices"
|
||||
name="%(sale.action_view_sale_advance_payment_inv)d"
|
||||
|
|
|
|||
Loading…
Reference in a new issue