Advertisement
Guest User

Untitled

a guest
Apr 10th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. diff -urN triagem-touch-master/imprimir.html /var/www/triagemsga/imprimir.html
  2. --- triagem-touch-master/imprimir.html  2014-02-17 06:08:52.000000000 -0800
  3. +++ /var/www/triagemsga/imprimir.html   2014-04-10 08:28:17.806728102 -0700
  4. @@ -11,15 +11,17 @@
  5.  <body ng-controller="ImpressaoCtrl">
  6.      <div id="senha">
  7.          <div id="senha-header">
  8. +            <img src='http://novosga/public/images/senha-header.png'><hr />
  9.              {{ unidade.nome }}<br />
  10.              <span class="data">{{ atendimento.chegada | date:'dd/MM/yyyy HH:mm:ss' }}</span>
  11. -        </div>
  12. +        </div><hr />
  13.          <div id="senha-body">
  14.              {{ atendimento.numero }}
  15.              <span class="descricao">
  16. -                {{ atendimento.nomePrioridade }}
  17. +                {{ atendimento.servico }}<br />
  18. +                ({{ atendimento.nomePrioridade }})
  19.              </span>
  20. -        </div>
  21. +        </div><hr />
  22.          <div id="senha-footer">
  23.              {{ unidade.mensagemImpressao }}
  24.          </div>
  25. @@ -27,4 +29,4 @@
  26.      
  27.      <script type="text/javascript" src="js/triagem-touch.print.js"></script>
  28.  </body>
  29. -</html>
  30. \ No newline at end of file
  31. +</html>
  32. diff -urN triagem-touch-master/js/triagem-touch.js /var/www/triagemsga/js/triagem-touch.js
  33. --- triagem-touch-master/js/triagem-touch.js    2014-02-17 06:08:52.000000000 -0800
  34. +++ /var/www/triagemsga/js/triagem-touch.js 2014-04-10 08:30:27.542729799 -0700
  35. @@ -122,7 +122,8 @@
  36.                      if (response.error) {
  37.                          showError(response.error);
  38.                      } else {
  39. -                        Impressao.imprimir(response.atendimento);
  40. +                        unidade = $scope.unidades[$scope.unidade];
  41. +                        Impressao.imprimir(response.atendimento,unidade);
  42.                      }
  43.                  },
  44.                  complete: function() {
  45. @@ -261,12 +262,12 @@
  46.          
  47.          iframeId: 'frame-impressao',
  48.          
  49. -        imprimir: function(atendimento) {
  50. +        imprimir: function(atendimento,unidade) {
  51.              var iframe = document.getElementById(this.iframeId);
  52.              iframe.src = "imprimir.html";
  53.              iframe.onload = function() {
  54.                  var win = this.contentWindow;
  55. -                win.postLoad(atendimento);
  56. +                win.postLoad(atendimento,unidade);
  57.              };
  58.          }
  59.          
  60. @@ -308,7 +309,7 @@
  61.          Impressao.imprimir({
  62.              id: 2,
  63.              numero: 'A123',
  64. -        });
  65. +        },{});
  66.      });
  67.  
  68.  })();
  69. diff -urN triagem-touch-master/js/triagem-touch.print.js /var/www/triagemsga/js/triagem-touch.print.js
  70. --- triagem-touch-master/js/triagem-touch.print.js  2014-02-17 06:08:52.000000000 -0800
  71. +++ /var/www/triagemsga/js/triagem-touch.print.js   2014-04-10 08:26:34.014726744 -0700
  72. @@ -10,17 +10,18 @@
  73.          $scope.atendimento = {};
  74.          $scope.unidade = {};
  75.  
  76. -        $scope.print = function(atendimento) {
  77. +        $scope.print = function(atendimento,unidade) {
  78.              $scope.$apply(function() {
  79.                  $scope.atendimento = atendimento;
  80. +                $scope.unidade = unidade;
  81.                  window.print();
  82.              });
  83.          };
  84.      });
  85.  
  86. -    window.postLoad = function(atendimento) {
  87. +    window.postLoad = function(atendimento,unidade) {
  88.          var scope = angular.element(document.body).scope();
  89. -        scope.print(atendimento);
  90. +        scope.print(atendimento,unidade);
  91.      };
  92.      
  93. -})();
  94. \ No newline at end of file
  95. +})();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement