OCA / management-system

Odoo for Management Systems (ISO, IEC, BS)
http://odoo-community.org/project/26
GNU Affero General Public License v3.0
187 stars 293 forks source link

Management System Claim Bug. #532

Closed ko-eska closed 1 year ago

ko-eska commented 1 year ago

Module

mgmtsystem_claim.

Describe the bug

There is a bug in Claim Description and Follow Up page view of create new claim form.

To Reproduce

Affected versions: 16.0

Steps to reproduce the behavior:

  1. XML codes should be rewritten according to version 16.

Expected behavior An organized page structure..

Additional context I attached a screenshot from odoo. mngmt

max3903 commented 1 year ago

@ko-eska Thanks for reporting. I will take a look at it when I can. No guarantee about the delay.

ms-eska commented 1 year ago

@max3903 I figure out that just before notebook tag group tag created to fixed the grid from 12 to 4. Removing that group will solve the issue/bug.

`

            <sheet string="Claims">
                <group>
                    <field name="reference"/>
                    <field name="company_id" groups="base.group_multi_company"/>
                    <field name="name"/>
                    <field name="date"/>
                    <field name="team_id" invisible="1"/>
                </group>
                <group colspan="4" col="4" groups="base.group_user">
                    <field name="user_id"/>
                    <field name="priority"/>
                    <field name="categ_id"/>
                    <field name="date_deadline"/>
                </group>
                **<!--group colspan="4" col="4"-->**
                    <notebook>`
max3903 commented 1 year ago

@ms-eska Yes, this is included in the pull request: https://github.com/OCA/management-system/pull/535/files#diff-163e891aa36b6d3d5c6da69c4ab3bf0f142f9bd78fd5d517af30cc0f9545f2d0L55