mirror of
https://github.com/odoo/runbot.git
synced 2025-03-16 07:55:45 +07:00

- code in the various menus added over time through the UI (queues, configuration, ...) - update / improve PR layout a tick - fix "outstanding forward ports" count on the dashboard - improve hover title / help on dashboard - add date of last modification (usually date of success / failure) - make casing more coherent (everything lowercase) - add explicit note that UTC date on staged at label is staged at datetime - rediscover yet again that the staging information is when hovering on the staging *except the staged at label* - improve `PullRequest.unstage` to always insert the PR at the start of the reason when cancelling the staging, for clarity / traceability Closes #560, closes #609
52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<odoo>
|
|
<record id="action_forward_port" model="ir.actions.act_window">
|
|
<field name="name">Forward port batches</field>
|
|
<field name="res_model">forwardport.batches</field>
|
|
<field name="context">{'active_test': False}</field>
|
|
</record>
|
|
<record id="tree_forward_port" model="ir.ui.view">
|
|
<field name="name">Forward port batches</field>
|
|
<field name="model">forwardport.batches</field>
|
|
<field name="arch" type="xml">
|
|
<tree>
|
|
<field name="source"/>
|
|
<field name="batch_id"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
<record id="form_forward_port" model="ir.ui.view">
|
|
<field name="name">Forward port batch</field>
|
|
<field name="model">forwardport.batches</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<group>
|
|
<group><field name="source"/></group>
|
|
<group><field name="batch_id"/></group>
|
|
</group>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_followup_updates" model="ir.actions.act_window">
|
|
<field name="name">Followup Updates</field>
|
|
<field name="res_model">forwardport.updates</field>
|
|
</record>
|
|
<record id="tree_followup_updates" model="ir.ui.view">
|
|
<field name="name">Followup Updates</field>
|
|
<field name="model">forwardport.updates</field>
|
|
<field name="arch" type="xml">
|
|
<tree editable="bottom">
|
|
<field name="original_root"/>
|
|
<field name="new_root"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<menuitem name="Forward Port Batches" id="menu_forward_port"
|
|
parent="runbot_merge.menu_queues"
|
|
action="action_forward_port"/>
|
|
<menuitem name="Followup Updates" id="menu_followup"
|
|
parent="runbot_merge.menu_queues"
|
|
action="action_followup_updates"/>
|
|
</odoo>
|