-
Notifications
You must be signed in to change notification settings - Fork 14
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
[ADD][bio_login]add new module for login whit finger #81
base: 9.0
Are you sure you want to change the base?
Conversation
e0c8b40
to
b657380
Compare
a7809a5
to
c72db9b
Compare
974e46c
to
56731ea
Compare
bio_login/__openerp__.py
Outdated
{ | ||
'name': 'Bio Login', | ||
'version': '9.0.0.1.0', | ||
'category': 'Initial Data', |
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.
'category': 'biometric',
@@ -0,0 +1,5 @@ | |||
|
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.
first line must be the coding
@@ -0,0 +1,18 @@ | |||
|
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.
first line must be the coding
bio_login/__openerp__.py
Outdated
'category': 'Initial Data', | ||
'author': 'Jarsa Sistemas', | ||
'description': 'Bio Login', | ||
'depends': [], |
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.
this module depends on base? or another module
@@ -0,0 +1,9 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<odoo> | |||
<data noupdate="1"> |
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.
remove data tag... ose
@@ -0,0 +1,5 @@ | |||
|
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.
first line must be the coding
bio_login/models/res_users.py
Outdated
def fingerprint(self): | ||
self.ensure_one() | ||
client = Client( | ||
'http://0d0b113c.ngrok.io/BioEngineClientWS' |
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.
where did you use the ir.config.parameter?
bio_login/views/res_user_view.xml
Outdated
@@ -0,0 +1,15 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> | |||
<odoo> | |||
<data> |
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.
remove data
@alan196