Server IP : 127.0.0.2 / Your IP : 52.14.133.33 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/point_of_sale/models/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import fields, models class PosConfiguration(models.TransientModel): _inherit = 'res.config.settings' _name = 'pos.config.settings' module_pos_restaurant = fields.Selection([ (0, "Point of sale for shops"), (1, "Restaurant: activate table management") ], string="Restaurant", help='This module adds several restaurant features to the Point of Sale: \n\n- Bill Printing: Allows you to print a receipt before the order is paid \n\n- Bill Splitting: Allows you to split an order into different orders \n\n- Kitchen Order Printing: allows you to print orders updates to kitchen or bar printers') module_pos_loyalty = fields.Boolean( string="Loyalty Program", help='Allows you to define a loyalty program in the point of sale, where the customers earn loyalty points and get rewards') module_pos_discount = fields.Selection([ (0, "Allow discounts on order lines only"), (1, "Allow global discounts") ], string="Discount", help='Allows the cashier to quickly give a percentage sale discount for all the sales order to a customer') module_pos_mercury = fields.Selection([ (0, "No credit card"), (1, "Allows customers to pay with credit cards.") ], string="Credit Cards", help='The transactions are processed by MercuryPay') module_pos_reprint = fields.Selection([ (0, "No reprint"), (1, "Allow cashier to reprint receipts") ], string="Reprints") module_pos_data_drinks = fields.Boolean(string="Import common drinks data")