diff --git a/datetime_formatter/README.rst b/datetime_formatter/README.rst new file mode 100644 index 000000000..186e3be2f --- /dev/null +++ b/datetime_formatter/README.rst @@ -0,0 +1,108 @@ +===================== +Date & Time Formatter +===================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github + :target: https://github.com/OCA/server-tools/tree/14.0/datetime_formatter + :alt: OCA/server-tools +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/server-tools-14-0/server-tools-14-0-datetime_formatter + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/149/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module was written to extend the functionality of Odoo language engine to +support formatting `Date`, `Time` and `Datetime` fields easily and allow you to +print them in the best format for the user. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +This module adds a technical programming feature, and it should be used by +addon developers, not by end users. This means that you must not expect to see +any changes if you are a user and install this, but if you find you have it +already installed, it's probably because you have another modules that depend +on this one. + +If you are a developer, to use this module, you need to: + +* Call anywhere in your code:: + + formatted_string = self.env["res.lang"].datetime_formatter(datetime_value) + +* If you use Qweb:: + + + +* If you call it from a record that has a `lang` field:: + + formatted_string = record.lang.datetime_formatter(record.datetime_field) + +* ``models.ResLang.datetime_formatter`` docstring explains its usage. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Grupo ESOC Ingeniería de Servicios +* Tecnativa + +Contributors +~~~~~~~~~~~~ + +* `Tecnativa `_: + + * Jairo Llopis + * Vicent Cubells + * Ernesto Tejeda + * Víctor Martínez +* Tautvydas Banevičius +* Dhara Solanki + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/server-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/datetime_formatter/__init__.py b/datetime_formatter/__init__.py new file mode 100644 index 000000000..95d270c34 --- /dev/null +++ b/datetime_formatter/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import models + +# Make these easily available for submodules +from .models.res_lang import MODE_DATE, MODE_DATETIME, MODE_TIME diff --git a/datetime_formatter/__manifest__.py b/datetime_formatter/__manifest__.py new file mode 100644 index 000000000..646af25bf --- /dev/null +++ b/datetime_formatter/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2015, 2017 Jairo Llopis +# Copyright 2016 Tecnativa, S.L. - Vicent Cubells +# Copyright 2018 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + "name": "Date & Time Formatter", + "summary": "Helper functions to give correct format to date[time] fields", + "version": "15.0.1.0.0", + "category": "Tools", + "website": "https://github.com/OCA/server-tools", + "author": "Grupo ESOC Ingeniería de Servicios, Tecnativa, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "depends": ["base"], +} diff --git a/datetime_formatter/i18n/ar.po b/datetime_formatter/i18n/ar.po new file mode 100644 index 000000000..9f0468dfa --- /dev/null +++ b/datetime_formatter/i18n/ar.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# new stargate , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-11-26 01:46+0000\n" +"PO-Revision-Date: 2016-11-26 01:46+0000\n" +"Last-Translator: new stargate , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:0 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "" + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "اللغات" diff --git a/datetime_formatter/i18n/ca.po b/datetime_formatter/i18n/ca.po new file mode 100644 index 000000000..44cbb40f3 --- /dev/null +++ b/datetime_formatter/i18n/ca.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 12:21+0000\n" +"PO-Revision-Date: 2017-06-30 12:21+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:0 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "No s'ha trobat la millor associació d'idioma (%s). " + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Idiomes " diff --git a/datetime_formatter/i18n/datetime_formatter.pot b/datetime_formatter/i18n/datetime_formatter.pot new file mode 100644 index 000000000..96153bfb7 --- /dev/null +++ b/datetime_formatter/i18n/datetime_formatter.pot @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:0 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "" + +#. module: datetime_formatter +#: model:ir.model.fields,field_description:datetime_formatter.field_res_lang__display_name +msgid "Display Name" +msgstr "" + +#. module: datetime_formatter +#: model:ir.model.fields,field_description:datetime_formatter.field_res_lang__id +msgid "ID" +msgstr "" + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "" + +#. module: datetime_formatter +#: model:ir.model.fields,field_description:datetime_formatter.field_res_lang____last_update +msgid "Last Modified on" +msgstr "" + +#. module: datetime_formatter +#: model:ir.model.fields,field_description:datetime_formatter.field_res_lang__smart_search +msgid "Smart Search" +msgstr "" diff --git a/datetime_formatter/i18n/de.po b/datetime_formatter/i18n/de.po new file mode 100644 index 000000000..55afd3163 --- /dev/null +++ b/datetime_formatter/i18n/de.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 12:21+0000\n" +"PO-Revision-Date: 2017-06-30 12:21+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:0 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "Sprache (%s) mit bester Übereinstimmung nicht gefunden" + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Sprachen" diff --git a/datetime_formatter/i18n/es.po b/datetime_formatter/i18n/es.po new file mode 100644 index 000000000..1f03fce39 --- /dev/null +++ b/datetime_formatter/i18n/es.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 12:21+0000\n" +"PO-Revision-Date: 2017-06-30 12:21+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:0 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "No se ha encontrado ningún idioma (%s) que mejor case." + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Idiomas" diff --git a/datetime_formatter/i18n/fr.po b/datetime_formatter/i18n/fr.po new file mode 100644 index 000000000..bc5f2d814 --- /dev/null +++ b/datetime_formatter/i18n/fr.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# Christophe CHAUVET , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-21 06:45+0000\n" +"PO-Revision-Date: 2016-08-21 07:41+0000\n" +"Last-Translator: Christophe CHAUVET \n" +"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-8-0/" +"language/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:0 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "" + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Langues" diff --git a/datetime_formatter/i18n/hr.po b/datetime_formatter/i18n/hr.po new file mode 100644 index 000000000..4ae7117f5 --- /dev/null +++ b/datetime_formatter/i18n/hr.po @@ -0,0 +1,32 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# Goran Kliska , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 12:21+0000\n" +"PO-Revision-Date: 2019-11-13 17:34+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.8\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:0 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "Najsličiniji jezik (%s) nije pronađen." + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Jezici" diff --git a/datetime_formatter/i18n/it.po b/datetime_formatter/i18n/it.po new file mode 100644 index 000000000..f9e80b2c6 --- /dev/null +++ b/datetime_formatter/i18n/it.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# Paolo Valier, 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-17 15:37+0000\n" +"PO-Revision-Date: 2016-03-13 09:34+0000\n" +"Last-Translator: Paolo Valier\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/" +"language/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:59 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "" + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Lingue" diff --git a/datetime_formatter/i18n/nl_NL.po b/datetime_formatter/i18n/nl_NL.po new file mode 100644 index 000000000..4141a5a95 --- /dev/null +++ b/datetime_formatter/i18n/nl_NL.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 12:21+0000\n" +"PO-Revision-Date: 2017-06-30 12:21+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:59 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "Best overeenkomende taal (%s) niet gevonden." + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Talen" diff --git a/datetime_formatter/i18n/pt.po b/datetime_formatter/i18n/pt.po new file mode 100644 index 000000000..d8451d54e --- /dev/null +++ b/datetime_formatter/i18n/pt.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2019-08-14 12:44+0000\n" +"Last-Translator: Pedro Castro Silva \n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.7.1\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:59 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "O idioma com maior afinidade (%s) não foi encontrado." + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Idiomas" diff --git a/datetime_formatter/i18n/sl.po b/datetime_formatter/i18n/sl.po new file mode 100644 index 000000000..a92230fdd --- /dev/null +++ b/datetime_formatter/i18n/sl.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 12:21+0000\n" +"PO-Revision-Date: 2017-06-30 12:21+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:59 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "Najbolj ujemajoč jezik (%s) ni najden." + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Jeziki" diff --git a/datetime_formatter/i18n/tr.po b/datetime_formatter/i18n/tr.po new file mode 100644 index 000000000..d555a1f7e --- /dev/null +++ b/datetime_formatter/i18n/tr.po @@ -0,0 +1,30 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-30 12:21+0000\n" +"PO-Revision-Date: 2017-06-30 12:21+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:59 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "En iyi eşleşen dil (%s) bulunamadı." + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "Diller" diff --git a/datetime_formatter/i18n/zh_CN.po b/datetime_formatter/i18n/zh_CN.po new file mode 100644 index 000000000..5533ce859 --- /dev/null +++ b/datetime_formatter/i18n/zh_CN.po @@ -0,0 +1,28 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * datetime_formatter +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2019-08-31 05:07+0000\n" +"Last-Translator: 黎伟杰 <674416404@qq.com>\n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.8\n" + +#. module: datetime_formatter +#: code:addons/datetime_formatter/models/res_lang.py:59 +#, python-format +msgid "Best matched language (%s) not found." +msgstr "未找到最佳匹配语言(%s)。" + +#. module: datetime_formatter +#: model:ir.model,name:datetime_formatter.model_res_lang +msgid "Languages" +msgstr "语言" diff --git a/datetime_formatter/models/__init__.py b/datetime_formatter/models/__init__.py new file mode 100644 index 000000000..c2af0613e --- /dev/null +++ b/datetime_formatter/models/__init__.py @@ -0,0 +1,2 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import res_lang diff --git a/datetime_formatter/models/res_lang.py b/datetime_formatter/models/res_lang.py new file mode 100644 index 000000000..2495b25f2 --- /dev/null +++ b/datetime_formatter/models/res_lang.py @@ -0,0 +1,99 @@ +# Copyright 2015, 2017 Jairo Llopis +# Copyright 2016 Tecnativa, S.L. - Vicent Cubells +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from datetime import datetime, timedelta + +from odoo import _, api, fields, models +from odoo.exceptions import UserError +from odoo.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_TIME_FORMAT + +# Available modes for :param:`.ResLang.datetime_formatter.template` +MODE_DATETIME = "MODE_DATETIME" +MODE_DATE = "MODE_DATE" +MODE_TIME = "MODE_TIME" + + +class ResLang(models.Model): + _inherit = "res.lang" + + @api.model + def best_match(self, lang=None, failure_safe=True): + """Get best match of current default lang. + :param str lang: + If a language in the form of "en_US" is supplied, it will have the + highest priority. + :param bool failure_safe: + If ``False`` and the best matched language is not found installed, + an exception will be raised. Otherwise, the first installed + language found in the DB will be returned. + """ + # Find some installed language, as fallback + first_installed = self.search([("active", "=", True)], limit=1) + if not lang: + lang = ( + # Object's language, if called like + # ``record.lang.datetime_formatter(datetime_obj)`` + (self.ids and self[0].code) + or self.env.context.get("lang") + or self.env.user.lang + or first_installed.code + ) + # Get DB lang record + record = self.search([("code", "=", lang)]) + try: + record.ensure_one() + except ValueError as error: + if not failure_safe: + raise UserError( + _("Best matched language (%s) not found.") % lang + ) from error + else: + record = first_installed + return record + + @api.model + def datetime_formatter( + self, value, lang=None, template=MODE_DATETIME, separator=" ", failure_safe=True + ): + """Convert a datetime field to lang's default format. + :type value: `str`, `float` or `datetime.datetime` + :param value: + Datetime that will be formatted to the user's preferred format. + :param str lang: + See :param:`lang` from :meth:`~.best_match`. + :param bool failure_safe: + See :param:`failure_safe` from :meth:`~.best_match`. + :param str template: + Will be used to format :param:`value`. If it is one of the special + constants :const:`MODE_DATETIME`, :const:`MODE_DATE` or + :const:`MODE_TIME`, it will use the :param:`lang`'s default + template for that mode. + :param str separator: + Only used when :param:`template` is :const:`MODE_DATETIME`, as the + separator between the date and time parts. + """ + # Get the correct lang + lang = self.best_match(lang) + # Get the template + if template in {MODE_DATETIME, MODE_DATE, MODE_TIME}: + defaults = [] + if "DATE" in template: + defaults.append(lang.date_format or DEFAULT_SERVER_DATE_FORMAT) + if "TIME" in template: + defaults.append(lang.time_format or DEFAULT_SERVER_TIME_FORMAT) + template = separator.join(defaults) + # Convert str to datetime objects + if isinstance(value, str): + try: + value = fields.Datetime.to_datetime(value) + except ValueError: + # Probably failed due to value being only time + value = datetime.strptime(value, DEFAULT_SERVER_TIME_FORMAT) + # Time-only fields are floats for Odoo + elif isinstance(value, float): + # Patch values >= 24 hours + if value >= 24: + template = template.replace("%H", "%d" % value) + # Convert to time + value = (datetime.min + timedelta(hours=value)).time() + return value.strftime(template) diff --git a/datetime_formatter/readme/CONTRIBUTORS.rst b/datetime_formatter/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..3f6d7a61e --- /dev/null +++ b/datetime_formatter/readme/CONTRIBUTORS.rst @@ -0,0 +1,8 @@ +* `Tecnativa `_: + + * Jairo Llopis + * Vicent Cubells + * Ernesto Tejeda + * Víctor Martínez +* Tautvydas Banevičius +* Dhara Solanki diff --git a/datetime_formatter/readme/DESCRIPTION.rst b/datetime_formatter/readme/DESCRIPTION.rst new file mode 100644 index 000000000..785e26bc8 --- /dev/null +++ b/datetime_formatter/readme/DESCRIPTION.rst @@ -0,0 +1,3 @@ +This module was written to extend the functionality of Odoo language engine to +support formatting `Date`, `Time` and `Datetime` fields easily and allow you to +print them in the best format for the user. diff --git a/datetime_formatter/readme/USAGE.rst b/datetime_formatter/readme/USAGE.rst new file mode 100644 index 000000000..e461738d8 --- /dev/null +++ b/datetime_formatter/readme/USAGE.rst @@ -0,0 +1,21 @@ +This module adds a technical programming feature, and it should be used by +addon developers, not by end users. This means that you must not expect to see +any changes if you are a user and install this, but if you find you have it +already installed, it's probably because you have another modules that depend +on this one. + +If you are a developer, to use this module, you need to: + +* Call anywhere in your code:: + + formatted_string = self.env["res.lang"].datetime_formatter(datetime_value) + +* If you use Qweb:: + + + +* If you call it from a record that has a `lang` field:: + + formatted_string = record.lang.datetime_formatter(record.datetime_field) + +* ``models.ResLang.datetime_formatter`` docstring explains its usage. diff --git a/datetime_formatter/static/description/icon.png b/datetime_formatter/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/datetime_formatter/static/description/icon.png differ diff --git a/datetime_formatter/static/description/index.html b/datetime_formatter/static/description/index.html new file mode 100644 index 000000000..b0cd90b32 --- /dev/null +++ b/datetime_formatter/static/description/index.html @@ -0,0 +1,458 @@ + + + + + + +Date & Time Formatter + + + +
+

