-
Notifications
You must be signed in to change notification settings - Fork 12
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
[8.0.1.0.0][hr_employee_birthday_list_reminder] #199
Conversation
Codecov Report
@@ Coverage Diff @@
## 8.0 #199 +/- ##
==========================================
- Coverage 58.55% 58.12% -0.44%
==========================================
Files 257 258 +1
Lines 5298 5394 +96
==========================================
+ Hits 3102 3135 +33
- Misses 2196 2259 +63
Continue to review full report at Codecov.
|
"license": "AGPL-3", | ||
"installable": True, | ||
"depends": [ | ||
"web", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ini memang dibutuhkan?
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * hr_employee_birthdate_from_home_address | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 8.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: hr_employee_birthdate_from_home_address | ||
#: model:ir.model,name:hr_employee_birthdate_from_home_address.model_hr_employee | ||
msgid "Employee" | ||
msgstr "" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kok ada file ini?
# Copyright 2020 OpenSynergy Indonesia | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
from . import hr_birthday_list_reminder |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from . import hr_birthday_list_reminder | |
from . import ( | |
hr_birthday_list_reminder, | |
) |
"mail", | ||
"email_template", | ||
"hr", | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pakai python_depends karena menggunakan pandas
<field name="manual_employee_ids" col="2" nolabel="1"/> | ||
</group> | ||
</page> | ||
<page name="employee" string="Employee(s) List" groups="base.group_erp_manager"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<page name="employee" string="Employee(s) List" groups="base.group_erp_manager"> | |
<page name="employee" string="Employee(s) List"> |
dt_now - pd.DateOffset( | ||
days=date_start_offset) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ini pakai - atau +
dt_now - pd.DateOffset( | ||
months=date_start_offset) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ini pakai - atau +
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mikevhe18 contoh kasus:
- Karyawan A ultah 09-03-1984
- Today 01-03-2020
- Start offset: 0 Days
- End offset: 30 Days
Kasus di atas harusnya masuk di dalam list
No description provided.