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

[18.0][MIG] base_report_to_printer: Migration to 18.0 #371

Open
wants to merge 123 commits into
base: 18.0
Choose a base branch
from

Commits on Oct 28, 2024

  1. base_calendar passed away

    Migrate ir_report.py to new API
    
    Migrate printing.py to new API
    
    Migrate res_users.py to new API
    
    Migrate report_xml_action.py to new API
    
    Migrate wizard/update_printers.py to new API
    
    Better view for wizard
    
    Recursion when calling a method with old-style api signature from browse
    
    Remove the Lock because it is useless on multiprocess
    
    Replace it by a database lock so the different processes are
    all aware of the lock and the last update timestamp.
    
    browse is called often enough to call the update routine (even too much)
    
    Implements the print on the new 'report' model
    
    Restore the print capability on deprecated reports
    
    Update copyrights
    
    Improve form view, add search view for printers
    
    Update translations, add a string to URI so it is uppercased
    
    missing api decorator
    
    We need the report in print_document and print options (needed in
    printer_tray)
    
    Move the 'skip_update' right in the browse, it prevents a loop
    
    See odoo/odoo#3644
    
    Also, it helps to have the value set/read in context close to each
    other.
    
    Avoid to hits the database too many times to check if the list of
    printers needs to be refreshed.
    
    Keep the last update datetime in cache and invalidate this datetime if is
    is older than POLL_INTERVAL.  Thus, one process won't hit the DB more
    than 1 time every POLL_INTERVAL (10 seconds currently) to check if it
    needs to update the list.
    
    Refresh the list of printers every 15 seconds instead of 10
    
    Extract a method so it will be easier to override in printer_tray
    
    Error on installation of the module
    
    Invalidate the cache when the table is created so the table_exists()
    method returns a fresh value after creation of the table
    
    Use a cron instead of threads to update printers status
    
    The implementation with threads was blocking the loading of the
    server in multiprocess.  Using a cron will lower the frequency of
    the updates but at least it is simple and reliable.
    
    Fixes OCA#14
    
    Do not write the printer status if it has not changed
    
    Avoid unnecessary UPDATE every minute
    
    Clean the XML file (remove eval, reindent)
    
    Give access to models to all users for reading
    
    So they are able to print
    guewen authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    acedcfe View commit details
    Browse the repository at this point in the history
  2. [FIX] Bug OCA#19 avoid crash when using 'raw' option

    [Usability] Auto-add Administrator user to the Print group
    Make XML code more readable
    
    base_report_to_printer: add support for remote CUPS server (not just localhost)
    More logging and better error handling
    
    Add CUPS_HOST in more debug logs
    Alexis de Lattre authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    b919317 View commit details
    Browse the repository at this point in the history
  3. Do no longer returns a PDF when a report is printed

    Instead, a notification is displayed to the user.
    When report.get_pdf() is called on a report that must be printer,
    it will print the report *and* returns the pdf, thus code that
    calls directly report.get_pdf() will print the pdf on the printer
    as expected.
    
    Fixes OCA#16
    guewen authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    c282385 View commit details
    Browse the repository at this point in the history
  4. Add OCA as author of OCA addons

    In order to get visibility on https://www.odoo.com/apps the OCA board has
    decided to add the OCA as author of all the addons maintained as part of the
    association.
    gurneyalex authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    3d50a33 View commit details
    Browse the repository at this point in the history
  5. Compatibility fix for report with custom parser

    By calling `super.get_pdf` in print_document we can encounter trouble with MRO resolution
    that prevent custom report parser (e.g. override of `get_pdf`) to be called.
    
    The fix consist of not calling `super` and prevent multiple call to 'printer.print_document'
    nbessi authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    030e14b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4aa6b4b View commit details
    Browse the repository at this point in the history
  7. Improve bloated condition test

    nbessi authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    7b5bf5e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d5fac51 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7aa2392 View commit details
    Browse the repository at this point in the history
  10. [PEP8]

    yvaucher authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    6e68bba View commit details
    Browse the repository at this point in the history
  11. [UPD] prefix versions with 8.0

    sbidoul authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    7a5094c View commit details
    Browse the repository at this point in the history
  12. pass context to printer to use it for example in print_options()

    * context was lost while getting report
    * now it will be passed using with_context
    * could be used for print_options (example: pass copies amount for
    productlabals)
    intero-chz authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    521a3eb View commit details
    Browse the repository at this point in the history
  13. Add support for multiple copies

    alexis-via authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    14dceb9 View commit details
    Browse the repository at this point in the history
  14. [IMP] Soft fail on missing cups import

    cups is an external dependency, if it is not installed Odoo will not start.
    OCA guidelines specify guidelines for External dependencies, code is from there.
    Roel Adriaans authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    39783ee View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    49fdb7f View commit details
    Browse the repository at this point in the history
  16. Fix placeholder for repo in readme.rst

    yvaucher authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    21b1933 View commit details
    Browse the repository at this point in the history
  17. [10.0][MIG] base_report_to_printer (OCA#68)

    * Set api.multi for action called as `object` on view
    
    * Merge syleam printers module into base_report_to_printer (OCA#60)
    
    * [IMP] Updated unit tests
    
    * [FIX] Fixed renamed attributes
    
    * [FIX] Remove deleted fields
    
    * [IMP] Add printing.server and printing.job models
    
    * [IMP] Allow to cancel all jobs, enable, and disable printers
    
    * [IMP] Split the cups part of print_document into a new print_file method
    
    * [IMP] Updated cron job to run the action_update_jobs method
    
    * [ADD] Add a migration script to create a printing server from configuration
    
    * [MIG] Migrate base_report_to_printer to v10.0
    
    Removed deprecated methods on printing.printer (replaced by methods on
            printing.server)
    
    * [IMP] Add wkhtmltopdf in travis configuration file
    
    * [FIX] base_report_to_printer: Fix Update Job Cron
    * Fix API issue with Update Job Cron
    ** Forward Port from 9.0
    
    * [FIX] Fixed the res.users view
    
    The string attribute should not be used as a selector, because it is
    translatable.
    
    * [FIX] Fixed the print_document method of report
    
    The new API migration was made to @api.multi because of the "cr, uid,
    ids" signature, but "ids" was the ids of the records to print here, not
    the report's ids.
    Also, the new API version of "get_pdf" get directly the ids of the
    records to print in the standard module, not a recordset.
    
    * [FIX] UI is now (un)blocked only when using qweb-pdf reports in standard addons
    Sylvain Garancher authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    cbdf1b1 View commit details
    Browse the repository at this point in the history
  18. [MIG] Rename manifest files

    pedrobaeza authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    ae358a2 View commit details
    Browse the repository at this point in the history
  19. [10] FIX format parameter (OCA#84)

    * FIX format parameter
    
    To be able to print files in raw format it's needed to set this parameter.
    
    Previous code was not able to print raw files, but it didn't get error because 'format' used on line 107 is assumed as a format funtion, because format parameter was not on this scope.
    
    * FIX pep8
    angelmoya authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    b2a7527 View commit details
    Browse the repository at this point in the history
  20. Update README.rst

    Provided steps to installing PyCups
    blutecsolutions authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    4999731 View commit details
    Browse the repository at this point in the history
  21. [FIX] base_report_to_printer: A button method should be @api.multi

    Sylvain GARANCHER authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    fbca73e View commit details
    Browse the repository at this point in the history
  22. [FIX] Minor bugfixes

    Printer Tray isn't an app
    Base Report To printer ir.actions.report.xml view xpath error and missing page name
    Put to before security as security tab doesn't do much and if this module is installed it should be the hero page
    gdgellatly authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    fccad1e View commit details
    Browse the repository at this point in the history
  23. [MIG] base_report_to_printer: Migrate to v11.0

    Sylvain GARANCHER authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    6380ffb View commit details
    Browse the repository at this point in the history
  24. [WIP] Commit before rebase on latest OCA#109 for user and view updates

    Migration of printer_tray to v11 and integration with base_report_to_printer
    gdgellatly authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    98feb8a View commit details
    Browse the repository at this point in the history
  25. FIX view

    fmdl authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    fa3e714 View commit details
    Browse the repository at this point in the history
  26. [FIX] base_report_to_printer: Stateless tests (OCA#123)

    If the test was run in a database with the `account` module installed, they were failing for 2 reasons:
    
    - It was searching for the first report it could find, with the first 5 records to report. This made it load the `account.report_agedpartnerbalance` report, which caused a fake `TypeError: 'NoneType' object has no attribute '__getitem__'` error.
    - It was running tests without loading the full module graph, thus not getting the default value for the new required `invoice_warn` field.
    
    Now tests are run in `post_install` mode to load full module graph, and they use stateless data.
    yajo authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    c7a3ec5 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    a656f1d View commit details
    Browse the repository at this point in the history
  28. [FIX] Allow to generate printing options without a report

    Sylvain GARANCHER authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    d0f340c View commit details
    Browse the repository at this point in the history
  29. [FIX] Permission issue

    Bhavesh Odedra authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    16371a4 View commit details
    Browse the repository at this point in the history
  30. [FIX] missing super declaration

    etobella authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    bbc99a7 View commit details
    Browse the repository at this point in the history
  31. [FIX][base_report_to_printer] - behaviour to print the report succesf…

    …ully.
    Oscar Ulises Garza Cordova authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    127c54a View commit details
    Browse the repository at this point in the history
  32. [FIX] Group inheritance

    max3903 authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    da0fd74 View commit details
    Browse the repository at this point in the history
  33. Translated using Weblate (Spanish)

    Currently translated at 99.3% (139 of 140 strings)
    
    Translation: report-print-send-11.0/report-print-send-11.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-11-0/report-print-send-11-0-base_report_to_printer/es/
    etobella authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    a64e5a4 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    12c5421 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    987deeb View commit details
    Browse the repository at this point in the history
  36. [FIX] .travis.yml: Update definition

    pedrobaeza authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    32a6d7c View commit details
    Browse the repository at this point in the history
  37. Update base_report_to_printer/__manifest__.py

    [13.0] [MIG] set correct website in manifest
    
    Co-Authored-By: Raf Ven <raf.ven@dynapps.be>
    2 people authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    76b9260 View commit details
    Browse the repository at this point in the history
  38. Added job state 'cups-filter-crashed'.

    Missing state caused periodic backtraces in the logs.
    igh-fp authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    c6df932 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    7bab990 View commit details
    Browse the repository at this point in the history
  40. Translated using Weblate (Spanish (Argentina))

    Currently translated at 100.0% (141 of 141 strings)
    
    Translation: report-print-send-13.0/report-print-send-13.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-13-0/report-print-send-13-0-base_report_to_printer/es_AR/
    ibuioli authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    21e97c0 View commit details
    Browse the repository at this point in the history
  41. [IMP] base_report_to_printer: archive printers

    Jaime Arroyo authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    0700b15 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    fdcb2ae View commit details
    Browse the repository at this point in the history
  43. [MIG] base_report_to_printer: Migration to v14

    Alexis de Lattre authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    b8b6f60 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    33b8156 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    8d97538 View commit details
    Browse the repository at this point in the history
  46. [UPD] README.rst

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    70d3a77 View commit details
    Browse the repository at this point in the history
  47. [IMP] base_report_to_printer: Avoid writing on printing printers/jobs…

    … if no change
    
    The cron (by default) every minute, updates the printing.printer and
    printing.job records from the cups server. The field values rarely
    change, so we can prevent many updates in database.
    
    Also, writing on `printing_printer.server_id` triggers another update
    on the printing.job records as the model has a stored related field.
    guewen authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    bb755aa View commit details
    Browse the repository at this point in the history
  48. [IMP] 14.0 base_report_to_printer: improve job title

    instead of sending a temporary random file name as the title of the job,
    use the report file name. Since this is not displayed by default by
    cups, document how to configure the CUPS server so that the information
    can be displayed.
    
    Clean up the temporary file after printing to avoid cluttering the
    server in the long run.
    gurneyalex authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    2aa2979 View commit details
    Browse the repository at this point in the history
  49. [FIX] base_report_to_printer: error printing in external network.

    Error code: 1030, 'The printer or class does not exist.')".
    An explicit call to `setServer` and `setPort` fixed the issue.
    (see OpenPrinting/pycups#30)
    
    Also, added serve_id to printer views
    LoisRForgeFlow authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    f00a467 View commit details
    Browse the repository at this point in the history
  50. [UPD] README.rst

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    9abf3a9 View commit details
    Browse the repository at this point in the history
  51. base_report_to_printer 14.0.1.1.0

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    f478705 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    a27c544 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    eda8a08 View commit details
    Browse the repository at this point in the history
  54. base_report_to_printer 14.0.1.1.1

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    c2261d0 View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    969f4da View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    54ec6b0 View commit details
    Browse the repository at this point in the history
  57. Translated using Weblate (Swedish)

    Currently translated at 95.0% (134 of 141 strings)
    
    Translation: report-print-send-14.0/report-print-send-14.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-14-0/report-print-send-14-0-base_report_to_printer/sv/
    simonstromb authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    7860a7e View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    b6aacff View commit details
    Browse the repository at this point in the history
  59. base_report_to_printer 14.0.1.2.0

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    d38a34c View commit details
    Browse the repository at this point in the history
  60. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: report-print-send-14.0/report-print-send-14.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-14-0/report-print-send-14-0-base_report_to_printer/
    oca-transbot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    ea8cb06 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    06cf9a6 View commit details
    Browse the repository at this point in the history
  62. Configuration menu
    Copy the full SHA
    892af97 View commit details
    Browse the repository at this point in the history
  63. base_report_to_printer 14.0.2.0.0

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    eac464c View commit details
    Browse the repository at this point in the history
  64. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: report-print-send-14.0/report-print-send-14.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-14-0/report-print-send-14-0-base_report_to_printer/
    oca-transbot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    af84056 View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    f5cb9af View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    b21121d View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    f077a81 View commit details
    Browse the repository at this point in the history
  68. [UPD] Update base_report_to_printer.pot

    oca-ci authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    167048c View commit details
    Browse the repository at this point in the history
  69. [UPD] README.rst

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    43a365f View commit details
    Browse the repository at this point in the history
  70. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: report-print-send-15.0/report-print-send-15.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-15-0/report-print-send-15-0-base_report_to_printer/
    weblate authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    97f31f2 View commit details
    Browse the repository at this point in the history
  71. Configuration menu
    Copy the full SHA
    5c77a2e View commit details
    Browse the repository at this point in the history
  72. [UPD] Update base_report_to_printer.pot

    oca-ci authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    794f3c6 View commit details
    Browse the repository at this point in the history
  73. [UPD] README.rst

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    cbd9565 View commit details
    Browse the repository at this point in the history
  74. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/
    weblate authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    0072af5 View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    ff9bb66 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    5bb226e View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    8b71727 View commit details
    Browse the repository at this point in the history
  78. Configuration menu
    Copy the full SHA
    aa6ec50 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    0551fba View commit details
    Browse the repository at this point in the history
  80. fix(OCA#259): handle case of print attachment wizard

    The fix in OCA#259 only worked for reports being printed at generation
    of the PDF. This PR handles sending an attachment to a printer through
    the Print Attachment wizard.
    
    Also clarify the configuration section of the README.
    gurneyalex authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    18df114 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    e16f524 View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    8e7443f View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    6038cd4 View commit details
    Browse the repository at this point in the history
  84. [UPD] Update base_report_to_printer.pot

    oca-ci authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    32ccb73 View commit details
    Browse the repository at this point in the history
  85. [UPD] README.rst

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    1505bf5 View commit details
    Browse the repository at this point in the history
  86. base_report_to_printer 16.0.1.1.0

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    67de83f View commit details
    Browse the repository at this point in the history
  87. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/
    weblate authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    72a1b59 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    02ae4b7 View commit details
    Browse the repository at this point in the history
  89. base_report_to_printer 16.0.1.1.1

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    8bdbab8 View commit details
    Browse the repository at this point in the history
  90. base_report_to_printer: fix views

    The views were not adapted to v16 during the v16 migration. This commit
    fixes this.
    alexis-via authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    d3553b9 View commit details
    Browse the repository at this point in the history
  91. base_report_to_printer 16.0.1.1.2

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    be5d217 View commit details
    Browse the repository at this point in the history
  92. Translated using Weblate (Italian)

    Currently translated at 20.1% (33 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/it/
    francesco-ooops authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    58ca3f2 View commit details
    Browse the repository at this point in the history
  93. Translated using Weblate (Italian)

    Currently translated at 20.1% (33 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/it/
    francesco-ooops authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    067bf96 View commit details
    Browse the repository at this point in the history
  94. Translated using Weblate (Italian)

    Currently translated at 20.1% (33 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/it/
    mymage authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    c378a50 View commit details
    Browse the repository at this point in the history
  95. Translated using Weblate (Spanish)

    Currently translated at 100.0% (164 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/es/
    Ivorra78 authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    caca7b9 View commit details
    Browse the repository at this point in the history
  96. Configuration menu
    Copy the full SHA
    4c535ff View commit details
    Browse the repository at this point in the history
  97. base_report_to_printer 16.0.1.1.3

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    92d642c View commit details
    Browse the repository at this point in the history
  98. Configuration menu
    Copy the full SHA
    431f6bc View commit details
    Browse the repository at this point in the history
  99. base_report_to_printer 16.0.1.1.4

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    00c69d5 View commit details
    Browse the repository at this point in the history
  100. [UPD] README.rst

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    3fb91be View commit details
    Browse the repository at this point in the history
  101. Translated using Weblate (French)

    Currently translated at 100.0% (164 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/fr/
    Alexis de Lattre authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    1154546 View commit details
    Browse the repository at this point in the history
  102. [FIX] base_report_to_printer: fix encoding

    In Python3, os.write requires bytes-like object
    jbaudoux authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    92efbd0 View commit details
    Browse the repository at this point in the history
  103. [BOT] post-merge updates

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    bf99cd5 View commit details
    Browse the repository at this point in the history
  104. Translated using Weblate (Italian)

    Currently translated at 76.2% (125 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/it/
    mymage authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    4174621 View commit details
    Browse the repository at this point in the history
  105. Translated using Weblate (Italian)

    Currently translated at 100.0% (164 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/it/
    mymage authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    efc4fff View commit details
    Browse the repository at this point in the history
  106. Translated using Weblate (Italian)

    Currently translated at 100.0% (164 of 164 strings)
    
    Translation: report-print-send-16.0/report-print-send-16.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-16-0/report-print-send-16-0-base_report_to_printer/it/
    mymage authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    4f77ec1 View commit details
    Browse the repository at this point in the history
  107. Configuration menu
    Copy the full SHA
    7b15d25 View commit details
    Browse the repository at this point in the history
  108. Configuration menu
    Copy the full SHA
    d3894b4 View commit details
    Browse the repository at this point in the history
  109. [UPD] Update base_report_to_printer.pot

    oca-ci authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    ffa3451 View commit details
    Browse the repository at this point in the history
  110. [BOT] post-merge updates

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    9497392 View commit details
    Browse the repository at this point in the history
  111. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: report-print-send-17.0/report-print-send-17.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-17-0/report-print-send-17-0-base_report_to_printer/
    weblate authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    83c8c4c View commit details
    Browse the repository at this point in the history
  112. [FIX] line too long

    sbidoul authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    039649d View commit details
    Browse the repository at this point in the history
  113. [BOT] post-merge updates

    OCA-git-bot authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    4d16713 View commit details
    Browse the repository at this point in the history
  114. Translated using Weblate (Italian)

    Currently translated at 100.0% (160 of 160 strings)
    
    Translation: report-print-send-17.0/report-print-send-17.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-17-0/report-print-send-17-0-base_report_to_printer/it/
    mymage authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    1086fae View commit details
    Browse the repository at this point in the history
  115. Translated using Weblate (Italian)

    Currently translated at 100.0% (160 of 160 strings)
    
    Translation: report-print-send-17.0/report-print-send-17.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-17-0/report-print-send-17-0-base_report_to_printer/it/
    mymage authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    b89613f View commit details
    Browse the repository at this point in the history
  116. Translated using Weblate (Swedish)

    Currently translated at 100.0% (160 of 160 strings)
    
    Translation: report-print-send-17.0/report-print-send-17.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-17-0/report-print-send-17-0-base_report_to_printer/sv/
    jakobkrabbe authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    cc5646e View commit details
    Browse the repository at this point in the history
  117. Translated using Weblate (Chinese (Simplified) (zh_CN))

    Currently translated at 100.0% (160 of 160 strings)
    
    Translation: report-print-send-17.0/report-print-send-17.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-17-0/report-print-send-17-0-base_report_to_printer/zh_CN/
    xtanuiha authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    9fb5fd4 View commit details
    Browse the repository at this point in the history
  118. Translated using Weblate (Chinese (Simplified) (zh_CN))

    Currently translated at 100.0% (160 of 160 strings)
    
    Translation: report-print-send-17.0/report-print-send-17.0-base_report_to_printer
    Translate-URL: https://translation.odoo-community.org/projects/report-print-send-17-0/report-print-send-17-0-base_report_to_printer/zh_CN/
    xtanuiha authored and trisdoan committed Oct 28, 2024
    Configuration menu
    Copy the full SHA
    2614df0 View commit details
    Browse the repository at this point in the history
  119. Configuration menu
    Copy the full SHA
    57fda28 View commit details
    Browse the repository at this point in the history
  120. Configuration menu
    Copy the full SHA
    9efa4f5 View commit details
    Browse the repository at this point in the history
  121. Configuration menu
    Copy the full SHA
    71678f2 View commit details
    Browse the repository at this point in the history
  122. Configuration menu
    Copy the full SHA
    3910470 View commit details
    Browse the repository at this point in the history
  123. Configuration menu
    Copy the full SHA
    58cba79 View commit details
    Browse the repository at this point in the history