3
0
Fork 0

FIX style

8.0
eLBati 2015-11-30 12:27:54 +01:00
parent 2bd1be0bf3
commit 7f8e41a6e3
9 changed files with 24 additions and 19 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>) # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
# Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd.

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>) # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
# Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd.
@ -12,9 +12,9 @@
############################################################################## ##############################################################################
{ {
"name" : "Web Digital Signature", "name": "Web Digital Signature",
"version" : "8.0.1.0.0", "version": "8.0.1.0.0",
"author" : "Serpent Consulting Services Pvt. Ltd., " "author": "Serpent Consulting Services Pvt. Ltd., "
"Odoo Community Association (OCA)", "Odoo Community Association (OCA)",
"category": 'web', "category": 'web',
"license": "AGPL-3", "license": "AGPL-3",

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

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

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>) # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
# Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd.

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd.
# (<http://www.serpentcs.com>). # (<http://www.serpentcs.com>).
# Copyright 2015 Lorenzo Battistini - Agile Business Group # Copyright 2015 Lorenzo Battistini - Agile Business Group
@ -10,9 +10,9 @@
############################################################################## ##############################################################################
{ {
"name" : "Web Digital Signature for users", "name": "Web Digital Signature for users",
"version" : "8.0.1.0.0", "version": "8.0.1.0.0",
"author" : "Serpent Consulting Services Pvt. Ltd., " "author": "Serpent Consulting Services Pvt. Ltd., "
"Odoo Community Association (OCA)", "Odoo Community Association (OCA)",
"category": 'web', "category": 'web',
"license": "AGPL-3", "license": "AGPL-3",

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>) # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
# Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd.

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>) # Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
# Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd. # Copyright (C) 2011-2015 Serpent Consulting Services Pvt. Ltd.
@ -10,10 +10,11 @@
# #
############################################################################## ##############################################################################
from openerp import models, fields, api from openerp import models, fields
class Users(models.Model): class Users(models.Model):
_name = 'res.users' _name = 'res.users'
_inherit = 'res.users' _inherit = 'res.users'
signature_image= fields.Binary(string='Signature') signature_image = fields.Binary(string='Signature')