Browse Source
Merge pull request #72 from satriani-vai/patch-21
Small bug fix "from . import"
pull/79/head
Cybrosys Technologies
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with
8 additions and
28 deletions
-
hr_payslip_monthly_report/__init__.py
-
hr_payslip_monthly_report/models/__init__.py
-
product_deletion/__init__.py
-
product_deletion/models/__init__.py
-
user_login_alert/__init__.py
-
user_login_alert/__manifest__.py~
-
user_login_alert/controllers/__init__.py
-
user_login_alert/models/__init__.py
|
|
@ -19,4 +19,4 @@ |
|
|
|
# If not, see <https://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import models |
|
|
|
from . import models |
|
|
|
|
|
@ -20,5 +20,5 @@ |
|
|
|
# If not, see <https://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import hr_payroll_report |
|
|
|
from . import hr_payroll_report |
|
|
|
|
|
|
|
|
|
@ -20,4 +20,4 @@ |
|
|
|
# If not, see <https://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import models |
|
|
|
from . import models |
|
|
|
|
|
@ -20,4 +20,4 @@ |
|
|
|
# If not, see <https://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import product_deletion |
|
|
|
from . import product_deletion |
|
|
|
|
|
@ -20,6 +20,5 @@ |
|
|
|
# If not, see <http://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import controllers |
|
|
|
import models |
|
|
|
|
|
|
|
from . import controllers |
|
|
|
from . import models |
|
|
|
|
|
@ -1,18 +0,0 @@ |
|
|
|
{ |
|
|
|
'name': 'Login Notification', |
|
|
|
'summary': """Send login notification E-mail to user""", |
|
|
|
'version': '10.0.1.0.0', |
|
|
|
'description': """Send login notification E-mail to user""", |
|
|
|
'author': 'Cybrosys Techno Solutions', |
|
|
|
'company': 'Cybrosys Techno Solutions', |
|
|
|
'website': 'http://www.cybrosys.com', |
|
|
|
'category': 'Tools', |
|
|
|
'depends': ['base', 'web'], |
|
|
|
'license': 'AGPL-3', |
|
|
|
'data': [ |
|
|
|
], |
|
|
|
'demo': [], |
|
|
|
'installable': True, |
|
|
|
'auto_install': False, |
|
|
|
|
|
|
|
} |
|
|
@ -20,4 +20,4 @@ |
|
|
|
# If not, see <http://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import main |
|
|
|
from . import main |
|
|
|
|
|
@ -20,5 +20,4 @@ |
|
|
|
# If not, see <http://www.gnu.org/licenses/>. |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
import logged_details |
|
|
|
|
|
|
|
from . import logged_details |
|
|
|