[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.0: Add "Reset to Open"
|
||||||
- 16.0.2.3.1: Remove Sale Order from batch on cancelation
|
- 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
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
"author": "BAKEUP,Niels Göttsch",
|
"author": "BAKEUP,Niels Göttsch",
|
||||||
"website": "https://ziemlichoptimal.de",
|
"website": "https://ziemlichoptimal.de",
|
||||||
"category": "Sale",
|
"category": "Sale",
|
||||||
"version": "16.0.2.3.1",
|
"version": "16.0.2.3.2",
|
||||||
"depends": ["sale", "product"],
|
"depends": ["sale", "product"],
|
||||||
"data": [
|
"data": [
|
||||||
"security/ir.model.access.csv",
|
"security/ir.model.access.csv",
|
||||||
|
|
|
||||||
|
|
@ -10,3 +10,4 @@
|
||||||
- 16.0.2.3.0: Add "Reset to Open"
|
- 16.0.2.3.0: Add "Reset to Open"
|
||||||
- 16.0.2.3.1: Remove Sale Order from batch on cancelation
|
- 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.0: Add “Reset to Open”</li>
|
||||||
<li>16.0.2.3.1: Remove Sale Order from batch on cancelation</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.4.0: Add Followers on In Progress & add tests</li>
|
||||||
|
<li>16.0.2.3.2: Add unique ids for confirm button</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="bug-tracker">
|
<div class="section" id="bug-tracker">
|
||||||
|
|
|
||||||
|
|
@ -85,22 +85,22 @@
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
name="action_confirm"
|
name="action_confirm"
|
||||||
id="action_confirm"
|
id="action_confirm_primary"
|
||||||
data-hotkey="v"
|
|
||||||
string="Confirm"
|
|
||||||
class="btn-secondary"
|
|
||||||
type="object"
|
|
||||||
attrs="{'invisible': [('state', 'not in',['open'])]}"
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
name="action_confirm"
|
|
||||||
id="action_confirm"
|
|
||||||
data-hotkey="v"
|
data-hotkey="v"
|
||||||
string="Confirm"
|
string="Confirm"
|
||||||
class="btn-primary"
|
class="btn-primary"
|
||||||
type="object"
|
type="object"
|
||||||
attrs="{'invisible': [('state', 'not in',['in_progress'])]}"
|
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
|
<button
|
||||||
id="create_invoices"
|
id="create_invoices"
|
||||||
name="%(sale.action_view_sale_advance_payment_inv)d"
|
name="%(sale.action_view_sale_advance_payment_inv)d"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue