0
1
Fork 0

Delivery note URL fix

This commit is contained in:
Juan Ferrer 2022-10-10 13:22:17 +02:00
parent dc6b1b967e
commit 996f318fe6
4 changed files with 7 additions and 7 deletions

8
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
setEnv() setEnv()
} }
} }
stage('Package') { stage('Debuild') {
when { when {
anyOf { anyOf {
branch 'master' branch 'master'
@ -38,7 +38,7 @@ pipeline {
} }
agent { agent {
docker { docker {
image 'registry.verdnatura.es/vn-debuild' image 'registry.verdnatura.es/debuild:2.21.3-vn2'
registryUrl 'https://registry.verdnatura.es/' registryUrl 'https://registry.verdnatura.es/'
registryCredentialsId 'docker-registry' registryCredentialsId 'docker-registry'
args '-v /mnt/appdata/reprepro:/reprepro' args '-v /mnt/appdata/reprepro:/reprepro'
@ -46,10 +46,10 @@ pipeline {
} }
steps { steps {
sh 'debuild -us -uc -b' sh 'debuild -us -uc -b'
sh 'vn-includedeb' sh 'vn-includedeb jessie'
} }
} }
stage('Build') { stage('Container') {
when { when {
anyOf { anyOf {
branch 'master' branch 'master'

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.408.18) stable; urgency=low hedera-web (1.408.19) stable; urgency=low
* Initial Release. * Initial Release.

View File

@ -20,7 +20,7 @@ Hedera.Ticket = new Class({
onPrintClick: function() { onPrintClick: function() {
let params = Vn.Url.makeUri({ let params = Vn.Url.makeUri({
authorization: this.conn.token, access_token: this.conn.token,
recipientId: this.gui.user.id, recipientId: this.gui.user.id,
type: 'deliveryNote' type: 'deliveryNote'
}); });

View File

@ -1,6 +1,6 @@
{ {
"name": "hedera-web", "name": "hedera-web",
"version": "1.408.18", "version": "1.408.19",
"description": "Verdnatura web page", "description": "Verdnatura web page",
"license": "GPL-3.0", "license": "GPL-3.0",
"repository": { "repository": {