Compare commits
1 Commits
dev
...
6492-agenc
Author | SHA1 | Date |
---|---|---|
Jorge Penadés | 8c3a5bb8a3 |
|
@ -1,6 +1,5 @@
|
|||
node_modules
|
||||
build/
|
||||
dist/
|
||||
config.my.php
|
||||
.vscode/
|
||||
.quasar
|
||||
|
|
|
@ -28,7 +28,7 @@ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|||
|
||||
# Hedera
|
||||
|
||||
RUN curl -sL https://apt.verdnatura.es/conf/verdnatura.gpg | tee /etc/apt/trusted.gpg.d/verdnatura.gpg \
|
||||
RUN curl -sL https://apt.verdnatura.es/conf/verdnatura.gpg | apt-key add - \
|
||||
&& echo "deb http://apt.verdnatura.es/ bookworm main" \
|
||||
> /etc/apt/sources.list.d/vn.list \
|
||||
&& apt-get update \
|
||||
|
|
|
@ -1,25 +1,34 @@
|
|||
#!/usr/bin/env groovy
|
||||
|
||||
def BRANCH_ENV = [
|
||||
test: 'test',
|
||||
master: 'production'
|
||||
]
|
||||
def remote = [:]
|
||||
|
||||
node {
|
||||
stage('Setup') {
|
||||
env.NODE_ENV = BRANCH_ENV[env.BRANCH_NAME] ?: 'dev'
|
||||
|
||||
echo "NODE_NAME: ${env.NODE_NAME}"
|
||||
echo "WORKSPACE: ${env.WORKSPACE}"
|
||||
}
|
||||
}
|
||||
pipeline {
|
||||
agent any
|
||||
environment {
|
||||
PROJECT_NAME = 'hedera-web'
|
||||
STACK_NAME = "${env.PROJECT_NAME}-${env.BRANCH_NAME}"
|
||||
}
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
script {
|
||||
def packageJson = readJSON file: 'package.json'
|
||||
env.VERSION = packageJson.version
|
||||
|
||||
switch (env.BRANCH_NAME) {
|
||||
case 'master':
|
||||
env.NODE_ENV = 'production'
|
||||
env.MAIN_REPLICAS = 3
|
||||
env.CRON_REPLICAS = 1
|
||||
break
|
||||
case 'test':
|
||||
env.NODE_ENV = 'test'
|
||||
env.MAIN_REPLICAS = 1
|
||||
env.CRON_REPLICAS = 0
|
||||
break
|
||||
}
|
||||
}
|
||||
setEnv()
|
||||
}
|
||||
}
|
||||
stage('Debuild') {
|
||||
when {
|
||||
anyOf {
|
||||
|
@ -29,29 +38,32 @@ pipeline {
|
|||
}
|
||||
agent {
|
||||
docker {
|
||||
image 'registry.verdnatura.es/verdnatura/debuild:2.23.4-vn7'
|
||||
image 'registry.verdnatura.es/debuild:2.23.4-vn1'
|
||||
registryUrl 'https://registry.verdnatura.es/'
|
||||
registryCredentialsId 'docker-registry'
|
||||
args '-v /mnt/appdata/reprepro:/reprepro'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'debuild -us -uc -b'
|
||||
sh 'mkdir -p debuild'
|
||||
sh 'mv ../hedera-web_* debuild'
|
||||
|
||||
script {
|
||||
def files = findFiles(glob: 'debuild/*.changes')
|
||||
files.each { file -> env.CHANGES_FILE = file.name }
|
||||
}
|
||||
|
||||
configFileProvider([
|
||||
configFile(fileId: "dput.cf", variable: 'DPUT_CONFIG')
|
||||
]) {
|
||||
sshagent(credentials: ['jenkins-agent']) {
|
||||
sh 'dput --config "$DPUT_CONFIG" verdnatura "debuild/$CHANGES_FILE"'
|
||||
}
|
||||
sh 'vn-includedeb bookworm'
|
||||
}
|
||||
}
|
||||
stage('Container') {
|
||||
when {
|
||||
anyOf {
|
||||
branch 'master'
|
||||
branch 'test'
|
||||
}
|
||||
}
|
||||
environment {
|
||||
CREDS = credentials('docker-registry')
|
||||
}
|
||||
steps {
|
||||
sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY'
|
||||
sh 'docker-compose build --build-arg BUILD_ID=$BUILD_ID --parallel'
|
||||
sh 'docker-compose push'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
when {
|
||||
|
@ -61,41 +73,15 @@ pipeline {
|
|||
}
|
||||
}
|
||||
environment {
|
||||
CREDS = credentials('docker-registry')
|
||||
IMAGE = "$REGISTRY/verdnatura/hedera-web"
|
||||
DOCKER_HOST = "${env.SWARM_HOST}"
|
||||
}
|
||||
steps {
|
||||
script {
|
||||
def packageJson = readJSON file: 'package.json'
|
||||
env.VERSION = "${packageJson.version}"
|
||||
env.TAG = "${packageJson.version}-build${env.BUILD_ID}"
|
||||
}
|
||||
|
||||
sh 'docker-compose build --build-arg BUILD_ID=$BUILD_ID --parallel'
|
||||
sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY'
|
||||
sh 'docker push $IMAGE:$TAG'
|
||||
|
||||
script {
|
||||
if (env.BRANCH_NAME == 'master') {
|
||||
sh 'docker tag $IMAGE:$TAG $IMAGE:latest'
|
||||
sh 'docker push $IMAGE:latest'
|
||||
}
|
||||
}
|
||||
|
||||
withKubeConfig([
|
||||
serverUrl: "$KUBERNETES_API",
|
||||
credentialsId: 'kubernetes',
|
||||
namespace: 'salix'
|
||||
]) {
|
||||
sh 'kubectl set image deployment/hedera-web-$BRANCH_NAME hedera-web-$BRANCH_NAME=$IMAGE:$TAG'
|
||||
sh 'kubectl set image deployment/hedera-web-cron-$BRANCH_NAME hedera-web-cron-$BRANCH_NAME=$IMAGE:$TAG'
|
||||
}
|
||||
sh "docker stack deploy --with-registry-auth --compose-file docker-compose.yml ${env.STACK_NAME}"
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
unsuccessful {
|
||||
setEnv()
|
||||
sendEmail()
|
||||
}
|
||||
}
|
||||
|
|
48
README.md
48
README.md
|
@ -1,58 +1,36 @@
|
|||
# Hedera
|
||||
|
||||
Hedera is the main web shop page for Verdnatura.
|
||||
Hedera is the main web page for Verdnatura.
|
||||
|
||||
## Prerequisites
|
||||
## Getting Started
|
||||
|
||||
Required applications.
|
||||
* PHP >= 8.4
|
||||
* Node.js >= 20.0
|
||||
Required dependencies.
|
||||
* PHP >= 7.0
|
||||
* Node.js >= 8.0
|
||||
|
||||
Take a look to *debian/control* file to see additional dependencies.
|
||||
### Web application
|
||||
|
||||
Copy config.php to *config.my.php* and place your DB config there.
|
||||
|
||||
### Installing dependencies and launching
|
||||
|
||||
Pull from repository.
|
||||
|
||||
Run this commands on project root directory to install Node dependencies.
|
||||
Launch fronted.
|
||||
```
|
||||
$ npm install
|
||||
npm run front
|
||||
```
|
||||
|
||||
Install project dependences (debian/control).
|
||||
|
||||
Pull from repository [php-vn-lib](https://gitea.verdnatura.es/verdnatura/php-vn-lib) and install [dependences](https://gitea.verdnatura.es/verdnatura/php-vn-lib/src/branch/master/debian/control) of this project.
|
||||
|
||||
Configure config.php file.
|
||||
|
||||
Launch project fronted.
|
||||
Launch backend.
|
||||
```
|
||||
$ npm run front
|
||||
```
|
||||
|
||||
Launch salix backend.
|
||||
```
|
||||
$ npm run db
|
||||
$ npm run back
|
||||
```
|
||||
Launch project backend.
|
||||
```
|
||||
$ php -S 127.0.0.1:3001 -t . index.php
|
||||
npm run db
|
||||
npm run back
|
||||
php -S 127.0.0.1:3001 -t . index.php
|
||||
```
|
||||
|
||||
### Command line
|
||||
|
||||
Run server side method from command line.
|
||||
```
|
||||
$ php hedera-web.php -m method_path
|
||||
php hedera-web.php -m method_path
|
||||
```
|
||||
|
||||
## Built with
|
||||
|
||||
* [nodejs](https://nodejs.org/)
|
||||
* [php](https://www.php.net/)
|
||||
* [Webpack](https://webpack.js.org/)
|
||||
* [MooTools](https://mootools.net/)
|
||||
* [TinyMCE](https://www.tinymce.com/)
|
||||
|
|
|
@ -12,8 +12,6 @@
|
|||
*
|
||||
* - http://www.mydomain.org -> config.www.php
|
||||
* - http://test.mydomain.org -> config.test.php
|
||||
*
|
||||
* Put the password in base64.
|
||||
*/
|
||||
return [
|
||||
/**
|
||||
|
@ -24,7 +22,7 @@ return [
|
|||
,'port' => 3306
|
||||
,'schema' => 'hedera'
|
||||
,'user' => 'hedera-web'
|
||||
,'pass' => '' // base64 encoded
|
||||
,'pass' => ''
|
||||
,'tz' => 'Europe/madrid'
|
||||
]
|
||||
];
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
hedera-web (25.4.4) stable; urgency=low
|
||||
hedera-web (23.40.6) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ MAILTO=webmaster
|
|||
*/2 * * * * root hedera-web.php -m edi/load
|
||||
0 23 * * * root hedera-web.php -m edi/clean
|
||||
0 5 * * * root hedera-web.php -m edi/update
|
||||
0 5 * * * root hedera-web.php -m misc/exchange-rate
|
||||
0 0 * * * root hedera-web.php -m image/sync
|
||||
0 1 * * * root /usr/share/hedera-web/utils/image-clean.sh > /dev/null
|
||||
0 */1 * * * root /usr/share/hedera-web/utils/update-browscap.sh > /dev/null
|
||||
|
|
|
@ -1,9 +1,47 @@
|
|||
version: '3.7'
|
||||
services:
|
||||
main:
|
||||
image: registry.verdnatura.es/verdnatura/hedera-web:${TAG:?}
|
||||
image: registry.verdnatura.es/hedera-web:${BRANCH_NAME:?}
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
args:
|
||||
- VERSION=${VERSION:?}
|
||||
ports:
|
||||
- 80
|
||||
configs:
|
||||
- source: config
|
||||
target: /etc/hedera-web/config.my.php
|
||||
volumes:
|
||||
- /mnt/appdata:/mnt/storage
|
||||
- /mnt/appdata/image:/var/lib/hedera-web/image-db
|
||||
- /mnt/appdata/vn-access:/var/lib/hedera-web/vn-access
|
||||
deploy:
|
||||
replicas: ${MAIN_REPLICAS:?}
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == worker
|
||||
resources:
|
||||
limits:
|
||||
memory: 2G
|
||||
cron:
|
||||
image: registry.verdnatura.es/hedera-web:${BRANCH_NAME:?}
|
||||
command: 'cron -f'
|
||||
configs:
|
||||
- source: config
|
||||
target: /etc/hedera-web/config.my.php
|
||||
volumes:
|
||||
- /mnt/appdata:/mnt/storage
|
||||
- /mnt/appdata/image:/var/lib/hedera-web/image-db
|
||||
deploy:
|
||||
replicas: ${CRON_REPLICAS:?}
|
||||
placement:
|
||||
constraints:
|
||||
- node.role == worker
|
||||
resources:
|
||||
limits:
|
||||
memory: 1G
|
||||
configs:
|
||||
config:
|
||||
external: true
|
||||
name: ${PROJECT_NAME:?}-${BRANCH_NAME:?}
|
||||
|
|
|
@ -65,8 +65,8 @@
|
|||
one-way="true"
|
||||
one-time="true">
|
||||
<db-model property="model">
|
||||
SELECT id, name FROM vn.country
|
||||
ORDER BY name
|
||||
SELECT id, country FROM vn.country
|
||||
ORDER BY country
|
||||
</db-model>
|
||||
</htk-combo>
|
||||
</div>
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
LEFT JOIN image im
|
||||
ON im.collectionFk = 'catalog'
|
||||
AND im.name = i.image
|
||||
WHERE i.isActive
|
||||
AND (i.longName LIKE CONCAT('%', #search, '%') OR i.id = #search)
|
||||
WHERE i.longName LIKE CONCAT('%', #search, '%')
|
||||
OR i.id = #search
|
||||
ORDER BY i.longName LIMIT 50
|
||||
</db-model>
|
||||
<custom>
|
||||
|
|
|
@ -3,5 +3,12 @@ import './style.scss';
|
|||
export default new Class({
|
||||
Extends: Hedera.Form,
|
||||
Template: require('./ui.xml'),
|
||||
|
||||
onShowClick(column, agencyId) {
|
||||
this.hash.setAll({
|
||||
form: 'agencies/provinces',
|
||||
agency: agencyId
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
ListByAgency: Paquets per agència
|
||||
ShowByProvince: Mostrar desglose per província
|
||||
Agency: Agència
|
||||
Exps: Exps.
|
||||
Bundles: Paquets
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
ListByAgency: Bundles by agency
|
||||
ShowByProvince: Show breakdown by province
|
||||
Agency: Agency
|
||||
Exps: Exps.
|
||||
Bundles: Bundles
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
ListByAgency: Bultos por agencia
|
||||
ShowByProvince: Mostrar desglose por provincia
|
||||
Agency: Agencia
|
||||
Exps: Exps.
|
||||
Bundles: Bultos
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
ListByAgency: Liste par agence
|
||||
ShowByProvince: Montrer par province
|
||||
Agency: Agence
|
||||
Exps: Expéditeur
|
||||
Bundles: Cartons
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
ListByAgency: Bultos por agencia
|
||||
ShowByProvince: Mostrar desglosse por Distrito
|
||||
Agency: Agencia
|
||||
Exps: Exps.
|
||||
Bundles: Bultos
|
||||
|
|
|
@ -7,9 +7,14 @@
|
|||
<htk-grid>
|
||||
<db-model property="model">
|
||||
<custom>
|
||||
CALL vn.agencyVolume()
|
||||
CALL vn2008.agencyVolume()
|
||||
</custom>
|
||||
</db-model>
|
||||
<htk-column-button
|
||||
column="agency_id"
|
||||
icon="search"
|
||||
tip="_ShowByProvince"
|
||||
on-clicked="onShowClick"/>
|
||||
<htk-column-text title="_Agency" column="Agencia"/>
|
||||
<htk-column-spin title="_Exps" column="expediciones"/>
|
||||
<htk-column-spin title="_Bundles" column="Bultos"/>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
import './style.scss';
|
||||
|
||||
export default new Class({
|
||||
Extends: Hedera.Form,
|
||||
Template: require('./ui.xml')
|
||||
});
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
ByProvince: Desglose per província
|
||||
Return: Tornar
|
||||
SelectAgency: Selecciona una agència al llistat de l'esquerra
|
||||
Province: Província
|
||||
Expeditions: Exps.
|
||||
Left: Falten
|
|
@ -0,0 +1,6 @@
|
|||
ByProvince: Breakdown by province
|
||||
Return: Return
|
||||
SelectAgency: Select an agency
|
||||
Province: Province
|
||||
Expeditions: Exps.
|
||||
Left: Left
|
|
@ -0,0 +1,6 @@
|
|||
ByProvince: Desglose por provincia
|
||||
Return: Volver
|
||||
SelectAgency: Selecciona una agencia
|
||||
Province: Provincia
|
||||
Expeditions: Exps.
|
||||
Left: Faltan
|
|
@ -0,0 +1,6 @@
|
|||
ByProvince: Par province
|
||||
Return: Retour
|
||||
SelectAgency: Sélectionnez une agence
|
||||
Province: Province
|
||||
Expeditions: Expéditions
|
||||
Left: Restant
|
|
@ -0,0 +1,6 @@
|
|||
ByProvince: Desglosse por Distritos
|
||||
Return: Voltar
|
||||
SelectAgency: Seleccione uma agência
|
||||
Province: Distrito
|
||||
Expeditions: Exps.
|
||||
Left: Faltam
|
|
@ -0,0 +1,18 @@
|
|||
<vn>
|
||||
<div id="title">
|
||||
<h1><t>ByProvince</t></h1>
|
||||
</div>
|
||||
<div id="form" class="provinces vn-w-sm">
|
||||
<div class="box">
|
||||
<htk-grid>
|
||||
<db-model property="model" lot="hash">
|
||||
CALL vn2008.desglose_volume(#agency)
|
||||
</db-model>
|
||||
<htk-column-text title="_Province" column="Provincia"/>
|
||||
<htk-column-spin title="_Expeditions" column="expediciones"/>
|
||||
<htk-column-spin title="_Bundles" column="Bultos"/>
|
||||
<htk-column-spin title="_Left" column="Prevision"/>
|
||||
</htk-grid>
|
||||
</div>
|
||||
</div>
|
||||
</vn>
|
|
@ -275,7 +275,7 @@
|
|||
}
|
||||
& > .htk-image {
|
||||
width: 100%;
|
||||
height: 210px;
|
||||
height: 180px;
|
||||
|
||||
& > img {
|
||||
height: initial;
|
||||
|
|
|
@ -117,7 +117,7 @@
|
|||
SELECT i.id, i.longName item, i.subName,
|
||||
i.tag5, i.value5, i.tag6, i.value6,
|
||||
i.tag7, i.value7, i.tag8, i.value8,
|
||||
i.relevancy, i.size, i.category, b.minQuantity,
|
||||
i.relevancy, i.size, i.category, i.minQuantity,
|
||||
k.name ink, p.name producer, o.name origin,
|
||||
b.available, b.price, b.`grouping`,
|
||||
i.image, im.updated
|
||||
|
@ -126,13 +126,19 @@
|
|||
LEFT JOIN vn.ink k ON k.id = i.inkFk
|
||||
LEFT JOIN vn.producer p ON p.id = i.producerFk
|
||||
LEFT JOIN vn.origin o ON o.id = i.originFk
|
||||
LEFT JOIN image im ON im.collectionFk = 'catalog'
|
||||
LEFT JOIN image im
|
||||
ON im.collectionFk = 'catalog'
|
||||
AND im.name = i.image
|
||||
WHERE b.available > 0
|
||||
ORDER BY i.relevancy DESC, i.name, i.size
|
||||
LIMIT 5000;
|
||||
DROP TEMPORARY TABLE tmp.item;
|
||||
CALL vn.ticketCalculatePurge();
|
||||
DROP TEMPORARY TABLE
|
||||
tmp.item,
|
||||
tmp.ticketCalculateItem,
|
||||
tmp.ticketComponentPrice,
|
||||
tmp.ticketComponent,
|
||||
tmp.ticketLot,
|
||||
tmp.zoneGetShipped;
|
||||
</db-model>
|
||||
<db-form id="$card" v-model="card" model="items"/>
|
||||
<vn-lot id="card-lot"/>
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
form-id="iter"
|
||||
on-change="onAddressChange">
|
||||
<db-model property="model" id="addresses">
|
||||
SELECT a.id, a.nickname, p.name province, a.city, a.street, a.isActive, c.name
|
||||
SELECT a.id, a.nickname, p.name province, a.city, a.street, a.isActive, c.country
|
||||
FROM myAddress a
|
||||
LEFT JOIN vn.province p ON p.id = a.provinceFk
|
||||
JOIN vn.country c ON c.id = p.countryFk
|
||||
|
|
|
@ -67,7 +67,7 @@ export default new Class({
|
|||
methods = ['balance'];
|
||||
selectedMethod = 'BALANCE';
|
||||
} else {
|
||||
methods = ['card'];
|
||||
methods = ['card', 'transfer', 'later'];
|
||||
|
||||
if (!creditExceededCond) {
|
||||
methods.push('credit');
|
||||
|
@ -98,6 +98,9 @@ export default new Class({
|
|||
case 'CARD':
|
||||
id = 'cardMethod';
|
||||
break;
|
||||
case 'TRANSFER':
|
||||
id = 'transferMethod';
|
||||
break;
|
||||
default:
|
||||
id = null;
|
||||
}
|
||||
|
|
|
@ -162,6 +162,32 @@
|
|||
<t>You will be redirected to the payment.</t>
|
||||
</div>
|
||||
</div>
|
||||
<div id="transfer-method">
|
||||
<label>
|
||||
<htk-radio radio-group="pay-method" value="TRANSFER"/>
|
||||
<t>Bank Transfer</t>
|
||||
</label>
|
||||
<div>
|
||||
<t>Make a transfer to one account.</t>
|
||||
<htk-repeater form-id="iter">
|
||||
<db-model property="model">
|
||||
SELECT name, iban FROM mainAccountBank
|
||||
</db-model>
|
||||
<custom>
|
||||
<div class="transfer-account">
|
||||
<p>{{iter.name}}</p>
|
||||
<p>{{iter.iban}}</p>
|
||||
</div>
|
||||
</custom>
|
||||
</htk-repeater>
|
||||
</div>
|
||||
</div>
|
||||
<div id="later-method">
|
||||
<label>
|
||||
<htk-radio radio-group="pay-method" value="LATER"/>
|
||||
<t>Pay later</t>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button-bar vn-mt-md">
|
||||
|
|
|
@ -3,17 +3,30 @@ import './style.scss';
|
|||
export default new Class({
|
||||
Extends: Hedera.Form,
|
||||
Template: require('./ui.xml'),
|
||||
|
||||
donwloadRenderer(column, invoice) {
|
||||
var invoiceId = invoice.$.id;
|
||||
|
||||
onDownloadClick(column, value, row) {
|
||||
var model = this.$.invoices;
|
||||
var hasPdf = model.get(row, 'hasPdf');
|
||||
var id = model.get(row, 'id');
|
||||
if (invoice.$.hasPdf && invoiceId) {
|
||||
var params = {
|
||||
srv: 'rest:dms/invoice',
|
||||
invoice: invoiceId,
|
||||
access_token: this.conn.token
|
||||
};
|
||||
|
||||
if (hasPdf && id) {
|
||||
let params = Vn.Url.makeUri({ access_token: this.conn.token });
|
||||
window.open(`/api/InvoiceOuts/${id}/download?${params}`);
|
||||
Object.assign(column, {
|
||||
tip: _('Download PDF'),
|
||||
disabled: false,
|
||||
icon: 'download',
|
||||
href: '?'+ Vn.Url.makeUri(params)
|
||||
});
|
||||
} else
|
||||
Htk.Toast.showWarning(_('Request the invoice to your salesperson'));
|
||||
Object.assign(column, {
|
||||
tip: _('Request the invoice to your salesperson'),
|
||||
disabled: true,
|
||||
icon: 'warning',
|
||||
href: null
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<htk-grid
|
||||
class="box vn-w-sm"
|
||||
show-header="false">
|
||||
<db-model property="model" id="invoices">
|
||||
<db-model property="model" id="tickets">
|
||||
SELECT id, ref, issued, amount, hasPdf
|
||||
FROM myInvoice
|
||||
ORDER BY issued DESC
|
||||
|
@ -16,9 +16,8 @@
|
|||
<htk-column-date title="_Date" column="issued" format="_%e %b %Y"/>
|
||||
<htk-column-spin title="_Import" column="amount" unit="€" digits="2"/>
|
||||
<htk-column-button
|
||||
icon="download"
|
||||
tip="_Download PDF"
|
||||
on-clicked="onDownloadClick"/>
|
||||
renderer="donwloadRenderer"
|
||||
target="_blank"/>
|
||||
</htk-grid>
|
||||
</div>
|
||||
</vn>
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
<label><t>Realm</t></label>
|
||||
<htk-combo form="lot" column="realm" not-null="false">
|
||||
<db-model property="model">
|
||||
SELECT id, name FROM vn.itemCategory
|
||||
WHERE display ORDER BY name
|
||||
SELECT id, reino FROM vn2008.reinos
|
||||
WHERE display != FALSE ORDER BY reino
|
||||
</db-model>
|
||||
</htk-combo>
|
||||
</div>
|
||||
|
|
|
@ -25,9 +25,9 @@
|
|||
on-ready="this.onConfigChange()">
|
||||
<db-model property="model">
|
||||
SELECT c.id, c.name reportTitle, c.namePrefix, c.warehouse, c.family,
|
||||
c.shelf, c.maxAmount, c.showPacking, c.stack, it.categoryFk realm
|
||||
FROM shelfMultiConfig c
|
||||
JOIN vn.itemType it ON it.id = c.family
|
||||
c.shelf, c.maxAmount, c.showPacking, c.stack, t.reino_id realm
|
||||
FROM shelfConfig c
|
||||
JOIN vn2008.Tipos t ON t.tipo_id = c.family
|
||||
</db-model>
|
||||
</htk-combo>
|
||||
</div>
|
||||
|
@ -39,8 +39,8 @@
|
|||
<label><t>Reign</t></label>
|
||||
<htk-combo form="lot" name="realm">
|
||||
<db-model property="model">
|
||||
SELECT id, name FROM vn.itemCategory
|
||||
WHERE display ORDER BY name
|
||||
SELECT id, reino FROM vn2008.reinos
|
||||
WHERE display != FALSE ORDER BY reino
|
||||
</db-model>
|
||||
</htk-combo>
|
||||
</div>
|
||||
|
@ -48,8 +48,8 @@
|
|||
<label><t>Family</t></label>
|
||||
<htk-combo form="lot" name="family">
|
||||
<db-model property="model" lot="lot">
|
||||
SELECT id, name FROM vn.itemType
|
||||
WHERE categoryFk = #realm ORDER BY name
|
||||
SELECT tipo_id, Tipo FROM vn2008.Tipos
|
||||
WHERE reino_id = #realm ORDER BY Tipo
|
||||
</db-model>
|
||||
</htk-combo>
|
||||
</div>
|
||||
|
|
|
@ -40,7 +40,9 @@ export const routes = {
|
|||
},
|
||||
agencies: {
|
||||
packages:
|
||||
() => import('agencies/packages')
|
||||
() => import('agencies/packages'),
|
||||
provinces:
|
||||
() => import('agencies/provinces')
|
||||
},
|
||||
cms: {
|
||||
about:
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "24.8.1",
|
||||
"version": "24.8.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "hedera-web",
|
||||
"version": "24.8.1",
|
||||
"version": "24.8.0",
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"js-yaml": "^3.12.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "25.4.4",
|
||||
"version": "24.8.0",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
use Vn\Web\Security;
|
||||
use Vn\Web\Util;
|
||||
use Vn\Lib;
|
||||
|
||||
class Invoice extends Vn\Web\RestRequest {
|
||||
const PARAMS = ['invoice'];
|
||||
const SECURITY = Security::INVOKER;
|
||||
|
||||
function run($db) {
|
||||
$pdfPath = $db->getValueFromFile(__DIR__ .'/invoice',
|
||||
['invoice' =>(int) $_GET['invoice']]);
|
||||
|
||||
if (!$pdfPath)
|
||||
throw new Lib\UserException(s('Invoice id not found'));
|
||||
|
||||
Util::printFile($pdfPath);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
SELECT CONCAT_WS('/', c.pdfsDir, vn.invoiceOut_getPath(#invoice))
|
||||
FROM config c
|
||||
JOIN myInvoice i
|
||||
WHERE i.id = #invoice
|
|
@ -8,7 +8,7 @@ class Clean extends Edi\Method {
|
|||
|
||||
$cleanPeriod = $db->getValue(
|
||||
"SELECT ic.cleanPeriod
|
||||
FROM imapMultiConfig ic
|
||||
FROM imapConfig ic
|
||||
JOIN util.config c ON c.environment = ic.environment");
|
||||
|
||||
$deleted = 0;
|
||||
|
|
|
@ -14,7 +14,7 @@ abstract class Method extends \Vn\Lib\Method {
|
|||
|
||||
$imapConf = $db->getRow(
|
||||
"SELECT ic.host, ic.user, ic.pass, ic.successFolder, ic.errorFolder
|
||||
FROM imapMultiConfig ic
|
||||
FROM imapConfig ic
|
||||
JOIN util.config c ON c.environment = ic.environment");
|
||||
|
||||
$this->mailbox = sprintf('{%s/imap/ssl/novalidate-cert}',
|
||||
|
|
|
@ -18,7 +18,7 @@ class Segment {
|
|||
|
||||
switch ($type) {
|
||||
case Type::DATE:
|
||||
$tmp = new Date();
|
||||
$tmp = Date.vnNew();
|
||||
$tmp->setDate(substr($v, 0, 4), substr($v, 4, 2), substr($v, 6, 2));
|
||||
return $tmp;
|
||||
case Type::TIME:
|
||||
|
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Ejemplo:
|
||||
* <Cube><Cube time="2010-12-10"><Cube currency="USD" rate="1.3244"/>
|
||||
*/
|
||||
class ExchangeRate extends Vn\Lib\Method {
|
||||
function run($db) {
|
||||
$db->selectDb('vn2008');
|
||||
|
||||
// Indica la URL del archivo
|
||||
|
||||
$xml = new SimpleXMLElement(
|
||||
'http://www.ecb.europa.eu/stats/eurofxref/eurofxref-hist-90d.xml', 0, TRUE);
|
||||
|
||||
$date = $db->getValue("SELECT MAX(date) fecha FROM reference_rate");
|
||||
$maxDate = $date ? DateTime::createFromFormat('Y-m-d', $date) : NULL;
|
||||
|
||||
foreach ($xml->Cube[0]->Cube as $cube) {
|
||||
$xmlDate = new DateTime($cube['time']);
|
||||
|
||||
// Si existen datos más recientes de la máxima fecha los añade
|
||||
|
||||
if ($maxDate <= $xmlDate)
|
||||
foreach ($cube->Cube as $subCube)
|
||||
if ($subCube['currency'] == 'USD') {
|
||||
$params = [
|
||||
'date' => $xmlDate,
|
||||
'rate' => $subCube['rate']
|
||||
];
|
||||
$db->query(
|
||||
'REPLACE INTO reference_rate(moneda_id, date, rate)
|
||||
VALUES(2, #date, #rate)',
|
||||
$params
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$db->queryFromFile(__DIR__.'/exrate-add');
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
INSERT INTO reference_rate (moneda_id, date, rate)
|
||||
SELECT 2, TIMESTAMPADD (DAY, 1, r1.date), r1.rate
|
||||
FROM reference_rate r1
|
||||
LEFT JOIN reference_rate r2
|
||||
ON TIMESTAMPADD(DAY, 1, r1.date) = r2.date
|
||||
WHERE r2.date IS NULL AND r1.date < TIMESTAMPADD (DAY, -2, CURDATE())
|
Loading…
Reference in New Issue