-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
109 changed files
with
2,105 additions
and
2,268 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" ?> | ||
<odoo> | ||
<record model="ir.ui.view" id="product_alternative_tree_view"> | ||
<field name="name">product.alternative.tree</field> | ||
<field name="model">product.alternative</field> | ||
<field name="type">tree</field> | ||
<field name="arch" type="xml"> | ||
<tree editable="bottom"> | ||
<field name="product_tmpl_id" /> | ||
<field name="sequence" widget="handle" /> | ||
<field name="name" /> | ||
<field name="hide" /> | ||
</tree> | ||
</field> | ||
</record> | ||
<record model="ir.ui.view" id="product_alternative_form_view"> | ||
<field name="name">product.alternative.form</field> | ||
<field name="model">product.alternative</field> | ||
<field name="type">form</field> | ||
<field name="arch" type="xml"> | ||
<form string="Product Alternatives"> | ||
<field name="product_tmpl_id" /> | ||
<field name="name" /> | ||
<field name="hide" /> | ||
</form> | ||
</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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0" ?> | ||
<odoo> | ||
<record id="product_product_alternative_search_form_view" model="ir.ui.view"> | ||
<field name="name">product.product.search</field> | ||
<field name="model">product.product</field> | ||
<field name="inherit_id" ref="product.product_search_form_view" /> | ||
<field name="arch" type="xml"> | ||
<field name="name" position="after"> | ||
<field name="alternative_ids" /> | ||
<field | ||
name="variant_seller_ids" | ||
string="Vendor Code" | ||
filter_domain="[('seller_ids.product_code', 'ilike', self)]" | ||
/> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
<record id="product_view_search_catalog" model="ir.ui.view"> | ||
<field name="name">product.view.search.alternative.catalog</field> | ||
<field name="model">product.product</field> | ||
<field name="inherit_id" ref="product.product_view_search_catalog" /> | ||
<field name="arch" type="xml"> | ||
<field name="name" position="after"> | ||
<field name="alternative_ids" /> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
<record id="product_view_kanban_catalog" model="ir.ui.view"> | ||
<field name="name">product.view.kanban.catalog</field> | ||
<field name="model">product.product</field> | ||
<field name="inherit_id" ref="product.product_view_kanban_catalog" /> | ||
<field name="arch" type="xml"> | ||
<field name="product_template_attribute_value_ids" position="after"> | ||
<field name="alternative_ids" widget="many2many_tags" /> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
<record id="product_product_tree_alternative" model="ir.ui.view"> | ||
<field name="name">product.product.alternative.tree</field> | ||
<field name="model">product.product</field> | ||
<field name="inherit_id" ref="product.product_product_tree_view" /> | ||
<field name="arch" type="xml"> | ||
<field name="name" position="after"> | ||
<field name="alternative_code" /> | ||
</field> | ||
</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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" ?> | ||
<odoo> | ||
<record model="ir.ui.view" id="product_alternative_search_form_view"> | ||
<field name="name">product.template.search</field> | ||
<field name="model">product.template</field> | ||
<field name="inherit_id" ref="product.product_template_search_view" /> | ||
<field name="type">search</field> | ||
<field name="arch" type="xml"> | ||
<field name="name" position="after"> | ||
<field name="alternative_ids" /> | ||
<field | ||
name="variant_seller_ids" | ||
string="Vendor Code" | ||
filter_domain="[('seller_ids.product_code', 'ilike', self)]" | ||
/> | ||
</field> | ||
</field> | ||
</record> | ||
|
||
<record model="ir.ui.view" id="view_product_tree_alternative"> | ||
<field name="name">product.template.product.alternative.tree</field> | ||
<field name="model">product.template</field> | ||
<field name="inherit_id" ref="product.product_template_tree_view" /> | ||
<field name="type">tree</field> | ||
<field name="arch" type="xml"> | ||
<field name="name" position="after"> | ||
<field name="alternative_code" /> | ||
<field name="used_for" /> | ||
</field> | ||
</field> | ||
</record> | ||
<!-- <record id="view_product_template_form_alternative" model="ir.ui.view"> | ||
<field name="name">product.template.alternative.form</field> | ||
<field name="model">product.template</field> | ||
<field name="inherit_id" ref="product.product_template_only_form_view"/> | ||
--> | ||
<record id="product_template_form_view" model="ir.ui.view"> | ||
<field name="name">product.template.common.form</field> | ||
<field name="model">product.template</field> | ||
<field name="inherit_id" ref="product.product_template_form_view" /> | ||
<field name="priority" eval="16" /> | ||
<field name="arch" type="xml"> | ||
<group name="group_standard_price" position="after"> | ||
<group> | ||
<field name="alternative_code" /> | ||
<field name="used_for" /> | ||
</group> | ||
</group> | ||
<notebook position="inside"> | ||
<page string="Alternative"> | ||
<field name="alternative_ids" colspan="4" nolabel="1"> | ||
<tree editable="bottom"> | ||
<field name="sequence" widget="handle" /> | ||
<field name="name" /> | ||
<field name="hide" /> | ||
</tree> | ||
</field> | ||
</page> | ||
</notebook> | ||
</field> | ||
</record> | ||
|
||
|
||
</odoo> |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
{ | ||
"name": "Deltatech Delivery Status", | ||
"summary": "Carrier status on picking", | ||
"version": "17.0.2.0.5", | ||
"version": "17.0.2.0.6", | ||
"author": "Terrabit, Dorin Hongu", | ||
"website": "https://www.terrabit.ro", | ||
"support": "[email protected]", | ||
|
Oops, something went wrong.