2023-08-03 15:15:22 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
<odoo>
|
|
|
|
|
<data>
|
2024-03-21 12:19:27 -04:00
|
|
|
<record id="industry_fsm_report.task_custom_report" model="ir.actions.report">
|
2024-02-12 17:02:56 -05:00
|
|
|
<field name="print_report_name">'%s %s' % (
|
2024-02-12 20:59:08 -05:00
|
|
|
object.planned_date_begin.strftime('%Y-%m-%d') if object.planned_date_begin else time.strftime('%Y-%m-%d'),
|
2024-02-26 15:08:14 -05:00
|
|
|
object.name
|
2024-02-12 20:59:08 -05:00
|
|
|
)
|
|
|
|
|
</field>
|
2023-08-03 15:15:22 -04:00
|
|
|
</record>
|
|
|
|
|
</data>
|
2024-02-12 20:59:08 -05:00
|
|
|
</odoo>
|