-
-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] l10n_br_fiscal: add product.tag view
- Loading branch information
1 parent
c949d2b
commit d82c0a4
Showing
4 changed files
with
58 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- | ||
Copyright (C) 2024-Today - KMEE (<http://www.kmee.com.br>). | ||
@author Diego Paradeda <[email protected]> | ||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
--> | ||
<odoo> | ||
|
||
<record id="product_tag_search" model="ir.ui.view"> | ||
<field name="name">l10n_br_fiscal.product_tag.search</field> | ||
<field name="model">l10n_br_fiscal.product.tag</field> | ||
<field name="arch" type="xml"> | ||
<search string="Product Tag"> | ||
<field name="name" /> | ||
</search> | ||
</field> | ||
</record> | ||
|
||
<record id="product_tag_tree" model="ir.ui.view"> | ||
<field name="name">l10n_br_fiscal.product_tag.tree</field> | ||
<field name="model">l10n_br_fiscal.product.tag</field> | ||
<field name="arch" type="xml"> | ||
<tree editable="top"> | ||
<field name="name" /> | ||
<field name="create_uid" /> | ||
<field name="create_date" /> | ||
</tree> | ||
</field> | ||
</record> | ||
|
||
</odoo> |