-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] web_widget_date_more_filters: New module
Add new entries to date filter: - Today - Yesterday - This week - Last 7 days - Last 30 days - Last 365 days
- Loading branch information
Elise Gigot
committed
Nov 20, 2024
1 parent
ebf9861
commit 2923175
Showing
6 changed files
with
481 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
setup/web_widget_date_more_filters/odoo/addons/web_widget_date_more_filters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../web_widget_date_more_filters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Copyright OpenStudio 2024 | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
{ | ||
"name": "Web date widget more filters", | ||
"category": "web", | ||
"version": "16.0.1.0.0", | ||
"website": "https://github.com/OCA/web", | ||
"author": "Elise Gigot <[email protected]>", | ||
"depends": ["web", "hr_timesheet"], | ||
"summary": "Add some filters to the date filters wdidget", | ||
"license": "AGPL-3", | ||
"installable": True, | ||
"assets": { | ||
"web.assets_backend": [ | ||
"web_widget_date_more_filters/static/src/js/web_widget_date_more_filters.js", | ||
], | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * hr_timesheet_custom_date_filter | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "Today" | ||
msgstr "Aujourd'hui" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "Yesterday" | ||
msgstr "Hier" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "This week" | ||
msgstr "Cette semaine" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "Last 7 days" | ||
msgstr "7 derniers jours" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "Last 30 days" | ||
msgstr "30 derniers jours" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "Last 365 days" | ||
msgstr "365 derniers jours" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "From Date" | ||
msgstr "À partir du" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "Until" | ||
msgstr "Jusqu'au" | ||
|
||
#. module: hr_timesheet_custom_date_filter | ||
#. odoo-javascript | ||
#: code:addons/static/src/js/hr_timesheet_custom_date_filter.js:0 | ||
#, python-format | ||
msgid "Week" | ||
msgstr "Semaine" |
Oops, something went wrong.