mirror of
https://github.com/bringout/oca-project.git
synced 2026-04-19 11:22:02 +02:00
Move 124 sale modules to oca-sale, create oca-project with 56 project modules from oca-workflow-process
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
9eb7ae5807
commit
6094c218b2
2332 changed files with 125826 additions and 0 deletions
|
|
@ -0,0 +1,59 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="project_task_inherit_form_view" model="ir.ui.view">
|
||||
<field name="name">project.task.inherit.form.view</field>
|
||||
<field name="model">project.task</field>
|
||||
<field name="inherit_id" ref="project.view_task_form2" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='project_id']" position="after">
|
||||
<field name="sprint_id" />
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
<record id="project_task_inherit_tree_view" model="ir.ui.view">
|
||||
<field name="name">project.task.inherit.tree.view</field>
|
||||
<field name="model">project.task</field>
|
||||
<field name="inherit_id" ref="project.view_task_tree2" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='project_id']" position="after">
|
||||
<field name="sprint_id" />
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
<record id="project_task_inherit_search_view" model="ir.ui.view">
|
||||
<field name="name">project.task.inherit.search.view</field>
|
||||
<field name="model">project.task</field>
|
||||
<field name="inherit_id" ref="project.view_task_search_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//group" position="before">
|
||||
<separator />
|
||||
<filter
|
||||
name="sprint_in_progress_task"
|
||||
string="Sprint In Progress"
|
||||
domain="[('sprint_state', '=', 'in_progress')]"
|
||||
/>
|
||||
</xpath>
|
||||
<xpath expr="//group" position="inside">
|
||||
<filter
|
||||
name="sprint_id"
|
||||
string="Sprint"
|
||||
context="{'group_by':'sprint_id'}"
|
||||
/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
<record id="view_task_timeline" model="ir.ui.view">
|
||||
<field name="model">project.task</field>
|
||||
<field name="type">timeline</field>
|
||||
<field name="inherit_id" ref="project_timeline.project_task_timeline" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//timeline" position="attributes">
|
||||
<attribute name="default_group_by">sprint_id</attribute>
|
||||
<attribute name="event_open_popup">False</attribute>
|
||||
<attribute name="dependency_arrows">False</attribute>
|
||||
</xpath>
|
||||
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue