Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 6671f0498799289e430e160bce7e04829b9966de
  • 14.0 par défaut
  • 13.0
  • 12.0 protégée
4 résultats

hr_timesheet_cgscop.xml

Blame
  • hr_timesheet_cgscop.xml 11,36 Kio
    <?xml version="1.0" ?>
    <!-- Copyright 2019 Le Filament
         License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
    <odoo>
        <data>
    
            <!-- Form View Project CG -->
            <record id="view_cgscop_project_timesheet_form" model="ir.ui.view">
                <field name="name">cgscop.project.timesheet.form</field>
                <field name="model">project.project</field>
                <field name="arch" type="xml">
                    <form string="Project">
                        <sheet string="Project">
                            <field name="active" invisible="1" />
                            <widget
                                name="web_ribbon"
                                title="Archivé"
                                bg_color="bg-danger"
                                attrs="{'invisible': [('active', '=', True)]}"
                            />
                            <div
                                class="oe_button_box"
                                name="button_box"
                                groups="base.group_user"
                            >
                                <button
                                    class="oe_stat_button"
                                    name="%(hr_timesheet.act_hr_timesheet_line_by_project)d"
                                    type="action"
                                    icon="fa-calendar"
                                    string="Timesheets"
                                    attrs="{'invisible': [('allow_timesheets', '=', False)]}"
                                    groups="hr_timesheet.group_hr_timesheet_user"
                                />
                            </div>
                            <div class="oe_title">
                                <h1>
                                    <field name="name" placeholder="Code activité UR" />
                                </h1>
                            </div>
                            <group>
                                <group>
                                    <field
                                        name="partner_id"
                                        string="Contact par défaut"
                                        domain="[('is_company', '=', True), ('ur_id', '=', ur_id)]"
                                        help="Contact par défaut auquel est rattaché cette activité. Ce contact sera sélectionné automatiquement dans les feuilles de temps"
                                        options="{'no_open': True, 'no_create': True}"
                                    />
                                    <field
                                        name="ur_id"
                                        string="Union Régionale"
                                        options="{'no_open': True, 'no_create': True}"
                                        required="1"
                                    />
                                    <field
                                        name="company_id"
                                        groups="base.group_multi_company"
                                        options="{'no_open': True, 'no_create': True}"
                                        string="Société"
                                        invisible="1"
                                    />
                                </group>
                                <group>
                                    <field
                                        name="cgscop_timesheet_code_id"
                                        required="1"
                                        placeholder="Code activité National"
                                        options="{'no_open': True, 'no_create': True}"
                                    />