diff -r 2d0860e1ed16 web/org.openbravo.retail.posterminal/js/pointofsale/view/pointofsale.js
--- a/web/org.openbravo.retail.posterminal/js/pointofsale/view/pointofsale.js	Wed Jun 19 11:45:15 2019 +0200
+++ b/web/org.openbravo.retail.posterminal/js/pointofsale/view/pointofsale.js	Thu Jun 20 16:42:34 2019 +0200
@@ -632,7 +632,7 @@
   classModel: new Backbone.Model(),
   printReceipt: function(inSender, inEvent) {
     var receipt = this.model.get('order');
-    if (OB.MobileApp.model.hasPermission('OBPOS_print.receipt')) {
+    if (OB.MobileApp.model.hasPermission('OBPOS_print.receipt', true)) {
       if (receipt.get('isPaid') && !receipt.get('isQuotation')) {
         this.doShowPopup({
           popup: 'modalInvoices'
@@ -643,7 +643,7 @@
     }
   },
   printSingleReceipt: function(inSender, inEvent) {
-    if (OB.MobileApp.model.hasPermission('OBPOS_print.receipt')) {
+    if (OB.MobileApp.model.hasPermission('OBPOS_print.receipt', true)) {
       if (this.model.get('leftColumnViewManager').isOrder()) {
         var receipt = this.model.get('order');
         if (receipt.get('isPaid')) {
