# -*- coding: utf-8 -*- ############################################################################## # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # ############################################################################## { 'name': 'Point Of Sale', 'version': '1.0', 'category': 'Generic Modules/Sales & Purchases', 'description': """ Main features : - Fast encoding of the sale. - Allow to choose one payment mode (the quick way) or to split the payment between several payment mode. - Computation of the amount of money to return. - Create and confirm picking list automatically. - Allow the user to create invoice automatically. - Allow to refund former sales. """, 'author': 'OpenERP SA', 'depends': ['sale', 'delivery'], 'init_xml': [], 'update_xml': [ 'security/point_of_sale_security.xml', 'security/ir.model.access.csv', 'wizard/pos_details.xml', 'wizard/pos_add_product.xml', 'wizard/pos_confirm.xml', 'wizard/pos_discount.xml', 'wizard/pos_get_sale.xml', 'wizard/pos_open_statement.xml', 'wizard/pos_close_statement.xml', 'wizard/pos_box_entries.xml', 'wizard/pos_payment_report_user_view.xml', 'wizard/pos_payment_report_date_view.xml', 'wizard/pos_box_out.xml', 'wizard/pos_sales_user.xml', 'wizard/all_closed_cashbox_of_the_day.xml', 'wizard/pos_sales_user_current_user.xml', 'wizard/pos_sale_user_today.xml', 'wizard/pos_receipt_view.xml', 'wizard/pos_payment_report_user.xml', 'wizard/pos_payment_report.xml', 'wizard/pos_payment.xml', 'wizard/pos_scan_product_view.xml', 'wizard/pos_return_view.xml', 'pos_report.xml', 'pos_view.xml', 'report/report_pos_order_view.xml', 'report/report_cash_register_view.xml', 'pos_sequence.xml', 'posrule_data.xml', 'pos_data.xml', 'pos_workflow.xml', 'statement_view.xml', 'statement_report.xml', 'statement_data.xml', ], 'demo_xml': ['pos_demo.xml','singer_statement_demo.xml','multi_company_stock_data.xml'], 'installable': True, } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: