mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-21 23:02:10 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
|
|
@ -0,0 +1,224 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import odoo.tests
|
||||
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
||||
|
||||
|
||||
@odoo.tests.tagged('post_install', '-at_install')
|
||||
class TestFrontend(AccountTestInvoicingCommon, odoo.tests.HttpCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls, chart_template_ref=None):
|
||||
super().setUpClass(chart_template_ref=chart_template_ref)
|
||||
|
||||
cls.env = cls.env(user=cls.env.ref('base.user_admin'))
|
||||
account_obj = cls.env['account.account']
|
||||
|
||||
account_receivable = account_obj.create({'code': 'X1012',
|
||||
'name': 'Account Receivable - Test',
|
||||
'account_type': 'asset_receivable',
|
||||
'reconcile': True})
|
||||
|
||||
printer = cls.env['restaurant.printer'].create({
|
||||
'name': 'Kitchen Printer',
|
||||
'proxy_ip': 'localhost',
|
||||
})
|
||||
drinks_category = cls.env['pos.category'].create({'name': 'Drinks'})
|
||||
|
||||
main_company = cls.env.ref('base.main_company')
|
||||
|
||||
second_cash_journal = cls.env['account.journal'].create({
|
||||
'name': 'Cash 2',
|
||||
'code': 'CSH2',
|
||||
'type': 'cash',
|
||||
'company_id': main_company.id
|
||||
})
|
||||
|
||||
cls.env['pos.payment.method'].create({
|
||||
'name': 'Cash 2',
|
||||
'split_transactions': False,
|
||||
'receivable_account_id': account_receivable.id,
|
||||
'journal_id': second_cash_journal.id,
|
||||
})
|
||||
|
||||
pos_config = cls.env['pos.config'].create({
|
||||
'name': 'Bar',
|
||||
'module_pos_restaurant': True,
|
||||
'is_table_management': True,
|
||||
'iface_splitbill': True,
|
||||
'iface_printbill': True,
|
||||
'iface_orderline_notes': True,
|
||||
'printer_ids': [(4, printer.id)],
|
||||
'iface_start_categ_id': drinks_category.id,
|
||||
'start_category': True,
|
||||
'pricelist_id': cls.env.ref('product.list0').id,
|
||||
})
|
||||
|
||||
main_floor = cls.env['restaurant.floor'].create({
|
||||
'name': 'Main Floor',
|
||||
'pos_config_id': pos_config.id,
|
||||
})
|
||||
|
||||
cls.env['restaurant.table'].create({
|
||||
'name': 'T5',
|
||||
'floor_id': main_floor.id,
|
||||
'seats': 4,
|
||||
'position_h': 100,
|
||||
'position_v': 100,
|
||||
})
|
||||
cls.env['restaurant.table'].create({
|
||||
'name': 'T4',
|
||||
'floor_id': main_floor.id,
|
||||
'seats': 4,
|
||||
'shape': 'square',
|
||||
'position_h': 150,
|
||||
'position_v': 100,
|
||||
})
|
||||
cls.env['restaurant.table'].create({
|
||||
'name': 'T2',
|
||||
'floor_id': main_floor.id,
|
||||
'seats': 4,
|
||||
'position_h': 250,
|
||||
'position_v': 100,
|
||||
})
|
||||
|
||||
second_floor = cls.env['restaurant.floor'].create({
|
||||
'name': 'Second Floor',
|
||||
'pos_config_id': pos_config.id,
|
||||
})
|
||||
|
||||
cls.env['restaurant.table'].create({
|
||||
'name': 'T1',
|
||||
'floor_id': second_floor.id,
|
||||
'seats': 4,
|
||||
'shape': 'square',
|
||||
'position_h': 100,
|
||||
'position_v': 150,
|
||||
})
|
||||
cls.env['restaurant.table'].create({
|
||||
'name': 'T3',
|
||||
'floor_id': second_floor.id,
|
||||
'seats': 4,
|
||||
'position_h': 100,
|
||||
'position_v': 250,
|
||||
})
|
||||
|
||||
cls.env['ir.property']._set_default(
|
||||
'property_account_receivable_id',
|
||||
'res.partner',
|
||||
account_receivable,
|
||||
main_company,
|
||||
)
|
||||
|
||||
test_sale_journal = cls.env['account.journal'].create({
|
||||
'name': 'Sales Journal - Test',
|
||||
'code': 'TSJ',
|
||||
'type': 'sale',
|
||||
'company_id': main_company.id
|
||||
})
|
||||
|
||||
cash_journal = cls.env['account.journal'].create({
|
||||
'name': 'Cash Test',
|
||||
'code': 'TCJ',
|
||||
'type': 'cash',
|
||||
'company_id': main_company.id
|
||||
})
|
||||
|
||||
pos_config.write({
|
||||
'journal_id': test_sale_journal.id,
|
||||
'invoice_journal_id': test_sale_journal.id,
|
||||
'payment_method_ids': [(0, 0, {
|
||||
'name': 'Cash restaurant',
|
||||
'split_transactions': True,
|
||||
'receivable_account_id': account_receivable.id,
|
||||
'journal_id': cash_journal.id,
|
||||
})],
|
||||
})
|
||||
|
||||
cls.env['product.product'].create({
|
||||
'available_in_pos': True,
|
||||
'list_price': 2.20,
|
||||
'name': 'Coca-Cola',
|
||||
'weight': 0.01,
|
||||
'pos_categ_id': drinks_category.id,
|
||||
'categ_id': cls.env.ref('point_of_sale.product_category_pos').id,
|
||||
'taxes_id': [(6, 0, [])],
|
||||
})
|
||||
|
||||
cls.env['product.product'].create({
|
||||
'available_in_pos': True,
|
||||
'list_price': 2.20,
|
||||
'name': 'Water',
|
||||
'weight': 0.01,
|
||||
'pos_categ_id': drinks_category.id,
|
||||
'categ_id': cls.env.ref('point_of_sale.product_category_pos').id,
|
||||
'taxes_id': [(6, 0, [])],
|
||||
})
|
||||
|
||||
cls.env['product.product'].create({
|
||||
'available_in_pos': True,
|
||||
'list_price': 2.20,
|
||||
'name': 'Minute Maid',
|
||||
'weight': 0.01,
|
||||
'pos_categ_id': drinks_category.id,
|
||||
'categ_id': cls.env.ref('point_of_sale.product_category_pos').id,
|
||||
'taxes_id': [(6, 0, [])],
|
||||
})
|
||||
|
||||
pricelist = cls.env['product.pricelist'].create({'name': 'Restaurant Pricelist'})
|
||||
pos_config.write({'pricelist_id': pricelist.id})
|
||||
|
||||
cls.pos_config = pos_config
|
||||
|
||||
def test_01_pos_restaurant(self):
|
||||
|
||||
self.pos_config.with_user(self.env.ref('base.user_admin')).open_ui()
|
||||
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'pos_restaurant_sync', login="admin")
|
||||
|
||||
self.assertEqual(1, self.env['pos.order'].search_count([('amount_total', '=', 4.4), ('state', '=', 'draft')]))
|
||||
self.assertEqual(1, self.env['pos.order'].search_count([('amount_total', '=', 4.4), ('state', '=', 'paid')]))
|
||||
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'pos_restaurant_sync_second_login', login="admin")
|
||||
|
||||
self.assertEqual(0, self.env['pos.order'].search_count([('amount_total', '=', 4.4), ('state', '=', 'draft')]))
|
||||
self.assertEqual(1, self.env['pos.order'].search_count([('amount_total', '=', 2.2), ('state', '=', 'draft')]))
|
||||
self.assertEqual(2, self.env['pos.order'].search_count([('amount_total', '=', 4.4), ('state', '=', 'paid')]))
|
||||
|
||||
def test_02_others(self):
|
||||
self.pos_config.with_user(self.env.ref('base.user_admin')).open_ui()
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'SplitBillScreenTour', login="admin")
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'ControlButtonsTour', login="admin")
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'FloorScreenTour', login="admin")
|
||||
|
||||
def test_04_ticket_screen(self):
|
||||
self.pos_config.with_user(self.env.ref('base.user_admin')).open_ui()
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'PosResTicketScreenTour', login="admin")
|
||||
|
||||
def test_05_tip_screen(self):
|
||||
self.pos_config.write({'set_tip_after_payment': True, 'iface_tipproduct': True, 'tip_product_id': self.env.ref('point_of_sale.product_product_tip')})
|
||||
self.pos_config.with_user(self.env.ref('base.user_admin')).open_ui()
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'PosResTipScreenTour', login="admin")
|
||||
|
||||
order1 = self.env['pos.order'].search([('pos_reference', 'ilike', '%-0001')])
|
||||
order2 = self.env['pos.order'].search([('pos_reference', 'ilike', '%-0002')])
|
||||
order3 = self.env['pos.order'].search([('pos_reference', 'ilike', '%-0003')])
|
||||
order4 = self.env['pos.order'].search([('pos_reference', 'ilike', '%-0004')])
|
||||
self.assertTrue(order1.is_tipped and order1.tip_amount == 0.40)
|
||||
self.assertTrue(order2.is_tipped and order2.tip_amount == 1.00)
|
||||
self.assertTrue(order3.is_tipped and order3.tip_amount == 1.50)
|
||||
self.assertTrue(order4.is_tipped and order4.tip_amount == 1.00)
|
||||
|
||||
def test_06_split_bill_screen(self):
|
||||
self.pos_config.with_user(self.env.ref('base.user_admin')).open_ui()
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'SplitBillScreenTour2', login="admin")
|
||||
|
||||
def test_07_refund_stay_current_table(self):
|
||||
self.pos_config.with_user(self.env.ref('base.user_admin')).open_ui()
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'RefundStayCurrentTableTour', login="admin")
|
||||
|
||||
def test_11_bill_screen_qrcode(self):
|
||||
self.env.company.point_of_sale_use_ticket_qr_code = True
|
||||
self.pos_config.with_user(self.env.ref('base.user_admin')).open_ui()
|
||||
self.start_tour("/pos/ui?config_id=%d" % self.pos_config.id, 'BillScreenTour', login="admin")
|
||||
Loading…
Add table
Add a link
Reference in a new issue