~extra-addons-commiter/e-commerce-addons/7.0

« back to all changes in this revision

Viewing changes to sale_quick_payment/account_voucher.py

  • Committer: Guewen Baconnier
  • Date: 2013-01-14 07:40:50 UTC
  • mfrom: (231.1.12 e-commerce-addons)
  • Revision ID: guewen.baconnier@camptocamp.com-20130114074050-kitvv6l8hiojxo6f
[MRG] from lp:~extra-addons-commiter/e-commerce-addons/trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
###############################################################################
 
3
#
 
4
#   sale_quick_payment for OpenERP
 
5
#   Copyright (C) 2012-TODAY Akretion <http://www.akretion.com>.
 
6
#     All Rights Reserved
 
7
#     @author Sébastien BEAU <sebastien.beau@akretion.com>
 
8
#   This program is free software: you can redistribute it and/or modify
 
9
#   it under the terms of the GNU Affero General Public License as
 
10
#   published by the Free Software Foundation, either version 3 of the
 
11
#   License, or (at your option) any later version.
 
12
#
 
13
#   This program is distributed in the hope that it will be useful,
 
14
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#   GNU Affero General Public License for more details.
 
17
#
 
18
#   You should have received a copy of the GNU Affero General Public License
 
19
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
###############################################################################
 
22
 
 
23
from openerp.osv.orm import Model
 
24
from openerp.osv import fields
 
25
 
 
26
class payment_method(Model):
 
27
    _inherit = "account.voucher"
 
28
 
 
29
    _columns = {
 
30
        'order_ids': fields.many2many('sale.order', string='Sale Order'),
 
31
    }
 
32
 
 
33