Jagdish Panchal (Open ERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-split_extended_view-jap into
lp:~openerp-dev/openobject-addons/trunk-split_extended_view.
Requested reviews:
OpenERP R&D Team (openerp-dev)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-split_extended_view-jap/+merge/97346
Hello
crm, sale, crm_claim, crm_helpdesk, crm_funraising, document, wiki, purchase,
stock,
event,project,project_issue, hr.applicant,hr_expense: Apply the group_no_one on
fields (create_date,write_date,date_open,user_valid...) in tree,form and search
view.
Thanks,
JAP
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-split_extended_view-jap/+merge/97346
Your team OpenERP R&D Team is requested to review the proposed merge of
lp:~openerp-dev/openobject-addons/trunk-split_extended_view-jap into
lp:~openerp-dev/openobject-addons/trunk-split_extended_view.
=== modified file 'crm/crm_lead_view.xml'
--- crm/crm_lead_view.xml 2012-02-13 15:27:55 +0000
+++ crm/crm_lead_view.xml 2012-03-14 06:47:18 +0000
@@ -178,10 +178,10 @@
</group>
<group colspan="2" col="2">
<separator string="Dates" colspan="2" col="2"/>
- <field name="create_date"/>
- <field name="write_date"/>
- <field name="date_open"/>
- <field name="date_closed"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="write_date" groups="base.group_no_one"/>
+ <field name="date_open" groups="base.group_no_one"/>
+ <field name="date_closed" groups="base.group_no_one"/>
</group>
<group colspan="2" col="2">
<separator string="Mailings" colspan="2" col="2"/>
@@ -190,8 +190,8 @@
</group>
<group colspan="2" col="2">
<separator string="Statistics" colspan="2" col="2"/>
- <field name="day_open"/>
- <field name="day_close"/>
+ <field name="day_open" groups="base.group_no_one"/>
+ <field name="day_close" groups="base.group_no_one"/>
</group>
</page>
</notebook>
@@ -208,7 +208,7 @@
<field name="arch" type="xml">
<tree string="Leads" colors="blue:state=='pending';grey:state in ('cancel', 'done')">
<field name="date_deadline" invisible="1"/>
- <field name="create_date"/>
+ <field name="create_date" groups="base.group_no_one"/>
<field name="name" string="Subject"/>
<field name="contact_name"/>
<field name="country_id" invisible="context.get('invisible_country', True)" />
@@ -419,7 +419,7 @@
<filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
<separator orientation="vertical"/>
<filter string="Creation" help="Create date" icon="terp-go-month"
- domain="[]" context="{'group_by':'create_date'}" />
+ domain="[]" context="{'group_by':'create_date'}" groups="base.group_no_one"/>
</group>
</search>
</field>
@@ -572,16 +572,16 @@
<page string="Extra Info" groups="base.group_extended">
<group col="2" colspan="2">
<separator string="Dates" colspan="2"/>
- <field name="create_date"/>
- <field name="write_date"/>
- <field name="date_closed"/>
- <field name="date_open"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="write_date" groups="base.group_no_one"/>
+ <field name="date_closed" groups="base.group_no_one"/>
+ <field name="date_open" groups="base.group_no_one"/>
</group>
<group col="2" colspan="2">
<separator string="Misc" colspan="2"/>
<field name="active"/>
- <field name="day_open"/>
- <field name="day_close"/>
+ <field name="day_open" groups="base.group_no_one"/>
+ <field name="day_close" groups="base.group_no_one"/>
<field name="referred"/>
</group>
<separator colspan="4" string="References"/>
@@ -601,7 +601,7 @@
<field name="arch" type="xml">
<tree string="Opportunities" colors="blue:state=='pending' and not(date_deadline and (date_deadline < current_date));gray:state in ('cancel', 'done');red:date_deadline and (date_deadline < current_date)">
<field name="date_deadline" invisible="1"/>
- <field name="create_date"/>
+ <field name="create_date" groups="base.group_no_one"/>
<field name="name" string="Opportunity"/>
<field name="partner_id" string="Customer"/>
<field name="country_id" invisible="context.get('invisible_country', True)" />
@@ -682,7 +682,7 @@
<filter string="Channel" icon="terp-call-start" domain="[]" context="{'group_by':'channel_id'}" />
<filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
<separator orientation="vertical" />
- <filter string="Creation" icon="terp-go-month" domain="[]" context="{'group_by':'create_date'}" />
+ <filter string="Creation" icon="terp-go-month" domain="[]" context="{'group_by':'create_date'}" groups="base.group_no_one"/>
<filter string="Exp.Closing" icon="terp-go-month" help="Expected Closing" domain="[]" context="{'group_by':'date_deadline'}" />
</group>
</search>
=== modified file 'crm_claim/crm_claim_view.xml'
--- crm_claim/crm_claim_view.xml 2012-02-13 15:27:55 +0000
+++ crm_claim/crm_claim_view.xml 2012-03-14 06:47:18 +0000
@@ -49,7 +49,7 @@
<field name="categ_id" string="Type" select="1"/>
<field name="stage_id" invisible="1"/>
<field name="date_deadline" invisible="1"/>
- <field name="date_closed" invisible="1"/>
+ <field name="date_closed" invisible="1" groups="base.group_no_one"/>
<field name="state"/>
<button name="case_open" string="Open"
states="draft,pending" type="object"
@@ -132,9 +132,9 @@
</group>
<group colspan="2" col="2">
<separator colspan="2" string="Dates"/>
- <field name="create_date"/>
- <field name="date_closed"/>
- <field name="write_date"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="date_closed" groups="base.group_no_one"/>
+ <field name="write_date" groups="base.group_no_one"/>
</group>
<group colspan="2" col="2">
@@ -245,7 +245,7 @@
context="{'group_by':'date_deadline'}" />
<filter string="Closure" icon="terp-go-month"
domain="[]" help="Date Closed"
- context="{'group_by':'date_closed'}" />
+ context="{'group_by':'date_closed'}" groups="base.group_no_one"/>
</group>
</search>
</field>
=== modified file 'crm_fundraising/crm_fundraising_view.xml'
--- crm_fundraising/crm_fundraising_view.xml 2011-12-19 16:54:40 +0000
+++ crm_fundraising/crm_fundraising_view.xml 2012-03-14 06:47:18 +0000
@@ -164,9 +164,9 @@
</group>
<group col="2" colspan="2">
<separator colspan="4" string="Dates"/>
- <field name="create_date"/>
- <field name="date_closed"/>
- <field name="duration"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="date_closed" groups="base.group_no_one"/>
+ <field name="duration" groups="base.group_no_one"/>
</group>
<newline/>
<group colspan="4" col="2">
=== modified file 'crm_helpdesk/crm_helpdesk_view.xml'
--- crm_helpdesk/crm_helpdesk_view.xml 2011-12-19 16:54:40 +0000
+++ crm_helpdesk/crm_helpdesk_view.xml 2012-03-14 06:47:18 +0000
@@ -118,9 +118,9 @@
<page string="Extra Info" groups="base.group_extended">
<group colspan="2" col="2">
<separator colspan="4" string="Dates"/>
- <field name="create_date"/>
- <field name="write_date"/>
- <field name="date_closed"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="write_date" groups="base.group_no_one"/>
+ <field name="date_closed" groups="base.group_no_one"/>
</group>
<group colspan="2" col="2">
<separator colspan="4" string="Misc"/>
=== modified file 'document/document_view.xml'
--- document/document_view.xml 2012-02-13 15:27:55 +0000
+++ document/document_view.xml 2012-03-14 06:47:18 +0000
@@ -266,13 +266,13 @@
</group>
<group col="2" colspan="2" groups="base.group_extended">
<separator string="Created" colspan="2"/>
- <field name="create_uid" readonly="1"/>
- <field name="create_date" readonly="1"/>
+ <field name="create_uid" readonly="1" groups="base.group_no_one"/>
+ <field name="create_date" readonly="1" groups="base.group_no_one"/>
</group>
<group col="2" colspan="2" groups="base.group_extended">
<separator string="Modified" colspan="2"/>
- <field name="write_uid" readonly="1"/>
- <field name="write_date" readonly="1"/>
+ <field name="write_uid" readonly="1" groups="base.group_no_one"/>
+ <field name="write_date" readonly="1" groups="base.group_no_one"/>
</group>
</page>
<page string="Indexed Content - experimental" groups="base.group_extended">
@@ -335,8 +335,8 @@
<field name="parent_id" />
<field name="user_id"/>
<field name="company_id"/>
- <field name="create_date"/>
- <field name="write_date"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="write_date" groups="base.group_no_one"/>
<field name="partner_id" groups="base.group_extended" />
<field name="type" groups="base.group_extended"/>
</tree>
=== modified file 'event/event_view.xml'
--- event/event_view.xml 2012-03-01 10:23:17 +0000
+++ event/event_view.xml 2012-03-14 06:47:18 +0000
@@ -302,7 +302,7 @@
<group colspan="2" col="2" groups="base.group_extended">
<separator string="Dates" colspan="2"/>
<field name="create_date"/>
- <field name="date_closed"/>
+ <field name="date_closed" groups="base.group_no_one"/>
<field name="event_begin_date" />
<field name="event_end_date" />
</group>
=== modified file 'hr_expense/hr_expense_view.xml'
--- hr_expense/hr_expense_view.xml 2012-01-03 12:19:38 +0000
+++ hr_expense/hr_expense_view.xml 2012-03-14 06:47:18 +0000
@@ -116,9 +116,9 @@
</group>
<group col="2" colspan="2">
<separator colspan="2" string="Validation"/>
- <field name="date_confirm" readonly = "1"/>
- <field name="date_valid" readonly = "1"/>
- <field name="user_valid"/>
+ <field name="date_confirm" readonly = "1" groups="base.group_no_one"/>
+ <field name="date_valid" readonly = "1" groups="base.group_no_one"/>
+ <field name="user_valid" groups="base.group_no_one"/>
</group>
<separator colspan="4" string="Notes"/>
<field colspan="4" name="note" nolabel="1"/>
=== modified file 'hr_recruitment/hr_recruitment_view.xml'
--- hr_recruitment/hr_recruitment_view.xml 2011-12-21 13:10:28 +0000
+++ hr_recruitment/hr_recruitment_view.xml 2012-03-14 06:47:18 +0000
@@ -42,7 +42,7 @@
<field name="type">tree</field>
<field name="arch" type="xml">
<tree string="Applicants" colors="grey:state in ('cancel','done');blue:state=='pending'">
- <field name="create_date"/>
+ <field name="create_date" groups="base.group_no_one"/>
<field name="name" string="Subject"/>
<field name="partner_name"/>
<field name="email_from"/>
@@ -126,10 +126,10 @@
</group>
<group col="2" colspan="2">
<separator colspan="2" string="Dates"/>
- <field name="create_date"/>
- <field name="write_date"/>
- <field name="date_closed"/>
- <field name="date_open"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="write_date" groups="base.group_no_one"/>
+ <field name="date_closed" groups="base.group_no_one"/>
+ <field name="date_open" groups="base.group_no_one"/>
</group>
<separator colspan="4" string="Status"/>
<group col="8" colspan="4">
@@ -229,7 +229,7 @@
<filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
<filter string="Source" icon="terp-face-plain" domain="[]" context="{'group_by':'source_id'}"/>
<separator orientation="vertical"/>
- <filter string="Creation Date" icon="terp-go-month" domain="[]" context="{'group_by':'create_date'}"/>
+ <filter string="Creation Date" icon="terp-go-month" domain="[]" context="{'group_by':'create_date'}" groups="base.group_no_one"/>
</group>
</search>
</field>
=== modified file 'project/project_view.xml'
--- project/project_view.xml 2012-02-13 15:27:55 +0000
+++ project/project_view.xml 2012-03-14 06:47:18 +0000
@@ -293,9 +293,9 @@
</group>
<group colspan="2" col="2">
<separator string="Dates" colspan="2"/>
- <field name="date_start"/>
- <field name="date_end"/>
- <field name="create_date"/>
+ <field name="date_start" groups="base.group_no_one"/>
+ <field name="date_end" groups="base.group_no_one"/>
+ <field name="create_date" groups="base.group_no_one"/>
</group>
<separator string="Miscelleanous" colspan="4"/>
<field name="partner_id" />
@@ -430,8 +430,8 @@
icon="gtk-go-forward"
groups="base.group_extended"
help="Change Type"/>
- <field name="date_start" invisible="1"/>
- <field name="date_end" invisible="1"/>
+ <field name="date_start" invisible="1" groups="base.group_no_one"/>
+ <field name="date_end" invisible="1" groups="base.group_no_one"/>
<field name="progress" widget="progressbar" invisible="context.get('set_visible',False)"/>
<field name="state" invisible="context.get('set_visible',False)"/>
<button name="do_open" states="pending,draft,done,cancelled" string="Start Task" type="object" icon="gtk-media-play" help="For changing to open state" invisible="context.get('set_visible',False)"/>
@@ -511,8 +511,8 @@
<separator orientation="vertical"/>
<filter string="Deadline" icon="terp-gnome-cpu-frequency-applet+" domain="[]" context="{'group_by':'date_deadline'}"/>
<separator orientation="vertical"/>
- <filter string="Start Date" icon="terp-go-month" domain="[]" context="{'group_by':'date_start'}"/>
- <filter string="End Date" icon="terp-go-month" domain="[]" context="{'group_by':'date_end'}"/>
+ <filter string="Start Date" icon="terp-go-month" domain="[]" context="{'group_by':'date_start'}" groups="base.group_no_one"/>
+ <filter string="End Date" icon="terp-go-month" domain="[]" context="{'group_by':'date_end'}" groups="base.group_no_one"/>
</group>
</search>
</field>
=== modified file 'project_issue/project_issue_view.xml'
--- project_issue/project_issue_view.xml 2011-12-19 16:54:40 +0000
+++ project_issue/project_issue_view.xml 2012-03-14 06:47:18 +0000
@@ -119,20 +119,20 @@
<page string="Extra Info" groups="base.group_extended">
<group col="2" colspan="2">
<separator colspan="2" string="Date"/>
- <field name="create_date"/>
- <field name="write_date" />
- <field name="date_closed"/>
- <field name="date_open"/>
- <field name="date_action_last"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="write_date" groups="base.group_no_one"/>
+ <field name="date_closed" groups="base.group_no_one"/>
+ <field name="date_open" groups="base.group_no_one"/>
+ <field name="date_action_last" groups="base.group_no_one"/>
</group>
<group colspan="2" col="2">
<separator string="Statistics" colspan="2" col="2"/>
- <field name="day_open"/>
- <field name="day_close"/>
- <field name="working_hours_open" widget="float_time"/>
- <field name="working_hours_close" widget="float_time"/>
- <field name="inactivity_days"/>
- <field name="days_since_creation"/>
+ <field name="day_open" groups="base.group_no_one"/>
+ <field name="day_close" groups="base.group_no_one"/>
+ <field name="working_hours_open" widget="float_time" groups="base.group_no_one"/>
+ <field name="working_hours_close" widget="float_time" groups="base.group_no_one"/>
+ <field name="inactivity_days" groups="base.group_no_one"/>
+ <field name="days_since_creation" groups="base.group_no_one"/>
</group>
<group colspan="2" col="2">
<separator string="References" colspan="2"/>
@@ -152,7 +152,7 @@
<field name="arch" type="xml">
<tree string="Issue Tracker Tree" colors="black:state=='open';blue:state=='pending';grey:state in ('cancel', 'done')">
<field name="id"/>
- <field name="create_date"/>
+ <field name="create_date" groups="base.group_no_one"/>
<field name="name"/>
<field name="partner_id" groups="base.group_extended"/>
<field name="project_id" />
=== modified file 'purchase/purchase_view.xml'
--- purchase/purchase_view.xml 2012-02-07 13:17:19 +0000
+++ purchase/purchase_view.xml 2012-03-14 06:47:18 +0000
@@ -221,8 +221,8 @@
</group>
<newline/>
<separator string="Purchase Control" colspan="4"/>
- <field name="validator"/>
- <field name="date_approve"/>
+ <field name="validator" groups="base.group_no_one"/>
+ <field name="date_approve" groups="base.group_no_one"/>
<separator string="Invoices" colspan="4"/>
<newline/>
<field name="invoice_ids" groups="base.group_extended" nolabel="1" colspan="4" context="{'type':'in_invoice', 'journal_type':'purchase'}"/>
=== modified file 'sale/sale_view.xml'
--- sale/sale_view.xml 2012-01-31 13:36:57 +0000
+++ sale/sale_view.xml 2012-03-14 06:47:18 +0000
@@ -237,8 +237,8 @@
</group>
<group colspan="2" col="2" groups="base.group_extended">
<separator string="Dates" colspan="2"/>
- <field name="create_date"/>
- <field name="date_confirm"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="date_confirm" groups="base.group_no_one"/>
</group>
<separator colspan="4" string="Notes"/>
<field colspan="4" name="note" nolabel="1"/>
=== modified file 'sale_order_dates/sale_order_dates_view.xml'
--- sale_order_dates/sale_order_dates_view.xml 2011-01-14 00:11:01 +0000
+++ sale_order_dates/sale_order_dates_view.xml 2012-03-14 06:47:18 +0000
@@ -9,11 +9,11 @@
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<field name="create_date" position="after">
- <field name="requested_date"/>
+ <field name="requested_date" groups="base.group_no_one"/>
</field>
<field name="date_confirm" position="after">
- <field name="commitment_date"/>
- <field name="effective_date"/>
+ <field name="commitment_date" groups="base.group_no_one"/>
+ <field name="effective_date" groups="base.group_no_one"/>
</field>
</field>
</record>
=== modified file 'stock/stock_view.xml'
--- stock/stock_view.xml 2012-02-13 15:27:55 +0000
+++ stock/stock_view.xml 2012-03-14 06:47:18 +0000
@@ -432,8 +432,8 @@
<field name="picking_id"/>
<field name="location_id" />
<field name="location_dest_id" />
- <field name="create_date"/>
- <field name="date" string="Date"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="date" string="Date" groups="base.group_no_one"/>
<field name="date_expected" string="Date Expected"/>
<field name="state"/>
</tree>
@@ -456,8 +456,8 @@
<field name="picking_id"/>
<field name="location_id" />
<field name="location_dest_id" />
- <field name="create_date" />
- <field name="date" string="Date"/>
+ <field name="create_date" groups="base.group_no_one"/>
+ <field name="date" string="Date" groups="base.group_no_one"/>
<field name="date_expected" string="Date Expected"/>
<field name="state"/>
</tree>
@@ -1366,7 +1366,7 @@
<field name="name"/>
<field name="picking_id" string="Reference"/>
<field name="origin"/>
- <field name="create_date" invisible="1"/>
+ <field name="create_date" invisible="1" groups="base.group_no_one"/>
<field name="partner_id"/>
<field name="product_id"/>
<field name="product_qty" on_change="onchange_quantity(product_id, product_qty, product_uom, product_uos)"/>
@@ -1393,7 +1393,7 @@
states="draft,assigned,confirmed,done"/>
<field name="location_id"/>
<field name="location_dest_id"/>
- <field name="date"/>
+ <field name="date" groups="base.group_no_one"/>
<field name="date_expected"/>
<field name="state"/>
<button name="action_done" states="confirmed,assigned" string="Process" type="object" icon="gtk-go-forward"/>
@@ -1439,8 +1439,8 @@
<group colspan="2" col="2">
<separator string="Dates" colspan="2" />
- <field name="create_date" groups="base.group_extended"/>
- <field name="date" groups="base.group_extended"/>
+ <field name="create_date" groups="base.group_no_one" />
+ <field name="date" groups="base.group_no_one" />
<field name="date_expected" on_change="onchange_date(date,date_expected)"/>
</group>
@@ -1490,7 +1490,7 @@
<field name="product_id"/>
<field name="location_id" string="Location" filter_domain="['|',('location_id','ilike',self),('location_dest_id','ilike',self)]"/>
<field name="address_id" string="Partner" context="{'contact_display':'partner'}" filter_domain="[('picking_id.address_id','ilike',self)]"/>
- <field name="date"/>
+ <field name="date" groups="base.group_no_one"/>
<field name="origin"/>
<field name="prodlot_id"/>
</group>
@@ -1506,7 +1506,7 @@
<separator orientation="vertical"/>
<filter icon="terp-stock_effects-object-colorize" string="State" domain="[]" context="{'group_by':'state'}" />
<separator orientation="vertical"/>
- <filter string="Creation" name="groupby_create_date" icon="terp-go-month" domain="[]" context="{'group_by':'create_date'}"/>
+ <filter string="Creation" name="groupby_create_date" icon="terp-go-month" domain="[]" context="{'group_by':'create_date'}" groups="base.group_no_one"/>
<filter string="Expected" name="groupby_date" icon="terp-go-month" domain="[]" context="{'group_by':'date'}"/>
</group>
</search>
@@ -1564,7 +1564,7 @@
groups="base.group_extended"
icon="terp-stock_effects-object-colorize"
states="draft,assigned,confirmed,done"/>
- <field name="date"/>
+ <field name="date" groups="base.group_no_one"/>
<field name="state"/>
<button name="action_assign" states="confirmed" string="Set Available" type="object" icon="gtk-yes"/>
<button name="action_done" string="Process" type="object" states="confirmed,assigned" icon="gtk-go-forward"/>
@@ -1584,7 +1584,7 @@
<field name="product_id"/>
<field name="product_qty" />
<field name="product_uom" string="UoM"/>
- <field name="date"/>
+ <field name="date" groups="base.group_no_one" />
<button name="action_done" states="confirmed,assigned" string="Process" type="object" icon="gtk-go-forward"/>
</tree>
</field>
@@ -1627,8 +1627,8 @@
<group colspan="2" col="2">
<separator string="Dates" colspan="2" />
- <field name="create_date" groups="base.group_extended"/>
- <field name="date" groups="base.group_extended"/>
+ <field name="create_date" groups="base.group_no_one" />
+ <field name="date" groups="base.group_no_one" />
<field name="date_expected" on_change="onchange_date(date,date_expected)"/>
</group>
@@ -1688,7 +1688,7 @@
<filter string="Order" icon="terp-gtk-jump-to-rtl" domain="[]" context="{'group_by':'origin'}"/>
<filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
<separator orientation="vertical"/>
- <filter string="Order Date" icon="terp-go-month" domain="[]" context="{'group_by':'date'}" />
+ <filter string="Order Date" icon="terp-go-month" domain="[]" context="{'group_by':'date'}" groups="base.group_no_one"/>
</group>
</search>
</field>
@@ -1721,7 +1721,7 @@
<filter string="Order" icon="terp-gtk-jump-to-rtl" domain="[]" context="{'group_by':'origin'}"/>
<filter string="State" icon="terp-stock_effects-object-colorize" domain="[]" context="{'group_by':'state'}"/>
<separator orientation="vertical"/>
- <filter string="Order Date" icon="terp-go-month" domain="[]" context="{'group_by':'date'}" />
+ <filter string="Order Date" icon="terp-go-month" domain="[]" context="{'group_by':'date'}" groups="base.group_no_one"/>
</group>
</search>
</field>
=== modified file 'wiki/wiki_view.xml'
--- wiki/wiki_view.xml 2011-11-16 11:58:10 +0000
+++ wiki/wiki_view.xml 2012-03-14 06:47:18 +0000
@@ -115,7 +115,7 @@
<field name="review"/>
<field name="create_uid" invisible="context.get('create_uid',False)"/>
<field name="write_uid"/>
- <field name="write_date"/>
+ <field name="write_date" groups="base.group_no_one"/>
</tree>
</field>
</record>
@@ -141,7 +141,7 @@
</notebook>
<group col="2" colspan="2">
<separator colspan="4" string="Modification Information"/>
- <field name="write_date" readonly="1"/>
+ <field name="write_date" readonly="1" groups="base.group_no_one"/>
<field name="minor_edit" groups="base.group_extended"/>
<field name="review" select="1" groups="base.group_extended"/>
</group>
@@ -168,7 +168,7 @@
<field name="tags"/>
<field name="section" groups="base.group_extended"/>
<field name="write_uid"/>
- <field name="write_date"/>
+ <field name="write_date" groups="base.group_no_one"/>
<newline/>
<group expand="0" string="Group By...">
<filter icon="terp-folder-blue" string="Wiki Group" domain="[]" context="{'group_by':'group_id'}"/>
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp