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.

25 lines
945 B

  1. /******************************************************************************
  2. * Copyright (C) 2017-TODAY Camptocamp SA (<http://www.camptocamp.com>).
  3. * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. ******************************************************************************/
  5. odoo.define('pos_default_payment_method.activate_payment', function (require) {
  6. "use strict";
  7. var pos_models = require('point_of_sale.models');
  8. var pos_screens = require('point_of_sale.screens');
  9. // add `default_payment_method_id` to loaded pos config's fields
  10. pos_models.load_fields("pos.config", "default_payment_method_id");
  11. pos_screens.PaymentScreenWidget.include({
  12. show: function(){
  13. this._super();
  14. // activate default payment method if any
  15. if (this.pos.config.default_payment_method_id) {
  16. this.click_paymentmethods(this.pos.config.default_payment_method_id[0]);
  17. }
  18. },
  19. });
  20. });