[IMP] Improve layout
[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 import time
23 import operator
24
25 from osv import fields
26 from osv import osv
27
28 class account_analytic_journal(osv.osv):
29     _name = 'account.analytic.journal'
30     _columns = {
31         'name' : fields.char('Journal name', size=64, required=True),
32         'code' : fields.char('Journal code', size=8),
33         'active' : fields.boolean('Active', help="If the active field is set to true, it will allow you to hide the analytic journal without removing it."),
34         '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, Open ERP will look for a matching journal of the same type."),
35         'line_ids' : fields.one2many('account.analytic.line', 'journal_id', 'Lines'),
36         'company_id': fields.many2one('res.company', 'Company', required=True),
37     }
38     _defaults = {
39         'active': lambda *a: True,
40         'type': lambda *a: 'general',
41         'company_id': lambda self,cr,uid,c: self.pool.get('res.users').browse(cr, uid, uid, c).company_id.id,
42     }
43 account_analytic_journal()
44
45 class account_journal(osv.osv):
46     _inherit="account.journal"
47
48     _columns = {
49         'analytic_journal_id':fields.many2one('account.analytic.journal','Analytic Journal'),
50     }
51 account_journal()
52
53 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
54