-
-
Notifications
You must be signed in to change notification settings - Fork 320
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
base: 18.0
Are you sure you want to change the base?
Commits on Oct 28, 2024
-
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
Configuration menu - View commit details
-
Copy full SHA for acedcfe - Browse repository at this point
Copy the full SHA acedcfeView commit details -
[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
Configuration menu - View commit details
-
Copy full SHA for b919317 - Browse repository at this point
Copy the full SHA b919317View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for c282385 - Browse repository at this point
Copy the full SHA c282385View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 3d50a33 - Browse repository at this point
Copy the full SHA 3d50a33View commit details -
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'
Configuration menu - View commit details
-
Copy full SHA for 030e14b - Browse repository at this point
Copy the full SHA 030e14bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4aa6b4b - Browse repository at this point
Copy the full SHA 4aa6b4bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b5bf5e - Browse repository at this point
Copy the full SHA 7b5bf5eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5fac51 - Browse repository at this point
Copy the full SHA d5fac51View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7aa2392 - Browse repository at this point
Copy the full SHA 7aa2392View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e68bba - Browse repository at this point
Copy the full SHA 6e68bbaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a5094c - Browse repository at this point
Copy the full SHA 7a5094cView commit details -
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)
Configuration menu - View commit details
-
Copy full SHA for 521a3eb - Browse repository at this point
Copy the full SHA 521a3ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 14dceb9 - Browse repository at this point
Copy the full SHA 14dceb9View commit details -
[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.
Configuration menu - View commit details
-
Copy full SHA for 39783ee - Browse repository at this point
Copy the full SHA 39783eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 49fdb7f - Browse repository at this point
Copy the full SHA 49fdb7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 21b1933 - Browse repository at this point
Copy the full SHA 21b1933View commit details -
[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
Configuration menu - View commit details
-
Copy full SHA for cbdf1b1 - Browse repository at this point
Copy the full SHA cbdf1b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae358a2 - Browse repository at this point
Copy the full SHA ae358a2View commit details -
[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
Configuration menu - View commit details
-
Copy full SHA for b2a7527 - Browse repository at this point
Copy the full SHA b2a7527View commit details -
Provided steps to installing PyCups
Configuration menu - View commit details
-
Copy full SHA for 4999731 - Browse repository at this point
Copy the full SHA 4999731View commit details -
Configuration menu - View commit details
-
Copy full SHA for fbca73e - Browse repository at this point
Copy the full SHA fbca73eView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for fccad1e - Browse repository at this point
Copy the full SHA fccad1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6380ffb - Browse repository at this point
Copy the full SHA 6380ffbView commit details -
[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
Configuration menu - View commit details
-
Copy full SHA for 98feb8a - Browse repository at this point
Copy the full SHA 98feb8aView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa3e714 - Browse repository at this point
Copy the full SHA fa3e714View commit details -
[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.
Configuration menu - View commit details
-
Copy full SHA for c7a3ec5 - Browse repository at this point
Copy the full SHA c7a3ec5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a656f1d - Browse repository at this point
Copy the full SHA a656f1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d0f340c - Browse repository at this point
Copy the full SHA d0f340cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 16371a4 - Browse repository at this point
Copy the full SHA 16371a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for bbc99a7 - Browse repository at this point
Copy the full SHA bbc99a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 127c54a - Browse repository at this point
Copy the full SHA 127c54aView commit details -
Configuration menu - View commit details
-
Copy full SHA for da0fd74 - Browse repository at this point
Copy the full SHA da0fd74View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for a64e5a4 - Browse repository at this point
Copy the full SHA a64e5a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 12c5421 - Browse repository at this point
Copy the full SHA 12c5421View commit details -
Configuration menu - View commit details
-
Copy full SHA for 987deeb - Browse repository at this point
Copy the full SHA 987deebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32a6d7c - Browse repository at this point
Copy the full SHA 32a6d7cView commit details -
Update base_report_to_printer/__manifest__.py
[13.0] [MIG] set correct website in manifest Co-Authored-By: Raf Ven <raf.ven@dynapps.be>
Configuration menu - View commit details
-
Copy full SHA for 76b9260 - Browse repository at this point
Copy the full SHA 76b9260View commit details -
Added job state 'cups-filter-crashed'.
Missing state caused periodic backtraces in the logs.
Configuration menu - View commit details
-
Copy full SHA for c6df932 - Browse repository at this point
Copy the full SHA c6df932View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bab990 - Browse repository at this point
Copy the full SHA 7bab990View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 21e97c0 - Browse repository at this point
Copy the full SHA 21e97c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0700b15 - Browse repository at this point
Copy the full SHA 0700b15View commit details -
Configuration menu - View commit details
-
Copy full SHA for fdcb2ae - Browse repository at this point
Copy the full SHA fdcb2aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for b8b6f60 - Browse repository at this point
Copy the full SHA b8b6f60View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33b8156 - Browse repository at this point
Copy the full SHA 33b8156View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d97538 - Browse repository at this point
Copy the full SHA 8d97538View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70d3a77 - Browse repository at this point
Copy the full SHA 70d3a77View commit details -
[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.
Configuration menu - View commit details
-
Copy full SHA for bb755aa - Browse repository at this point
Copy the full SHA bb755aaView commit details -
[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.
Configuration menu - View commit details
-
Copy full SHA for 2aa2979 - Browse repository at this point
Copy the full SHA 2aa2979View commit details -
[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
Configuration menu - View commit details
-
Copy full SHA for f00a467 - Browse repository at this point
Copy the full SHA f00a467View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9abf3a9 - Browse repository at this point
Copy the full SHA 9abf3a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f478705 - Browse repository at this point
Copy the full SHA f478705View commit details -
Configuration menu - View commit details
-
Copy full SHA for a27c544 - Browse repository at this point
Copy the full SHA a27c544View commit details -
Configuration menu - View commit details
-
Copy full SHA for eda8a08 - Browse repository at this point
Copy the full SHA eda8a08View commit details -
Configuration menu - View commit details
-
Copy full SHA for c2261d0 - Browse repository at this point
Copy the full SHA c2261d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 969f4da - Browse repository at this point
Copy the full SHA 969f4daView commit details -
Configuration menu - View commit details
-
Copy full SHA for 54ec6b0 - Browse repository at this point
Copy the full SHA 54ec6b0View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 7860a7e - Browse repository at this point
Copy the full SHA 7860a7eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b6aacff - Browse repository at this point
Copy the full SHA b6aacffView commit details -
Configuration menu - View commit details
-
Copy full SHA for d38a34c - Browse repository at this point
Copy the full SHA d38a34cView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for ea8cb06 - Browse repository at this point
Copy the full SHA ea8cb06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 06cf9a6 - Browse repository at this point
Copy the full SHA 06cf9a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 892af97 - Browse repository at this point
Copy the full SHA 892af97View commit details -
Configuration menu - View commit details
-
Copy full SHA for eac464c - Browse repository at this point
Copy the full SHA eac464cView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for af84056 - Browse repository at this point
Copy the full SHA af84056View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5cb9af - Browse repository at this point
Copy the full SHA f5cb9afView commit details -
Configuration menu - View commit details
-
Copy full SHA for b21121d - Browse repository at this point
Copy the full SHA b21121dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f077a81 - Browse repository at this point
Copy the full SHA f077a81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 167048c - Browse repository at this point
Copy the full SHA 167048cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 43a365f - Browse repository at this point
Copy the full SHA 43a365fView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 97f31f2 - Browse repository at this point
Copy the full SHA 97f31f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c77a2e - Browse repository at this point
Copy the full SHA 5c77a2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 794f3c6 - Browse repository at this point
Copy the full SHA 794f3c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for cbd9565 - Browse repository at this point
Copy the full SHA cbd9565View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 0072af5 - Browse repository at this point
Copy the full SHA 0072af5View commit details -
Configuration menu - View commit details
-
Copy full SHA for ff9bb66 - Browse repository at this point
Copy the full SHA ff9bb66View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5bb226e - Browse repository at this point
Copy the full SHA 5bb226eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b71727 - Browse repository at this point
Copy the full SHA 8b71727View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa6ec50 - Browse repository at this point
Copy the full SHA aa6ec50View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0551fba - Browse repository at this point
Copy the full SHA 0551fbaView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 18df114 - Browse repository at this point
Copy the full SHA 18df114View commit details -
Configuration menu - View commit details
-
Copy full SHA for e16f524 - Browse repository at this point
Copy the full SHA e16f524View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e7443f - Browse repository at this point
Copy the full SHA 8e7443fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6038cd4 - Browse repository at this point
Copy the full SHA 6038cd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 32ccb73 - Browse repository at this point
Copy the full SHA 32ccb73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1505bf5 - Browse repository at this point
Copy the full SHA 1505bf5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 67de83f - Browse repository at this point
Copy the full SHA 67de83fView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 72a1b59 - Browse repository at this point
Copy the full SHA 72a1b59View commit details -
Configuration menu - View commit details
-
Copy full SHA for 02ae4b7 - Browse repository at this point
Copy the full SHA 02ae4b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bdbab8 - Browse repository at this point
Copy the full SHA 8bdbab8View commit details -
base_report_to_printer: fix views
The views were not adapted to v16 during the v16 migration. This commit fixes this.
Configuration menu - View commit details
-
Copy full SHA for d3553b9 - Browse repository at this point
Copy the full SHA d3553b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for be5d217 - Browse repository at this point
Copy the full SHA be5d217View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 58ca3f2 - Browse repository at this point
Copy the full SHA 58ca3f2View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 067bf96 - Browse repository at this point
Copy the full SHA 067bf96View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for c378a50 - Browse repository at this point
Copy the full SHA c378a50View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for caca7b9 - Browse repository at this point
Copy the full SHA caca7b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c535ff - Browse repository at this point
Copy the full SHA 4c535ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 92d642c - Browse repository at this point
Copy the full SHA 92d642cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 431f6bc - Browse repository at this point
Copy the full SHA 431f6bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 00c69d5 - Browse repository at this point
Copy the full SHA 00c69d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fb91be - Browse repository at this point
Copy the full SHA 3fb91beView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 1154546 - Browse repository at this point
Copy the full SHA 1154546View commit details -
[FIX] base_report_to_printer: fix encoding
In Python3, os.write requires bytes-like object
Configuration menu - View commit details
-
Copy full SHA for 92efbd0 - Browse repository at this point
Copy the full SHA 92efbd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for bf99cd5 - Browse repository at this point
Copy the full SHA bf99cd5View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 4174621 - Browse repository at this point
Copy the full SHA 4174621View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for efc4fff - Browse repository at this point
Copy the full SHA efc4fffView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 4f77ec1 - Browse repository at this point
Copy the full SHA 4f77ec1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b15d25 - Browse repository at this point
Copy the full SHA 7b15d25View commit details -
Configuration menu - View commit details
-
Copy full SHA for d3894b4 - Browse repository at this point
Copy the full SHA d3894b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for ffa3451 - Browse repository at this point
Copy the full SHA ffa3451View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9497392 - Browse repository at this point
Copy the full SHA 9497392View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 83c8c4c - Browse repository at this point
Copy the full SHA 83c8c4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 039649d - Browse repository at this point
Copy the full SHA 039649dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d16713 - Browse repository at this point
Copy the full SHA 4d16713View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 1086fae - Browse repository at this point
Copy the full SHA 1086faeView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for b89613f - Browse repository at this point
Copy the full SHA b89613fView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for cc5646e - Browse repository at this point
Copy the full SHA cc5646eView commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 9fb5fd4 - Browse repository at this point
Copy the full SHA 9fb5fd4View commit details -
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/
Configuration menu - View commit details
-
Copy full SHA for 2614df0 - Browse repository at this point
Copy the full SHA 2614df0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 57fda28 - Browse repository at this point
Copy the full SHA 57fda28View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9efa4f5 - Browse repository at this point
Copy the full SHA 9efa4f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71678f2 - Browse repository at this point
Copy the full SHA 71678f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3910470 - Browse repository at this point
Copy the full SHA 3910470View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58cba79 - Browse repository at this point
Copy the full SHA 58cba79View commit details