[IMP]: lunch: solve problem of assert tag in yaml test case.
[odoo/odoo.git] / addons / lunch / lunch.py
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
22 from osv import osv, fields
23 import time
24
25 class lunch_category(osv.osv):
26     """ Lunch category """
27
28     _name = 'lunch.category'
29     _description = "Category"
30
31     _columns = {
32         'name': fields.char('Name', required=True, size=50),
33     }
34     _order = 'name'
35
36 lunch_category()
37
38
39 class lunch_product(osv.osv):
40     """ Lunch Product """
41
42     _name = 'lunch.product'
43     _description = "Lunch Product"
44
45     _columns = {
46         'name': fields.char('Name', size=50, required=True),
47         'category_id': fields.many2one('lunch.category', 'Category'),
48         'description': fields.char('Description', size=128, required=False),
49         'price': fields.float('Price', digits=(16,2)),
50         'active': fields.boolean('Active'),
51     }
52
53     _defaults = {
54         'active': lambda *a : True,
55         }
56
57 lunch_product()
58
59
60 class lunch_cashbox(osv.osv):
61     """ cashbox for Lunch """
62
63     _name = 'lunch.cashbox'
64     _description = "Cashbox for Lunch "
65
66
67     def amount_available(self, cr, uid, ids, field_name, arg, context):
68
69         """ count available amount
70         @param cr: the current row, from the database cursor,
71         @param uid: the current user’s ID for security checks,
72         @param ids: List of create menu’s IDs
73         @param context: A standard dictionary for contextual values """
74
75         cr.execute("SELECT box,sum(amount) from lunch_cashmove where active = 't' group by box")
76         amount = dict(cr.fetchall())
77         for i in ids:
78             amount.setdefault(i, 0)
79         return amount
80
81     _columns = {
82         'manager': fields.many2one('res.users', 'Manager'),
83         'name': fields.char('Name', size=30, required=True, unique = True),
84         'sum_remain': fields.function(amount_available, method=True, string='Remained Total'),
85         }
86
87 lunch_cashbox()
88
89
90 class lunch_cashmove(osv.osv):
91     """ Move cash """
92
93     _name = 'lunch.cashmove'
94     _description = "Move cash"
95
96     _columns = {
97         'name': fields.char('Name', size=128),
98         'user_cashmove': fields.many2one('res.users', 'User Name', required=True),
99         'amount': fields.float('Amount', digits=(16, 2)),
100         'box': fields.many2one('lunch.cashbox', 'Box Name', size=30, required=True),
101         'active': fields.boolean('Active'),
102         'create_date': fields.datetime('Created date', readonly=True),
103         }
104
105     _defaults = {
106     'active': lambda *a: True,
107     }
108
109 lunch_cashmove()
110
111
112 class lunch_order(osv.osv):
113     """ Apply lunch order """
114
115     _name = 'lunch.order'
116     _description = "Lunch Order"
117     _rec_name = "user_id"
118
119     def _price_get(self, cr, uid, ids, name, args, context=None):
120
121         """ Get Price of Product
122          @param cr: the current row, from the database cursor,
123          @param uid: the current user’s ID for security checks,
124          @param ids: List of Lunch order’s IDs
125          @param context: A standard dictionary for contextual values """
126
127         res = {}
128         for price in self.browse(cr, uid, ids):
129             res[price.id] = price.product.price
130         return res
131
132     _columns = {
133         'user_id': fields.many2one('res.users', 'User Name', required=True, \
134             readonly=True, states={'draft':[('readonly', False)]}),
135         'product': fields.many2one('lunch.product', 'Product', required=True, \
136             readonly=True, states={'draft':[('readonly', False)]}, change_default=True),
137         'date': fields.date('Date', readonly=True, states={'draft':[('readonly', False)]}),
138         'cashmove': fields.many2one('lunch.cashmove', 'CashMove' , readonly=True),
139         'descript': fields.char('Description Order', readonly=True, size=50, \
140             states = {'draft':[('readonly', False)]}),
141         'state': fields.selection([('draft', 'Draft'), ('confirmed', 'Confirmed'), ], \
142             'State', readonly=True, select=True),
143         'price': fields.function(_price_get, method=True, string="Price"),
144     }
145
146     _defaults = {
147         'user_id': lambda self,cr,uid,context: uid,
148         'date': lambda self,cr,uid,context: time.strftime('%Y-%m-%d'),
149         'state': lambda self,cr,uid,context: 'draft',
150     }
151
152     def confirm(self, cr, uid, ids, box, context):
153
154         """ confirm order
155         @param cr: the current row, from the database cursor,
156         @param uid: the current user’s ID for security checks,
157         @param ids: List of confirm order’s IDs
158         @param context: A standard dictionary for contextual values """
159
160         cashmove_ref = self.pool.get('lunch.cashmove')
161         for order in self.browse(cr, uid, ids):
162             if order.state == 'confirmed':
163                 continue
164             new_id = cashmove_ref.create(cr, uid, {'name': order.product.name+' order',
165                             'amount':-order.product.price,
166                             'user_cashmove':order.user_id.id,
167                             'box':box,
168                             'active':True,
169                             })
170             self.write(cr, uid, [order.id], {'cashmove': new_id, 'state': 'confirmed'})
171         return {}
172
173     def lunch_order_cancel(self, cr, uid, ids, context):
174
175         """" cancel order
176          @param cr: the current row, from the database cursor,
177          @param uid: the current user’s ID for security checks,
178          @param ids: List of create menu’s IDs
179          @param context: A standard dictionary for contextual values """
180
181         orders = self.browse(cr, uid, ids)
182         for order in orders:
183             if not order.cashmove:
184                 continue
185         if order.cashmove.id:
186             self.pool.get('lunch.cashmove').unlink(cr, uid, [order.cashmove.id])
187         self.write(cr, uid, ids, {'state':'draft'})
188         return {}
189
190     def onchange_product(self, cr, uid, ids, product):
191
192         """ Get price for Product
193          @param cr: the current row, from the database cursor,
194          @param uid: the current user’s ID for security checks,
195          @param ids: List of create menu’s IDs
196          @product: Product To Ordered """
197
198         if not product:
199             return {'value': {'price': 0.0}}
200         price = self.pool.get('lunch.product').read(cr, uid, product, ['price'])['price']
201         return {'value': {'price': price}}
202
203 lunch_order()
204
205
206 class report_lunch_amount(osv.osv):
207     """ Lunch Amount Report """
208
209     _name = 'report.lunch.amount'
210     _description = "Amount available by user and box"
211     _auto = False
212     _rec_name = "user"
213
214     _columns = {
215         'user_id': fields.many2one('res.users', 'User Name', readonly=True),
216         'amount': fields.float('Amount', readonly=True, digits=(16, 2)),
217         'box': fields.many2one('lunch.cashbox', 'Box Name', size=30, readonly=True),
218         }
219
220     def init(self, cr):
221
222         """ @param cr: the current row, from the database cursor"""
223
224         cr.execute("""
225             create or replace view report_lunch_amount as (
226                 select
227                     min(lc.id) as id,
228                     lc.user_cashmove as user_id,
229                     sum(amount) as amount,
230                     lc.box as box
231                 from
232                     lunch_cashmove lc
233                 where
234                     active = 't'
235                 group by lc.user_cashmove, lc.box
236                 )""")
237
238 report_lunch_amount()
239
240 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
241