Date & Time Formatter

+ + +

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runbot

+

This module was written to extend the functionality of Odoo language engine to +support formatting Date, Time and Datetime fields easily and allow you to +print them in the best format for the user.

+

Table of contents

+ +
+

Usage

+

This module adds a technical programming feature, and it should be used by +addon developers, not by end users. This means that you must not expect to see +any changes if you are a user and install this, but if you find you have it +already installed, it’s probably because you have another modules that depend +on this one.

+

If you are a developer, to use this module, you need to:

+
    +
  • Call anywhere in your code:

    +
    +formatted_string = self.env["res.lang"].datetime_formatter(datetime_value)
    +
    +
  • +
  • If you use Qweb:

    +
    +<t t-esc="env['res.lang'].datetime_formatter(datetime_value)"/>
    +
    +
  • +
  • If you call it from a record that has a lang field:

    +
    +formatted_string = record.lang.datetime_formatter(record.datetime_field)
    +
    +
  • +
  • models.ResLang.datetime_formatter docstring explains its usage.

    +
  • +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Grupo ESOC Ingeniería de Servicios
  • +
  • Tecnativa
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/server-tools project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/datetime_formatter/tests/__init__.py b/datetime_formatter/tests/__init__.py new file mode 100644 index 000000000..3ce04bff3 --- /dev/null +++ b/datetime_formatter/tests/__init__.py @@ -0,0 +1,2 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import test_best_matcher, test_formatter diff --git a/datetime_formatter/tests/test_best_matcher.py b/datetime_formatter/tests/test_best_matcher.py new file mode 100644 index 000000000..71e7b03c1 --- /dev/null +++ b/datetime_formatter/tests/test_best_matcher.py @@ -0,0 +1,70 @@ +# Copyright 2015, 2017 Jairo Llopis +# Copyright 2016 Tecnativa, S.L. - Vicent Cubells +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo.exceptions import UserError +from odoo.tests.common import TransactionCase + + +class BasicCase(TransactionCase): + def setUp(self): + super().setUp() + self.langs = ( + self.env.ref("base.lang_en"), + self.env.ref("base.lang_es"), + self.env.ref("base.lang_it"), + self.env.ref("base.lang_pt"), + self.env.ref("base.lang_zh_CN"), + ) + self.rl = self.env["res.lang"] + for lang in self.langs: + self.rl._activate_lang(lang.code) + + def test_explicit(self): + """When an explicit lang is used.""" + for lang in self.langs: + self.assertEqual(self.rl.best_match(lang.code).code, lang.code) + + def test_record(self): + """When called from a ``res.lang`` record.""" + rl = self.rl.with_context(lang="it_IT") + rl.env.user.lang = "pt_PT" + for lang in self.langs: + self.assertEqual( + rl.search([("code", "=", lang.code)]).best_match().code, lang.code + ) + + def test_context(self): + """When called with a lang in context.""" + self.env.user.lang = "pt_PT" + for lang in self.langs: + self.assertEqual( + self.rl.with_context(lang=lang.code).best_match().code, lang.code + ) + + def test_user(self): + """When lang not specified in context.""" + for lang in self.langs: + self.env.user.lang = lang.code + # Lang is False in context + self.assertEqual( + self.rl.with_context(lang=False).best_match().code, lang.code + ) + # Lang not found in context + self.assertEqual(self.rl.with_context(**{}).best_match().code, lang.code) + + def test_first_installed(self): + """When falling back to first installed language.""" + first = self.rl.search([("active", "=", True)], limit=1) + self.env.user.lang = False + self.assertEqual(self.rl.with_context(lang=False).best_match().code, first.code) + + def test_unavailable(self): + """When matches to an unavailable language.""" + self.env.user.lang = False + self.rl = self.rl.with_context(lang=False) + first = self.rl.search([("active", "=", True)], limit=1) + # Safe mode + self.assertEqual(self.rl.best_match("fake_LANG").code, first.code) + # Unsafe mode + with self.assertRaises(UserError): + self.rl.best_match("fake_LANG", failure_safe=False) diff --git a/datetime_formatter/tests/test_formatter.py b/datetime_formatter/tests/test_formatter.py new file mode 100644 index 000000000..717553e4f --- /dev/null +++ b/datetime_formatter/tests/test_formatter.py @@ -0,0 +1,81 @@ +# Copyright 2015, 2017 Jairo Llopis +# Copyright 2016 Tecnativa, S.L. - Vicent Cubells +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +import datetime +from random import random + +from odoo.tests.common import TransactionCase +from odoo.tools import ( + DEFAULT_SERVER_DATE_FORMAT, + DEFAULT_SERVER_DATETIME_FORMAT, + DEFAULT_SERVER_TIME_FORMAT, +) + +from ..models.res_lang import MODE_DATE, MODE_DATETIME, MODE_TIME + + +class FormatterCase(TransactionCase): + def setUp(self): + super().setUp() + self.rl = self.env["res.lang"] + self.bm = self.rl.best_match() + self.dt = datetime.datetime.now() + self.d_fmt = self.bm.date_format or DEFAULT_SERVER_DATE_FORMAT + self.t_fmt = self.bm.time_format or DEFAULT_SERVER_TIME_FORMAT + self.kwargs = dict() + + def tearDown(self): + # This should be returned + self.expected = self.dt.strftime(self.format) + # Pass a datetime object + self.assertEqual( + self.expected, self.rl.datetime_formatter(self.dt, **self.kwargs) + ) + # When the date comes as a string + if isinstance(self.dt, datetime.datetime): + self.dt_str = self.dt.strftime(DEFAULT_SERVER_DATETIME_FORMAT) + elif isinstance(self.dt, datetime.date): + self.dt_str = self.dt.strftime(DEFAULT_SERVER_DATE_FORMAT) + elif isinstance(self.dt, datetime.time): + self.dt_str = self.dt.strftime(DEFAULT_SERVER_TIME_FORMAT) + # Pass a string + self.assertEqual( + self.expected, self.rl.datetime_formatter(self.dt_str, **self.kwargs) + ) + # Pass a unicode + self.assertEqual( + self.expected, self.rl.datetime_formatter(str(self.dt_str), **self.kwargs) + ) + super().tearDown() + + def test_datetime(self): + """Format a datetime.""" + self.format = "{} {}".format(self.d_fmt, self.t_fmt) + self.kwargs = {"template": MODE_DATETIME} + + def test_date(self): + """Format a date.""" + self.format = self.d_fmt + self.kwargs = {"template": MODE_DATE} + self.dt = self.dt.date() + + def test_time(self): + """Format times, including float ones.""" + self.format = self.t_fmt + self.kwargs = {"template": MODE_TIME} + self.dt = self.dt.time() + # Test float times + for n in range(50): + n = n + random() + # Patch values with >= 24 hours + fmt = self.format.replace("%H", "%02d" % n) + time = (datetime.datetime.min + datetime.timedelta(hours=n)).time() + self.assertEqual( + time.strftime(fmt), self.rl.datetime_formatter(n, **self.kwargs) + ) + + def test_custom_separator(self): + """Format a datetime with a custom separator.""" + sep = "T" + self.format = "{}{}{}".format(self.d_fmt, sep, self.t_fmt) + self.kwargs = {"template": MODE_DATETIME, "separator": sep} diff --git a/module_auto_update/tests/sample_module/README.rst b/module_auto_update/tests/sample_module/README.rst index 048382e52..e7d1726ca 100644 --- a/module_auto_update/tests/sample_module/README.rst +++ b/module_auto_update/tests/sample_module/README.rst @@ -1 +1 @@ -Test data for addon_hash module. +Sample module for tests addon_hash module. diff --git a/setup/datetime_formatter/odoo/addons/datetime_formatter b/setup/datetime_formatter/odoo/addons/datetime_formatter new file mode 120000 index 000000000..e0a79b0a2 --- /dev/null +++ b/setup/datetime_formatter/odoo/addons/datetime_formatter @@ -0,0 +1 @@ +../../../../datetime_formatter \ No newline at end of file diff --git a/setup/datetime_formatter/setup.py b/setup/datetime_formatter/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/datetime_formatter/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)