Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
78157a7
[FIX] fix to be able to sync success
Nov 14, 2018
f8603b0
[FIX] sync date, number of days
Nov 14, 2018
a878f44
Merge branch 'feature-multi-leave-type' into odoo12
Nov 14, 2018
c4219bf
[FIX] merge multi leave type sync
Nov 14, 2018
bd18b9e
[FIX] all warning
Nov 14, 2018
4654065
[ADD] add translation
Nov 14, 2018
9b6876a
[UPDATE] translation
Nov 15, 2018
579740e
[FIX] display
Nov 15, 2018
38c43e8
Merge branch 'feature-sync-holiday' into odoo12
Nov 20, 2018
b577732
Merge branch 'fix-holiday-sync' into odoo12
Nov 20, 2018
6616d80
[FIX] crash when call synchronize
Nov 29, 2018
8f04df0
[FIX] sync error
Nov 29, 2018
81def3e
Merge branch 'fix-sync-connection' into odoo12
Feb 20, 2019
41782a5
Merge branch 'odoo11' into odoo12
Mar 18, 2019
eb64ec6
Merge branch 'sync-birthday' into odoo12
Mar 22, 2019
bf864bb
[MOVE] plantuml in Readme Markdown
efairon Oct 10, 2019
d738e26
Merge branch 'develop' into odoo12
efairon Oct 10, 2019
e63cd43
Merge branch 'fix-photo' into odoo12
Nov 27, 2019
9b03886
Merge branch 'odoo12' of https://gitlab.com/frontware_International/W…
Nov 27, 2019
d22b896
Update README.md
efairon Dec 15, 2019
2fe4e9a
[FIX] spelling
Jan 8, 2020
d6dfd4e
Merge branch 'odoo12' of https://gitlab.com/frontware_International/W…
Jan 8, 2020
00da08c
Merge branch 'fix-sync-id' into odoo12
Jan 9, 2020
54ad457
Merge branch 'fix-save-department' into odoo12
Apr 21, 2020
8feee0a
[issues/9] WIP add expense type, expense sync
Jul 9, 2020
e1a9728
[issues/9] add script
Jul 10, 2020
fd763a6
[issues/9] fixed sync expense type
Jul 16, 2020
0fa7f94
Merge branch 'issues/9' into odoo12
Jul 16, 2020
1bb7a0a
Update README.md
efairon Jul 19, 2020
ba72b84
[FIX] support grpc-io
Jul 30, 2020
0435cbe
[FIX] support grpc-io
Jul 30, 2020
7b8d273
[UPDATE] Logo
efairon Aug 14, 2020
8713b1e
Merge branch 'odoo12' of gitlab.com:frontware_International/Weladee/o…
efairon Aug 14, 2020
53b69c4
Merge branch 'update-cert' into odoo12
Jan 19, 2021
05db10c
Merge branch 'odoo12' of gitlab.com:frontware_International/Weladee/o…
efairon Jan 19, 2021
69ed7fa
Merge branch 'odoo12' of gitlab.com:frontware_International/Weladee/o…
efairon Jan 24, 2021
3065ea3
[UPDATE]
efairon Jan 24, 2021
c0a3626
[UPDATE] (c) 2021
efairon Jan 24, 2021
8eb3dac
Merge branch 'odoo12' of gitlab.com:frontware_International/Weladee/o…
efairon Nov 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 8 additions & 27 deletions Modules/Weladee_Attendances/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,11 @@
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-Now Tiny SPRL (<http://tiny.be>). All Rights Reserved
# d$
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# -*- coding: utf-8 -*-
{
"name" : "Weladee attendances module",
"version" : "4.07",
"version" : "5.02",
"author" : "Frontware International",
"category" : "Generic Modules",
'summary': 'Weladee-Odoo attendances\'s module',
"depends" : ['base', 'hr', 'hr_attendance', 'hr_holidays', 'hr_timesheet'],
"depends" : ['base', 'hr', 'hr_attendance', 'hr_holidays', 'hr_timesheet', 'hr_expense'],
"data" :["security/security.xml",
"security/ir.model.access.csv",
"views/emails/weladee_attendance.xml",
Expand All @@ -38,10 +19,11 @@
'views/weladee_holiday_status.xml',
"views/weladee_holiday.xml",
"views/weladee_company_holiday.xml",
"views/weladee_expense.xml",
"views/fw_hr_employee.xml"],
"installable" : True,
"active" : False,
"website" : "https://www.weladee.com/",
"website" : "https://github.com/Frontware/Weladee-odoo",
"description":"""
Weladee attendances module
==========================
Expand All @@ -51,7 +33,9 @@

change log:
------------------------------------
* 2020-07-01 KPO sync approved expense
* 2019-02-18 KPO allow to resync if 1st connection failed.
* 2018-11-14 KPO compatible with odoo12
* 2018-11-14 KPO allow to sync with multiple leave type
* 2018-06-12 KPO fixed sync
* 2017-07-18 CKA add view synchronous menu For sync Employee, Department, Holiday and attences on Attendances menu
Expand All @@ -67,15 +51,12 @@

requirement:
------------------------------------
* grpcio

pip3 install grpcio

* grpc

install:

pip3 install --upgrade grpcio==1.7.3
pip3 install grpcio

* imagemagick

Expand Down
Loading