You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
528 B

  1. /*
  2. Copyright (C) 2020 - Today: GRAP (http://www.grap.coop)
  3. @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  5. */
  6. odoo.define('pos_empty_home.screens', function (require) {
  7. "use strict";
  8. var chrome = require('point_of_sale.chrome');
  9. chrome.UsernameWidget.include({
  10. click_username: function(){
  11. if (this.pos.config.iface_change_cashier) {
  12. this._super();
  13. }
  14. },
  15. });
  16. });