Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff -urN triagem-touch-master/imprimir.html /var/www/triagemsga/imprimir.html
- --- triagem-touch-master/imprimir.html 2014-02-17 06:08:52.000000000 -0800
- +++ /var/www/triagemsga/imprimir.html 2014-04-10 08:28:17.806728102 -0700
- @@ -11,15 +11,17 @@
- <body ng-controller="ImpressaoCtrl">
- <div id="senha">
- <div id="senha-header">
- + <img src='http://novosga/public/images/senha-header.png'><hr />
- {{ unidade.nome }}<br />
- <span class="data">{{ atendimento.chegada | date:'dd/MM/yyyy HH:mm:ss' }}</span>
- - </div>
- + </div><hr />
- <div id="senha-body">
- {{ atendimento.numero }}
- <span class="descricao">
- - {{ atendimento.nomePrioridade }}
- + {{ atendimento.servico }}<br />
- + ({{ atendimento.nomePrioridade }})
- </span>
- - </div>
- + </div><hr />
- <div id="senha-footer">
- {{ unidade.mensagemImpressao }}
- </div>
- @@ -27,4 +29,4 @@
- <script type="text/javascript" src="js/triagem-touch.print.js"></script>
- </body>
- -</html>
- \ No newline at end of file
- +</html>
- diff -urN triagem-touch-master/js/triagem-touch.js /var/www/triagemsga/js/triagem-touch.js
- --- triagem-touch-master/js/triagem-touch.js 2014-02-17 06:08:52.000000000 -0800
- +++ /var/www/triagemsga/js/triagem-touch.js 2014-04-10 08:30:27.542729799 -0700
- @@ -122,7 +122,8 @@
- if (response.error) {
- showError(response.error);
- } else {
- - Impressao.imprimir(response.atendimento);
- + unidade = $scope.unidades[$scope.unidade];
- + Impressao.imprimir(response.atendimento,unidade);
- }
- },
- complete: function() {
- @@ -261,12 +262,12 @@
- iframeId: 'frame-impressao',
- - imprimir: function(atendimento) {
- + imprimir: function(atendimento,unidade) {
- var iframe = document.getElementById(this.iframeId);
- iframe.src = "imprimir.html";
- iframe.onload = function() {
- var win = this.contentWindow;
- - win.postLoad(atendimento);
- + win.postLoad(atendimento,unidade);
- };
- }
- @@ -308,7 +309,7 @@
- Impressao.imprimir({
- id: 2,
- numero: 'A123',
- - });
- + },{});
- });
- })();
- diff -urN triagem-touch-master/js/triagem-touch.print.js /var/www/triagemsga/js/triagem-touch.print.js
- --- triagem-touch-master/js/triagem-touch.print.js 2014-02-17 06:08:52.000000000 -0800
- +++ /var/www/triagemsga/js/triagem-touch.print.js 2014-04-10 08:26:34.014726744 -0700
- @@ -10,17 +10,18 @@
- $scope.atendimento = {};
- $scope.unidade = {};
- - $scope.print = function(atendimento) {
- + $scope.print = function(atendimento,unidade) {
- $scope.$apply(function() {
- $scope.atendimento = atendimento;
- + $scope.unidade = unidade;
- window.print();
- });
- };
- });
- - window.postLoad = function(atendimento) {
- + window.postLoad = function(atendimento,unidade) {
- var scope = angular.element(document.body).scope();
- - scope.print(atendimento);
- + scope.print(atendimento,unidade);
- };
- -})();
- \ No newline at end of file
- +})();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement