Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • c8b653f11ca788725b760ec1f7a81f77fcfb9a8a
  • 12.0-evo-202003 par défaut
  • 14-RV-20250324
  • 14-RV-20240830
  • 14-RV-20231222
  • 12-RV-Bug_ecrasement_date_radiation
  • 12-RV-revision-staff
  • 12-RV-copadev
  • 12-RV-Correctif-open-instagram
  • 12-RV-Tree-Coop-Ajout-effectif
  • 12.0-RV-Instagram
  • 12.0-RV-segment_visibility
  • 12.0 protégée
  • 12.0-RV-Abonnements
14 résultats

scop_deces_wizard.xml

Blame
  • Bifurcation depuis Le Filament / Confédération Générale des SCOP / cgscop_partner
    Le projet source a une visibilité limitée.
    scop_cotisation_simulation.xml 3,53 Kio
    <?xml version="1.0" ?>
    <!-- Copyright 2019 Le Filament
         License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
    <odoo>
        <data>
    
            <!-- Tree view -->
            <record id="view_scop_cotisation_cg_simulation_tree" model="ir.ui.view">
                <field name="name">scop.cotisation.cg.simulation.tree</field>
                <field name="model">scop.cotisation.cg.simulation</field>
                <field name="arch" type="xml">
                    <tree string="Simulations" create="0" edit="0">
                        <field name="create_date" string="Date de création" />
                        <field name="type_simul" />
                        <field name="file" />
                        <field name="total_member" />
                        <field name="total_cg" />
                        <field name="total_hdf" />
                        <field name="total_med" />
                        <field name="total_idf" />
                        <field name="total_com" />
                        <field name="total_cae" />
                        <field name="total_indus" />
                        <button
                            name="get_simul_file"
                            type="object"
                            string="Télécharger la simulation"
                            class="btn btn-sm btn-outline-info"
                        />
                    </tree>
                </field>
            </record>
    
            <!-- Form view -->
            <record id="view_scop_cotisation_cg_simulation_form" model="ir.ui.view">
                <field name="name">scop.cotisation.cg.simulation.form</field>
                <field name="model">scop.cotisation.cg.simulation</field>
                <field name="arch" type="xml">
                    <form>
                        <sheet>
                            <group>
                                <group string="Fichier simulation">
                                    <field name="create_date" string="Date de création" />
                                    <field name="type_simul" readonly="1" />
                                    <button
                                        name="get_simul_file"
                                        type="object"
                                        icon="fa-download"
                                        string="Télécharger la simulation"
                                        class="btn btn-sm btn-outline-info"
                                    />
                                </group>
                                <group string="Données globales">
                                    <field name="total_member" readonly="1" />
                                    <field name="total_cg" readonly="1" />
                                    <field name="total_hdf" readonly="1" />
                                    <field name="total_med" readonly="1" />
                                    <field name="total_idf" readonly="1" />
                                    <field name="total_com" readonly="1" />
                                    <field name="total_cae" readonly="1" />
                                    <field name="total_indus" readonly="1" />
                                </group>
                            </group>
                        </sheet>
                    </form>
                </field>
            </record>
    
    
            <record
                id="view_scop_cotisation_cg_simulation_action"
                model="ir.actions.act_window"
            >
                <field name="name">Simulation Cotisation</field>
                <field name="type">ir.actions.act_window</field>
                <field name="res_model">scop.cotisation.cg.simulation</field>
                <field name="view_mode">form</field>
            </record>
    
    
        </data>
    </odoo>