-
-
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.
Merge pull request #1079 from Ommo73/12.0-pos_partner_deselection-por…
…ting commit is created by 👷♂️ Merge Bot: https://odoo-devops.readthedocs.io/en/latest/git/github-merge-bot.html
- Loading branch information
Showing
6 changed files
with
49 additions
and
18 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
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,35 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!--Copyright 2019 Kolushov Alexandr <https://it-projects.info/team/KolushovAlexandr> | ||
Copyright 2019 Artem Rafailov <https://it-projects.info/team/Ommo73> | ||
License MIT (https://opensource.org/licenses/MIT). --> | ||
<odoo> | ||
<record id="view_pos_config_form" model="ir.ui.view"> | ||
<field name="name">pos.config.form</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"> | ||
<field name="iface_display_categ_images" position="after"> | ||
<field name="customer_deselection_interval" /> | ||
</field> | ||
<xpath | ||
expr="//h2[text()='Order Interface']/following::div[hasclass('o_settings_container')]" | ||
position="after" | ||
> | ||
<h2>Deselection interval</h2> | ||
<div class="row mt16 o_settings_container"> | ||
<div id="category_reference" class="col-12 col-lg-6 o_setting_box"> | ||
<div class="o_setting_left_pane"> | ||
<field name="customer_deselection_interval" /> | ||
</div> | ||
<div class="o_setting_right_pane"> | ||
<label | ||
for="customer_deselection_interval" | ||
string="Customer deselection interval" | ||
/> | ||
<div class="text-muted"> | ||
Set interval for customer deselection | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</xpath> | ||
</field> | ||
</record> | ||
</odoo> |