Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
How to calculate total cost here?
Hi, I am making a hotel management module.
In this module I have a menu that contains all the expenditures like meals, internet, room service, etc listed out along with their costs.
Also, I have defined rooms as products, so sale price of room will be the rent.
Now I want to create a 'checkout' button which will add (sale price of room*no. of days) with the sum of expenditures from expenditure menu.
Can someone tell me how to add these values and how to get the sum of expenditures?
Here is my py code:
class expenditure_records(osv.Model):
_name="expenditure.records"
_columns={
'name':fields.char('Expense name'),
'cost':fields.float('Expenditure cost'),
'expense_id':fields.many2one('expenditure','Expense ID'),
}
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 5/15/15, 1:55 AM |
Seen: 742 times |
Last updated: 5/15/15, 1:55 AM |