Skip to content
Snippets Groups Projects
  1. Jul 26, 2021
    • Xavier-Do's avatar
      [FIX] *: add explicit license to all manifest · 4f683968
      Xavier-Do authored
      
      The license is missing in most enterprise manifest so
      the decision was taken to make it explicit in all cases.
      When not defined, a warning will be triggered starting from
      14.0 when falling back on the default LGPL-3.
      
      closes odoo/odoo#74231
      
      Related: odoo/enterprise#19850
      Related: odoo/design-themes#43
      Signed-off-by: default avatarXavier Dollé (xdo) <xdo@odoo.com>
      4f683968
  2. Aug 07, 2020
    • william's avatar
      [IMP] l10n_*: update the module categories · eaa7f93c
      william authored
      
      Task 2309613
      
      We have a new hierarchy:
      * Accounting
        * [Generic, not changed]
        * Localization
          * Account Chart
          * Check
          * EDI
          * Point of Sale
          * Purchase
          * Reporting
          * Sale
      
      This helps in displaying only the chart of accounts when clicking on
      "Install more Packages" from the accounting settings in the Fiscal
      Localization section.
      We can also refine the search in the _auto_install_l10n post init hook
      of account.
      
      closes odoo/odoo#55384
      
      Related: odoo/enterprise#12179
      Related: odoo/upgrade#1568
      Signed-off-by: default avatarCedric Snauwaert (csn) <csn@openerp.com>
      eaa7f93c
  3. Mar 31, 2020
    • william's avatar
      [IMP] l10n_*: add demo company · d2851b20
      william authored
      
      Task 2198388
      
      When testing and demoing localization, it can but cumbersome to create a
      Company with the right credentials and install the chart of account on
      it.
      This commit aims to shorten the process. The first version only contains
      a valid vat (or similar) number, but we should add fields specific to
      localization in the future so that we have a working environment as soon
      as we install the localization.
      change manifest
      
      closes odoo/odoo#48102
      
      Signed-off-by: default avatarJosse Colpaert <jco@openerp.com>
      d2851b20
  4. Mar 05, 2020
  5. Jan 22, 2020
    • wan's avatar
      [IMP] account: add a readonly group · d8c5cc13
      wan authored
      
      Task 2092079
      Accounting firms that want to give access to their customers avoiding
      mistakes and risks will love this profile that can't do anything
      wrong... Maybe as well as companies auditors..?
      
      closes odoo/odoo#39860
      
      Related: odoo/enterprise#6576
      Signed-off-by: default avatarQuentin De Paoli (qdp) <qdp@openerp.com>
      d8c5cc13
  6. Nov 29, 2019
    • oco-odoo's avatar
      [IMP] account: support multiple tax reports per country · ef0488ef
      oco-odoo authored
      
      - Introduce a new account.tax.report object
      	> Tax report lines now refer to a tax report, and the tax report to a country
      
      - Tax report lines can share tags accross reports within the same country
      	> To support the cases where some report is a simplified version of another one: some of its lines can be computed in the same way as the 'bigger' report.
      	> This is done by giving the same tag_name to the tax report lines, and the same country_id to their parent report.
      	> Full support for tag name modification, and the way it impacts the shared tags (sometimes, we can overwrite them all, sometimes we must delete them, sometimes, we create new tags to replace them on some report lines).
      
      - Support copying tax report (and the lines/tags linked to it), so that it is possible to duplicate them and change the country set on the duplicate for use in another country (coopying is way better as replacing in place, as we don't keep any link to an xmlid, and still allow using the original report in the original country it was created for).
      
      - Make all l10n* modules compatible with those changes
      
      closes odoo/odoo#38964
      
      Related: odoo/enterprise#6217
      Signed-off-by: default avataroco-odoo <oco-odoo@users.noreply.github.com>
      ef0488ef
  7. Sep 10, 2019
  8. Aug 14, 2019
    • Josse Colpaert's avatar
      [IMP] account, l10n_xx: change CoA loading methods · f8d4bf44
      Josse Colpaert authored
      
      Before, we only had a public method that installed
      the CoA for the current active company.
      
      With the multi-company changes, it was not
      possible anymore to install a module with a
      demo company and then have the CoA installed
      in that demo company correctly.
      
      We changed that public method to be able to
      put an extra optional parameter and shortened
      its name to try_loading instead of
      try_loading_for_current_company.  The method that
      it calls when there is no chart installed
      is made private and renamed to _load.
      
      closes odoo/odoo#35703
      
      Signed-off-by: default avatarQuentin De Paoli (qdp) <qdp@openerp.com>
      f8d4bf44
  9. Aug 09, 2019
    • Joseph Caburnay's avatar
      [IMP] l10n_*: add new receivable account for pos · 536560bb
      Joseph Caburnay authored
      A new feature[*] in point_of_sale (PoS) which minimizes the
      creation of account.move records in closing a pos.session relies
      on a receivable account made specifically for PoS.
      
      This commit addresses this feature's requirement by adding a
      new receivable account to each localization.
      
      [*] point_of_sale: single AE for a pos.session
      
      TASK-ID: 1862388
      536560bb
  10. Aug 03, 2019
  11. May 10, 2019
    • Olivier Colson's avatar
      [IMP] account, l10n_*: v13 taxes · 3936d655
      Olivier Colson authored
      
      - Add repartition lines on taxes
      
      - Link account tags directly to account.move.line; remove the tag_ids field from account.tag
      
      - Add a new report engine dedicated to tax reports, directly generating account tags. It is called as an alternate mode of generic tax report, with a dedicated "Use tax grids" toggle.
      
      >> The biggest change lies in the way the new tax report computes its values.
      Everything is now aggregated directly using the tags set on the account move lines. Thanks to that,
      modifying the configuration of a tax today will not impact the report for the previous periods anymore.
      This is a big improvement, as it means the report will keep on reflecting the values that were submitted
      to the state before, whatever the configuration change.
      
      - Add an audit char field to account.move.line telling with tax grids are impacted by the line, with the corresponding amount
      
      - Modify the behavior of cash basis taxes: the cash basis account is now used as the transition account, while the regular account given in tax declaration is used to store the final entry (it was the opposite before)
      
      - Modify every l10n_* module in order to keep them consistent with these changes
      
      closes odoo/odoo#32833
      
      Signed-off-by: default avatarQuentin De Paoli (qdp) <qdp@openerp.com>
      3936d655
  12. Feb 28, 2019
  13. Feb 08, 2019
  14. Sep 18, 2018
  15. Aug 16, 2018
  16. May 23, 2018
  17. Nov 07, 2017
  18. Sep 26, 2017
  19. Sep 24, 2017
  20. Aug 28, 2017
  21. Aug 14, 2017
    • ODOO's avatar
      [I18N] remove es_DO translations · aaa70fb4
      ODOO authored
      Dominican team is focused on Transifex traductions using es.po,
      as es_DO.po has a lot of issues in the website and reviewed strings
      with wrong wording and mixing english and spanish. From now on
      Dominican Republic will inherit es.po and just make specific changes
      on github just in the needed words or setences that change base on
      region.
      
      Closes #18834
      aaa70fb4
  22. Jul 27, 2017
    • Dhaval Panchal's avatar
      [IMP] l10n_*: Uniformize the reporting menuitems order and labels · a436645a
      Dhaval Panchal authored
      Purpose
      =======
      
      Accounting reports are quite confusing for an accountant as the menuitems doesn't to have a clear structure.
      
      Specifications
      ==============
      
      Move all the localizations menuitems to the first position under `Reporting`
      
      Put the `US GAAP` report menuitem items under the localizations and rename it accordingly
      a436645a
  23. Jul 26, 2017
  24. Jul 12, 2017
  25. Jun 26, 2017
  26. May 18, 2017
  27. Mar 12, 2017
  28. Jan 29, 2017
  29. Jan 03, 2017
  30. Dec 05, 2016
  31. Dec 01, 2016
  32. Nov 20, 2016
  33. Oct 03, 2016
  34. Sep 25, 2016
  35. Sep 07, 2016
  36. Sep 05, 2016
  37. Sep 01, 2016
    • Raphael Collet's avatar
      [REF] registry: move functionalities from `RegistryManager` to `Registry` · a7445b40
      Raphael Collet authored
      The API of `Registry` has been modified as follows:
       - `Registry(name)` returns the registry of the given database
       - `Registry.new(name)` forces the creation of a new `Registry` object
       - `Registry.delete(name)` discards the given registry
       - `Registry.delete_all()` discards all registries
       - `registry.setup_signaling()` initializes the signaling for `registry`
       - `registry.check_signaling()` returns an up-to-date `registry`
       - `registry.signal_registry_change()` notifies that `registry` has changed
       - `registry.signal_caches_change()` notifies potential cache invalidation
      a7445b40
Loading