Browse Source

Add Author info, encoding lines

pull/110/head
jcarlosmontoya 9 years ago
parent
commit
6000bc6e57
  1. 1
      pos_invoice_reconcile/__init__.py
  2. 6
      pos_invoice_reconcile/__openerp__.py
  3. 1
      pos_invoice_reconcile/models/__init__.py
  4. 2
      pos_invoice_reconcile/models/models.py

1
pos_invoice_reconcile/__init__.py

@ -1 +1,2 @@
# -*- coding: utf-8 -*-
import models

6
pos_invoice_reconcile/__openerp__.py

@ -1,4 +1,4 @@
# -*- encoding: utf-8 -*-
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
@ -25,7 +25,9 @@
{
"name": "POS Invoice auto reconcile",
"version": "8.0.0.1.0",
"author": "Juan Carlos Montoya",
"author": "Juan Carlos Montoya,"
"Javier Garcia <jgarcia@sdi.es>,"
"Odoo Community Association (OCA)",
"website": "http://sdi.es",
"license": "AGPL-3",
"category": "Accounting",

1
pos_invoice_reconcile/models/__init__.py

@ -1 +1,2 @@
# -*- coding: utf-8 -*-
import models

2
pos_invoice_reconcile/models/models.py

@ -21,7 +21,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp import models, fields, api, _
from openerp import models, fields, api
class PosSession(models.Model):

Loading…
Cancel
Save