helpdesk icon indicating copy to clipboard operation
helpdesk copied to clipboard

group error

Open Hiregui92 opened this issue 1 year ago • 4 comments

https://github.com/OCA/helpdesk/blob/d490e7f2d60016ef609063eea4b3998bc60ab73e/helpdesk_mgmt/views/helpdesk_ticket_views.xml#L190

Hiregui92 avatar Jan 22 '24 22:01 Hiregui92

Hello @Hiregui92 could you provide more information?

dalonsod avatar Jan 23 '24 07:01 dalonsod

Hello @Hiregui92 could you provide more information?

Yes, that view have a problem in distribution. I things we can chance, we need to remove group.

In this moment branch 16.0 helpdesk_ticket_views.xml <group> <notebook> <page string="Description" name="description"> <field name="description" widget="html" /> </page> <page string="Other Information" name="other_info"> <group> <field name="last_stage_update" readonly="1" /> <field name="assigned_date" readonly="1" /> <field name="closed_date" readonly="1" /> </group> </page> </notebook> </group> image

Without group

<notebook>
    <page string="Description" name="description">
        <field name="description" widget="html" />
    </page>
    <page string="Other Information" name="other_info">
        <group>
            <field name="last_stage_update" readonly="1" />
            <field name="assigned_date" readonly="1" />
            <field name="closed_date" readonly="1" />
        </group>
    </page>
</notebook>

image

Hiregui92 avatar Jan 23 '24 18:01 Hiregui92

Inspecting at v16 runboat, it seems to work correctly, could you try? Looking at provided snapshot you've got some custom adaptations and/or not merged yet modules, like SLA one, that can break form as you show.

dalonsod avatar Jan 24 '24 08:01 dalonsod

looks like you're unsing helpdesk OCA in enterprise setup. Maybe some conflicts occured?

flotho avatar Apr 03 '24 20:04 flotho