-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[18.0][FIX] web_pivot_computed_measure: fix tests
- Loading branch information
1 parent
48dc591
commit 6c4c31e
Showing
9 changed files
with
101 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<record id="pivot_partner_demo" model="res.partner"> | ||
<field name="name">Pivot Demo</field> | ||
<field name="company_id" ref="base.main_company" /> | ||
<field name="company_name">YourCompany</field> | ||
<field name="street">3575 Buena Vista Avenue</field> | ||
<field name="city">Eugene</field> | ||
<field name="state_id" model="res.country.state" search="[('code','=','OR')]" /> | ||
<field name="zip">97401</field> | ||
<field name="country_id" ref="base.us" /> | ||
<field name="tz">Europe/Brussels</field> | ||
<field name="email">[email protected]</field> | ||
<field name="phone">(441)-695-2344</field> | ||
<field name="partner_latitude">40.712776</field> | ||
<field name="partner_longitude">-74.005974</field> | ||
</record> | ||
|
||
<record id="demo_view_res_partner_report_pivot" model="ir.ui.view"> | ||
<field name="name">res.partner.report.pivot</field> | ||
<field name="model">res.partner</field> | ||
<field name="arch" type="xml"> | ||
<pivot string="Partners Table" sample="1"> | ||
<field name="active" type="col" /> | ||
<field name="name" type="row" /> | ||
</pivot> | ||
</field> | ||
</record> | ||
|
||
<record id="demo_action_res_partner_report_pivot" model="ir.actions.act_window"> | ||
<field name="name">Demo Pivot</field> | ||
<field name="res_model">res.partner</field> | ||
<field name="view_mode">pivot</field> | ||
<field | ||
name="view_id" | ||
ref="web_pivot_computed_measure.demo_view_res_partner_report_pivot" | ||
/> | ||
</record> | ||
|
||
<menuitem | ||
id="demo_menu_res_partner_report_pivot" | ||
action="web_pivot_computed_measure.demo_action_res_partner_report_pivot" | ||
sequence="10" | ||
/> | ||
</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 |
---|---|---|
|
@@ -3,3 +3,7 @@ | |
- Pedro M. Baeza | ||
- Ernesto Tejeda | ||
- Carlos Roca | ||
|
||
- [Kencove](https://www.kencove.com/): | ||
- Mohamed Alkobrosli | ||
|
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 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