23 lines
1.1 KiB
XML
23 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Light UX polish on the standard stop-timer confirmation wizard:
|
|
- require a non-empty session summary
|
|
- show a bigger textarea with a more directive placeholder
|
|
- keep the built-in time-edit + Save/Resume/Delete buttons unchanged -->
|
|
<record id="view_hr_timesheet_stop_timer_confirmation_wizard_inherit_fc"
|
|
model="ir.ui.view">
|
|
<field name="name">hr.timesheet.stop.timer.confirmation.wizard.form.fc</field>
|
|
<field name="model">hr.timesheet.stop.timer.confirmation.wizard</field>
|
|
<field name="inherit_id"
|
|
ref="timesheet_grid.hr_timesheet_stop_timer_confirmation_wizard_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="timesheet_name" position="attributes">
|
|
<attribute name="placeholder">What did you complete in this session? — e.g. Implemented quote PDF rendering and validated edge cases</attribute>
|
|
<attribute name="required">1</attribute>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|