You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.8 KiB

[ADD] bond and loan issues management [ADD] bond and loan issues management module skeleton [IMP] change increase menu sequence [IMP] add models, fields and views [IMP] add xml declaration in head of file [ADD] add easy_my_coop_loan_website - WIP [IMP] add access rights [IMP] this raise inconsistency so replace id by default_code. [IMP] change import openerp to odoo [IMP] add website loan module [FIX] put website display in loan [FIX] fix import [FIX] fix function [IMP] use correct name [IMP] make the loan and bond visible [IMP] add js, field and logic to set amount limit per subscription [IMP] remove dependency on recaptcha as user is logged to subscribe [IMP] add fields [IMP] save loan issue subscription still in WIP [IMP] remove alert pop up [IMP] add dependency to easy_my_coop_website [IMP] remove force send for sub request creation email notification [IMP] add mail templates [IMP] save subscription in the corresponding loan issue. add email notif [FIX] fix loan issue line view [FIX] add related field to loan issue. It is where the data stand [IMP] move term_view up [FIX] fix js error when false is returned [FIX] fix function when loan_issue_id in None [IMP] add actions and button [FIX] fix action [FIX] fix mail template [IMP] set noupdate=1 [IMP] change order [IMP] display loan issue lines on partner form [IMP] add loan view in partner form [IMP] add face value on loan issue and line add face value on loan issue and line. add as well the quantity and computation of the amount [FIX] missing id overriding values wasn't working [IMP] getting bond face value and setting it as step. [IMP] subscribed_amount computed field is the sum of the amount lines [IMP] allow a waiting payment to be cancelled [IMP] make field required [REFACT] move loan issue line code to dedicated file [IMP] add interest calculation and model [ADD] bond and loan issues management module skeleton [IMP] add models, fields and views [IMP] allow creation by hand [IMP] adding partner related field [IMP] put code in separate function [FIX] pass it to get method [IMP] routes consistent form [FIX] fix eof [FIX] GET is working for ajax call [IMP] website page for loan issue subscription
5 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="view_company_inherit_form2">
  4. <field name="name">res.company.form.easymy.coop</field>
  5. <field name="inherit_id" ref="base.view_company_form"/>
  6. <field name="model">res.company</field>
  7. <field name="arch" type="xml">
  8. <group name="social_media" position="before">
  9. <group name="coop_grp" string="EasyMy Coop" groups="easy_my_coop.group_easy_my_coop_user">
  10. <field name="unmix_share_type"/>
  11. <field name="allow_id_card_upload"/>
  12. <field name="create_user"/>
  13. <field name="display_logo1"/>
  14. <field name="bottom_logo1"/>
  15. <field name="display_logo2"/>
  16. <field name="bottom_logo2"/>
  17. <field name="coop_email_contact"/>
  18. <field name="subscription_maximum_amount"/>
  19. <field name="property_cooperator_account"/>
  20. <field name="default_country_id"/>
  21. <field name="default_lang_id"/>
  22. <field name="board_representative"/>
  23. <field name="signature_scan"/>
  24. <field name="display_data_policy_approval"/>
  25. <field name="data_policy_approval_required"/>
  26. <field name="data_policy_approval_text"/>
  27. <field name="display_internal_rules_approval"/>
  28. <field name="internal_rules_approval_required"/>
  29. <field name="internal_rules_approval_text"/>
  30. </group>
  31. </group>
  32. </field>
  33. </record>
  34. </odoo>