-
-
Notifications
You must be signed in to change notification settings - Fork 583
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[11.0][PORT] pos_order_cancel_restaurant, pos_order_cancel (#483)
[CI] update travis for Odoo 11.0
- Loading branch information
Dinar
authored and
Ivan Yelizariev
committed
Nov 10, 2017
1 parent
96b9919
commit 7dfbf9f
Showing
12 changed files
with
44 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,5 +38,5 @@ | |
"post_init_hook": None, | ||
|
||
"auto_install": False, | ||
"installable": False, | ||
"installable": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo> | ||
<record model="ir.ui.view" id="view_pos_config_form"> | ||
<record model="ir.ui.view" id="pos_config_view_form"> | ||
<field name="name">pos.config.form.view.inherit</field> | ||
<field name="model">pos.config</field> | ||
<field name="inherit_id" ref="point_of_sale.view_pos_config_form"/> | ||
<field name="inherit_id" ref="point_of_sale.pos_config_view_form"/> | ||
<field name="arch" type="xml"> | ||
<xpath expr="//group[@name='features']" position="after"> | ||
<group name="refunds" string="Refunds / Cancellations" > | ||
<field name="allow_custom_reason"/> | ||
</group> | ||
</xpath> | ||
<xpath expr="//h2[@name='order']" position="before"> | ||
<h2 name="refunds">Refunds / Cancellations</h2> | ||
<div class="row mt16 o_settings_container" id="refunds"> | ||
<div id="allow_custom_reason" class="col-xs-12 col-md-6 o_setting_box"> | ||
<div class="o_setting_left_pane"> | ||
<field name="allow_custom_reason"/> | ||
</div> | ||
<div class="o_setting_right_pane"> | ||
<label for="allow_custom_reason"/> | ||
</div> | ||
</div> | ||
</div> | ||
</xpath> | ||
</field> | ||
</record> | ||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,5 +35,5 @@ | |
"post_init_hook": None, | ||
|
||
"auto_install": False, | ||
"installable": False, | ||
"installable": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters