Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[17.0][MIG] intrastat_base #257

Merged
merged 82 commits into from
Jan 19, 2024
Merged

Commits on Dec 29, 2023

  1. [ADD] intrastat_base: Redesign for 6.1

    Complete change of design for intrastat_type ! Now that report_intrastat_product/service object is stored in database, we don't need the legal_intrastat state on invoices any more, because we will be able to create entry lines for DEB for a repair of equipment under warranty without using a legal_intrastat. Report_intrastat_type is now only required for DEB -> object moved to module l10n_fr_intrastat_product. For DEB, the button "regenerate lines" only regenerate DEB lines related to invoices.
    
    Renamed intrastat base module, because it doesn't have France-specific parameters any more.
    
    Add demo data.
    
    Full re-design of intrastat types : probably requires deleting the report_intrastat_type table, restarting OpenERP and re-creating intrastat types. Moved intrastat departments from stock.warehouse to stock.location. Dropped SQL queries ; replaced by traditionnal python code logic. No more need to have one rate per day for invoices with foreign currency. Add total fiscal value for DEB More code factorization. Prepare translation work.
    
    Moved some demo data from l10n_fr_intrastat_product to intrastat_base Moved configuration about taxes from company form to tax form Some modifications to ease v5 -> v6 migration : - object report_intrastat_code now belong to group account manager - button functions now return True Tried to implement the following feature : open attachement form when the XML file as been generated : works on v6, but make client crash en v5 -> code has been commented DEB lines with procedure code = 25 are now deducted from the fiscal total. Round invoice total.
    
    Moved the field exclude_from_intrastat_if_present of account.tax from l10n_fr_intrastat_product to intrastat_base, because it should also be used in the module l10n_fr_intrastat_service. Take this field into account in the generation of DEB lines (module l10n_fr_intrastat_service).
    
    It is now possible to set the H.S. code on the product category. Some "return None" changed to "return True"
    
     Implemented the fiscal representative : for example, when you ship to the EU but invoice outside of the EU, your customer needs to have a fiscal representative inside the EU, which will be used for the DEB . depend on base_vat instead of account.
    
    Same modification as my previous commit for DEB : when we sell to a physical person in the EU with VAT, the move is not declared in DEB, so it must not block with a "raise" if the partner doesn't have a VAT number.
    
    Add option "is_accessory_cost" on product.template : If the invoice has is_accessory_cost services but no regular product -> DES If the invoice has is_accessory_cost services and regular product -> added to the cost of products in DEB
    
    Now allows "pricelist for statistical value" which is not in EUR (the currency conversion will be made from the pricelist currency to EUR)
    
    Usability improvements :
    - Order for DEB and DES tree view : "the more recent at the top"
    - distinction between "Information to declare" and "Additionnal information" in intrastat lines
    
    Better string. Update French translation.
    
    Use the new logger API of OpenERP 6.1 Move the "EU fiscal representative" field in order to avoid the "compression" of the VAT field that made it too small.
    
    Code clean-up : - context is not passed in constraints - don't use lambda when not necessary
    
    IMPORTANT CHANGE : - All EU countries should now be intrastat=True, including your own country - When generating lines for Intrastat Product/Service, all invoices for which country == Company's country are excluded
    
    Update help message according to my change of commit 61. Fix copyright header.
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    80e8b05 View commit details
    Browse the repository at this point in the history
  2. [MIG] intrastat_base: Migration to 7.0

    Should now be compatible with both OCB and RS-OCB Add field import_obligation_level on res.company Add group group_detailed_intrastat_product, so that companies that only use obligation = simplified don't see all the additionnal fields. Remove transaction code corresponding to repairs in intrastat types Better on_change on intrastat types (code is mutualised with field.function) Update syntax : demo_xml/update_xml/init_xml -> data/demo
    
    Welcome to Croatia in the European Union !
    
    Add an e-mail reminder for l10n_fr_intrastat_product and l10n_fr_intrastat_service (hope that Akretion France won't forget it's own declarations now !!!) On report.intrastat.product and report.intrastat.service : add copy() fonctions, tracking of important fields, a year_month function field and enhance views. Remove date_done field (the tracking in the chatter does the job). Remove class instanciation in the code.
    
    Better form view of product category, courtesy of David Beal.
    
    Raise an explicit exception (take into account Stefan remark on the merge proposal)
    
    Fix to make the module truly usable when user is not part of the group "Detailed intrastat product". Remove dead code and fields that was used when we had to put DEB lines for repair operations (a thing of the past !). Update coding style. Reduce the number of flake8 warnings.
    
    On OpenERP 7, when you have the document module installed and you download the attachement via the drop down list on the form view, the name of the file will be the name of the attachement and not datas_fname ; so we need to have name = datas_fname.
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    a086f8b View commit details
    Browse the repository at this point in the history
  3. [FIX] intrastat_base: Several things

    * switch required=True for country_id from model to views in res.partner
    * xpath in partner view as Niels Huylebroeck suggest
    * simplify first xpath too in partner view
    * xpath in a more generic way
    bealdav authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    d07bd03 View commit details
    Browse the repository at this point in the history
  4. [IMP] intrastat_base: Several improvements:

    * Use l10n_fr_* : use the method _company_default_get() intrastat_base : - the module is now PEP-8 compliant ! - add search view on countries - is_accessory_cost is now invisible when product != service - update POT file and FR translation - remove double import of logging lib
    * Add context in on_change (to be able to use web_context_tunnel) XSD files are now pure XSD files, not python file with the content as string. Convert l10n_fr_intrastat_service to PEP-8 Start to convert l10n_fr_intrastat_product to PEP-8 (not finished yet) l10n_fr_intrastat_product : Update POT file and FR translation.
    * l10n_fr_intrastat_service : update POT file and FR translation. l10n_fr_intrastat_product : continue PEP-8 compliance
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    68a439c View commit details
    Browse the repository at this point in the history
  5. [MIG] intrastat_base: Migration to 8.0

    * Add intrastat_type_data and update demo data accordingly Remove version="7.0" from form views Add ondelete='restrict' on M2O pointing to intrastat.type Add graph views on intrastat.product and intrastat.service... because Odoo v8 graph views are so cool ! :)
    * When the obligation level for import is none, the type of the DEB is automatically set to export. [FIX] country -> country_id type='string' -> type='char' (v8 only accepts char) Change "error msg in raise", because v8 displays this to the user Remove statistical_pricelist_id from demo data Harmonize labels of button between DEB and DES
    * Add module intrastat_product. Rename report.intrastat.product to l10n.fr.report.intrastat.product (same for service and for lines) + migration scripts
    * intrastat_base + l10n_fr_intrastat_service : port to new API
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    f55dfa0 View commit details
    Browse the repository at this point in the history
  6. Make dutch ICP report workable on odoo 8.0 [FIX] Some small changes i…

    …n base, to make check_generate_lines better reusable (no need to force currency field on report), and do away with '_' before method name, as method should not be private, as it is called from other classes.
    NL66278 authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    b321747 View commit details
    Browse the repository at this point in the history
  7. Continue the port to the new API Access for intrastat report to accou…

    …nting user and not only accounting manager.
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    c15f247 View commit details
    Browse the repository at this point in the history
  8. Revert rename of _check_generate_lines to version withouth underscore.

        In pending merge request from Alexis, _check_generate_lines will no
        longer be called from outside the class, so no longer any need to change
        private function name convention to public name convention.
    
        This will also make it easier to merge all changes.
    NL66278 authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    599e51a View commit details
    Browse the repository at this point in the history
  9. [IMP] intrasta_base: Several imps:

    * Move description from __openerp__.py to README.rst Add conflict key in __openerp__.py Simplify code that create attachment Thanks to Luc de Meyer (Noviat) for his help on this.
    * Update README.rst and translation files
    * Simplify @Depends, as suggested by Yannick
    * Better use of the new API for send_mail(), as suggested by Yannick (and tested be me)
    * Large code re-engineering following the Akretion-Noviat code sprint on intrastat
      This code has been written both by Luc de Meyer and myself.
    * Add first draft of code to generate decl lines
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    df2dc89 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a0c587d View commit details
    Browse the repository at this point in the history
  11. [IMP] intrastat_base: A lot of imps:

    * Add product_origin_country_id on declaration/computation lines
    
      Copy incoterms and destination country from SO to invoice when invoicing from SO
      We need weight even when supplementary units is used
      Small cleanups and enhancements
    
    * Add support for accessory costs
    
      Add default values for intrastat transaction on company
      Code cleanup
    
    * If rounded weight is 0, put 1
    
      Take into account the taxes for B2C
      Small code cleanup
    
    * Remove field exclude_from_intrastat
    
      Re-organise view of intrastat.product.declaration
    
    * Add option intrastat_accessory_costs on company
    
      Set more fields as invisible (localisation should put them visible if they need it)
      Fix handling of suppl. units when hs_code is empty on invoice line (but set on product)
      Small usability enhancements
    
    * Warning -> UserError
    
    * Inspired by the PR akretion/account-financial-reporting#8 of Luc de Meyer
    
    * total_amount is a sum of integers, so it should be an integer
    
      Add transport mode in computation tree view
    
    * Demo VAT number should be on EU customers
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    698ad05 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    883a7ea View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    b4756f2 View commit details
    Browse the repository at this point in the history
  14. update intrastat_base

    luc-demeyer authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    01c9fbe View commit details
    Browse the repository at this point in the history
  15. [IMP] intrastat_base: Update README.rst + rename variables + restore …

    …code lost in transition to github/OCA/intrastat
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    234384f View commit details
    Browse the repository at this point in the history
  16. [MIG] intrastat_base: Migration to v10

    * Update README.rst: switch to new intrastat project
    * Move Intrastat menu entry to Accounting > Report instead of Accounting > Report > PDF Reports (because intrastat reports are not in PDF !)
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    64decc7 View commit details
    Browse the repository at this point in the history
  17. [MIG] intrastat_base: Migration to 11.0

    Kumar Aberer authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    89f05b3 View commit details
    Browse the repository at this point in the history
  18. [IMP] *: removed utf-8 headers, changed icon and site

    * company model test, country model test as in v8
    * png logo instead of svg, removed Python 2 utf-8 headers
    
    [UPD] squashed administrative commits
    rvalyi authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    f34f44b View commit details
    Browse the repository at this point in the history
  19. [10.0][FIX] intrastat_common - remove check on EUR

    EU countries are subject to Intrastat, also EU countries outside of the EU zone.
    As a consequence the check on company currency == EUR must be removed from this module (the right place are the localization modules).
    luc-demeyer authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    a8e414c View commit details
    Browse the repository at this point in the history
  20. Add new module product_harmonized_system_delivery (hide native hs_cod…

    …e field)
    
    Finalize port to v11
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    c5d7701 View commit details
    Browse the repository at this point in the history
  21. [FIX+IMP] intrastat_*: Several things:

    * Add readonly on some fields when state of declaration is done
    * Division by zero in computation of accessory costs
    * Add FR translation
    * Fix strings
    * Minor code updates
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    44089f5 View commit details
    Browse the repository at this point in the history
  22. [MIG] intrastat_product: Migration to 11.0

    * Small fixes in intrastat_base
    * account_tax_template
    
    [UPD] Update intrastat_base.pot
    luc-demeyer authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    961c360 View commit details
    Browse the repository at this point in the history
  23. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-11.0/intrastat-extrastat-11.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-11-0/intrastat-extrastat-11-0-intrastat_base/
    oca-transbot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    c63f76f View commit details
    Browse the repository at this point in the history
  24. Prepare v12 branch

    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    794ba9a View commit details
    Browse the repository at this point in the history
  25. [MIG] Migrate all modules from v11 to v12

    [UPD] Update intrastat_base.pot
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    98c12c3 View commit details
    Browse the repository at this point in the history
  26. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-12.0/intrastat-extrastat-12.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-12-0/intrastat-extrastat-12-0-intrastat_base/
    
    [UPD] README.rst
    
    [UPD] README.rst
    oca-transbot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    96b4791 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    4a498f9 View commit details
    Browse the repository at this point in the history
  28. pre-commit

    luc-demeyer authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    638e210 View commit details
    Browse the repository at this point in the history
  29. [UPD] Update intrastat_base.pot

    oca-travis authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    b68aa3d View commit details
    Browse the repository at this point in the history
  30. [UPD] README.rst

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    4169cc4 View commit details
    Browse the repository at this point in the history
  31. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-13.0/intrastat-extrastat-13.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-13-0/intrastat-extrastat-13-0-intrastat_base/
    oca-transbot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    1dd02bf View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    ade634e View commit details
    Browse the repository at this point in the history
  33. [13.0][FIX]attach_xml_file

    luc-demeyer authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    b289176 View commit details
    Browse the repository at this point in the history
  34. intrastat_base 13.0.1.1.0

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    e071692 View commit details
    Browse the repository at this point in the history
  35. pre-commit update

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    2d2d975 View commit details
    Browse the repository at this point in the history
  36. intrastat_product: Add xml_attachment_id field

    intrastat_product: add mail.activity.mixin and widget in form view
    product_harmonized_system: remove archive button (use Action menu)
    All modules:
    - use super() instead of super(class, self)
    - Update domain_force in multi-company ir.rule to v13 standard
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    4d529de View commit details
    Browse the repository at this point in the history
  37. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-13.0/intrastat-extrastat-13.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-13-0/intrastat-extrastat-13-0-intrastat_base/
    oca-transbot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    ff185af View commit details
    Browse the repository at this point in the history
  38. [MIG] intrastat_base from v13 to v14

    Up-port PR OCA#98
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    bb7958c View commit details
    Browse the repository at this point in the history
  39. intrastat_base: remove methods in intrastat.common that are not usefu…

    …l any more
    
    Rename variables to avoid misunderstanding between string and bytes
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    99a52b9 View commit details
    Browse the repository at this point in the history
  40. [UPD] README.rst

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    5dded78 View commit details
    Browse the repository at this point in the history
  41. [IMP] update dotfiles [ci skip]

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    329612b View commit details
    Browse the repository at this point in the history
  42. intrastat_base: use fiscal position, following suggestion on issue OC…

    …A#110
    
    Improve layout of config page
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    69f3bdb View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    98430e7 View commit details
    Browse the repository at this point in the history
  44. Remove intrastat from res.country

    Remove useless code from intrastat.common
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    c114964 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    920182f View commit details
    Browse the repository at this point in the history
  46. [UPD] Update intrastat_base.pot

    oca-travis authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    e361ed4 View commit details
    Browse the repository at this point in the history
  47. [UPD] README.rst

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    efe8c0f View commit details
    Browse the repository at this point in the history
  48. intrastat_base 14.0.2.0.0

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    4037995 View commit details
    Browse the repository at this point in the history
  49. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-14.0/intrastat-extrastat-14.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-14-0/intrastat-extrastat-14-0-intrastat_base/
    oca-transbot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    f43b881 View commit details
    Browse the repository at this point in the history
  50. Translated using Weblate (French)

    Currently translated at 100.0% (34 of 34 strings)
    
    Translation: intrastat-extrastat-14.0/intrastat-extrastat-14.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-14-0/intrastat-extrastat-14-0-intrastat_base/fr/
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    4322b73 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    c1e07cd View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    50bb826 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    9faf6b9 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    e840893 View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    3e427eb View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    39c7faf View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    dd987ae View commit details
    Browse the repository at this point in the history
  58. [UPD] Update intrastat_base.pot

    oca-ci authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    0cdf5d5 View commit details
    Browse the repository at this point in the history
  59. [UPD] README.rst

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    5eb8ca8 View commit details
    Browse the repository at this point in the history
  60. [IMP] intrastat_base: Brexit support

    TT37486
    victoralmau authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    8237342 View commit details
    Browse the repository at this point in the history
  61. [UPD] Update intrastat_base.pot

    oca-ci authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    f3c0e40 View commit details
    Browse the repository at this point in the history
  62. intrastat_base 15.0.1.0.1

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    0d2d26b View commit details
    Browse the repository at this point in the history
  63. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-15.0/intrastat-extrastat-15.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-15-0/intrastat-extrastat-15-0-intrastat_base/
    oca-transbot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    7375e6b View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    19f9dd4 View commit details
    Browse the repository at this point in the history
  65. intrastat_base: intrastat field is now a selection field

    intrastat field on account.fiscal.position is now a selection field with
    3 values : b2b/b2c/no
    Add views on account.fiscal.position.template
    alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    93651b0 View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    1a34e3b View commit details
    Browse the repository at this point in the history
  67. [UPD] Update intrastat_base.pot

    oca-ci authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    43e90e5 View commit details
    Browse the repository at this point in the history
  68. [UPD] README.rst

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    fa14222 View commit details
    Browse the repository at this point in the history
  69. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-16.0/intrastat-extrastat-16.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-16-0/intrastat-extrastat-16-0-intrastat_base/
    weblate authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    50eae86 View commit details
    Browse the repository at this point in the history
  70. Translated using Weblate (French)

    Currently translated at 100.0% (23 of 23 strings)
    
    Translation: intrastat-extrastat-16.0/intrastat-extrastat-16.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-16-0/intrastat-extrastat-16-0-intrastat_base/fr/
    sanrav authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    5730877 View commit details
    Browse the repository at this point in the history
  71. Translated using Weblate (French)

    Currently translated at 100.0% (23 of 23 strings)
    
    Translation: intrastat-extrastat-16.0/intrastat-extrastat-16.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-16-0/intrastat-extrastat-16-0-intrastat_base/fr/
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    c7a1ed5 View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    872922b View commit details
    Browse the repository at this point in the history
  73. [UPD] Update intrastat_base.pot

    oca-ci authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    6f53adb View commit details
    Browse the repository at this point in the history
  74. intrastat_base 16.0.1.1.0

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    3205bb0 View commit details
    Browse the repository at this point in the history
  75. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-16.0/intrastat-extrastat-16.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-16-0/intrastat-extrastat-16-0-intrastat_base/
    weblate authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    8e34dad View commit details
    Browse the repository at this point in the history
  76. Translated using Weblate (French)

    Currently translated at 100.0% (23 of 23 strings)
    
    Translation: intrastat-extrastat-16.0/intrastat-extrastat-16.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-16-0/intrastat-extrastat-16-0-intrastat_base/fr/
    Alexis de Lattre authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    ee9d553 View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    093b651 View commit details
    Browse the repository at this point in the history
  78. Translated using Weblate (Spanish)

    Currently translated at 100.0% (23 of 23 strings)
    
    Translation: intrastat-extrastat-16.0/intrastat-extrastat-16.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-16-0/intrastat-extrastat-16-0-intrastat_base/es/
    Ivorra78 authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    1deb4e1 View commit details
    Browse the repository at this point in the history
  79. [UPD] README.rst

    OCA-git-bot authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    6224ee3 View commit details
    Browse the repository at this point in the history
  80. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: intrastat-extrastat-16.0/intrastat-extrastat-16.0-intrastat_base
    Translate-URL: https://translation.odoo-community.org/projects/intrastat-extrastat-16-0/intrastat-extrastat-16-0-intrastat_base/
    weblate authored and alexis-via committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    331ef70 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    9dff706 View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    af5e5f8 View commit details
    Browse the repository at this point in the history