Launchpad automatic translations update.
[odoo/odoo.git] / addons / account / project / project.py
1 # -*- coding: 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
22 from osv import fields
23 from osv import osv
24
25 class account_analytic_journal(osv.osv):
26     _name = 'account.analytic.journal'
27     _description = 'Analytic Journal'
28     _columns = {
29         'name': fields.char('Journal Name', size=64, required=True),
30         'code': fields.char('Journal Code', size=8),
31         'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the analytic journal without removing it."),
32         'type': fields.selection([('sale','Sale'), ('purchase','Purchase'), ('cash','Cash'), ('general','General'), ('situation','Situation')], 'Type', size=32, required=True, help="Gives the type of the analytic journal. When it needs for a document (eg: an invoice) to create analytic entries, OpenERP will look for a matching journal of the same type."),
33         'line_ids': fields.one2many('account.analytic.line', 'journal_id', 'Lines'),
34         'company_id': fields.many2one('res.company', 'Company', required=True),
35     }
36     _defaults = {
37         'active': True,
38         'type': 'general',
39         'company_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id,
40     }
41
42 account_analytic_journal()
43
44 class account_journal(osv.osv):
45     _inherit="account.journal"
46
47     _columns = {
48         'analytic_journal_id':fields.many2one('account.analytic.journal','Analytic Journal', help="Journal for analytic entries"),
49     }
50
51 account_journal()
52
53 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: