~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to dm_payment_method/dm_payment_method.py

  • Committer: ssi (Open ERP)
  • Date: 2009-12-24 12:36:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4168.
  • Revision ID: ssi@tinyerp.co.in-20091224123647-u1u3xcnq7cxld55s
[ADD] DM: added payment method module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#    
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
 
19
#
 
20
##############################################################################
 
21
from osv import fields
 
22
from osv import osv
 
23
 
 
24
class dm_payment_method(osv.osv): # {{{
 
25
    _name = 'dm.payment_method'
 
26
    _columns = {
 
27
        'name': fields.char('Name', size=64, required=True),
 
28
        'code': fields.char('Code', size=16, required=True),
 
29
        'journal_id': fields.many2one('account.journal', 'Journal', domain="[('type','=','cash')]"),
 
30
        'logo': fields.binary('Widget Image'),
 
31
        
 
32
    }
 
33
dm_payment_method() # }}}
 
34
 
 
35
class dm_campaign(osv.osv): #{{{
 
36
    _inherit = "dm.campaign"
 
37
    _columns = {
 
38
         'journal_id': fields.many2one('dm.payment_method', 'Journal', domain="[('type','=','cash')]"),
 
39
    }
 
40
dm_campaign() #}}}
 
41
 
 
42
#vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: