variable name
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2022-02-21 11:28:00 +01:00
parent 6a5d49a535
commit 8bbb5d5c27
3 changed files with 8 additions and 4 deletions

View File

@ -2,4 +2,8 @@ CREATE TABLE `vn`.`docuwareConfig` (
`id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`url` varchar(75) NULL, `url` varchar(75) NULL,
`token` varchar(1000) DEFAULT NULL `token` varchar(1000) DEFAULT NULL
); );
INSERT INTO `vn`.`docuwareConfig` (`url`)
VALUES
('https://verdnatura.docuware.cloud/docuware/platform');

View File

@ -20,13 +20,13 @@
<vn-menu vn-id="showDeliveryNoteMenu"> <vn-menu vn-id="showDeliveryNoteMenu">
<vn-list> <vn-list>
<vn-item <vn-item
ng-if="!$ctrl.hasDocuware" ng-if="!$ctrl.hasDocuwareFile"
ng-click="$ctrl.showPdfDeliveryNote()" ng-click="$ctrl.showPdfDeliveryNote()"
translate> translate>
as PDF as PDF
</vn-item> </vn-item>
<a class="vn-item" <a class="vn-item"
ng-if="$ctrl.hasDocuware" ng-if="$ctrl.hasDocuwareFile"
href='api/Docuwares/{{$ctrl.ticket.id}}/download/deliveryClient/findTicket?access_token={{$ctrl.vnToken.token}}' href='api/Docuwares/{{$ctrl.ticket.id}}/download/deliveryClient/findTicket?access_token={{$ctrl.vnToken.token}}'
target="_blank" target="_blank"
translate> translate>

View File

@ -130,7 +130,7 @@ class Controller extends Section {
}; };
this.$http.post(`Docuwares/${this.id}/checkFile`, params) this.$http.post(`Docuwares/${this.id}/checkFile`, params)
.then(res => { .then(res => {
this.hasDocuware = res.data; this.hasDocuwareFile = res.data;
}); });
} }