Browse Source

FIX style

pull/267/head
eLBati 9 years ago
parent
commit
7f8e41a6e3
  1. 6
      web_widget_digital_signature/__openerp__.py
  2. 9
      web_widget_digital_signature_sale_order/__openerp__.py
  3. BIN
      web_widget_digital_signature_sale_order/images/so_signature.png
  4. 5
      web_widget_digital_signature_sale_order/models/sale_order.py
  5. 6
      web_widget_digital_signature_user/__openerp__.py
  6. 5
      web_widget_digital_signature_user/models/users.py

6
web_widget_digital_signature/__openerp__.py

@ -12,9 +12,9 @@
##############################################################################
{
"name" : "Web Digital Signature",
"version" : "8.0.1.0.0",
"author" : "Serpent Consulting Services Pvt. Ltd., "
"name": "Web Digital Signature",
"version": "8.0.1.0.0",
"author": "Serpent Consulting Services Pvt. Ltd., "
"Odoo Community Association (OCA)",
"category": 'web',
"license": "AGPL-3",

9
web_widget_digital_signature_sale_order/__openerp__.py

@ -8,9 +8,9 @@
##############################################################################
{
"name" : "Web Digital Signature for sale orders",
"version" : "8.0.1.0.0",
"author" : "Agile Business Group, "
"name": "Web Digital Signature for sale orders",
"version": "8.0.1.0.0",
"author": "Agile Business Group, "
"Odoo Community Association (OCA)",
"category": 'web',
"license": "AGPL-3",
@ -18,6 +18,9 @@
'data': [
'views/sale_order_view.xml'
],
'images': [
'images/so_signature.png',
],
'website': 'http://www.agilebg.com',
'installable': True,
'auto_install': False,

BIN
web_widget_digital_signature_sale_order/images/so_signature.png

After

Width: 864  |  Height: 540  |  Size: 37 KiB

5
web_widget_digital_signature_sale_order/models/sale_order.py

@ -7,9 +7,10 @@
#
##############################################################################
from openerp import models, fields, api
from openerp import models, fields
class Users(models.Model):
_inherit = 'sale.order'
signature_image= fields.Binary(string='Signature')
signature_image = fields.Binary(string='Signature')

6
web_widget_digital_signature_user/__openerp__.py

@ -10,9 +10,9 @@
##############################################################################
{
"name" : "Web Digital Signature for users",
"version" : "8.0.1.0.0",
"author" : "Serpent Consulting Services Pvt. Ltd., "
"name": "Web Digital Signature for users",
"version": "8.0.1.0.0",
"author": "Serpent Consulting Services Pvt. Ltd., "
"Odoo Community Association (OCA)",
"category": 'web',
"license": "AGPL-3",

5
web_widget_digital_signature_user/models/users.py

@ -10,10 +10,11 @@
#
##############################################################################
from openerp import models, fields, api
from openerp import models, fields
class Users(models.Model):
_name = 'res.users'
_inherit = 'res.users'
signature_image= fields.Binary(string='Signature')
signature_image = fields.Binary(string='Signature')
Loading…
Cancel
Save