Merge pull request 'test into dev' (!100) from test into dev
gitea/hedera-web/pipeline/head This commit looks good
Details
gitea/hedera-web/pipeline/head This commit looks good
Details
Reviewed-on: #100
This commit is contained in:
commit
ef65622014
|
@ -1,5 +1,6 @@
|
|||
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 | apt-key add - \
|
||||
RUN curl -sL https://apt.verdnatura.es/conf/verdnatura.gpg | tee /etc/apt/trusted.gpg.d/verdnatura.gpg \
|
||||
&& echo "deb http://apt.verdnatura.es/ bookworm main" \
|
||||
> /etc/apt/sources.list.d/vn.list \
|
||||
&& apt-get update \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
hedera-web (24.14.11) stable; urgency=low
|
||||
hedera-web (25.4.3) stable; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ export default new Class({
|
|||
methods = ['balance'];
|
||||
selectedMethod = 'BALANCE';
|
||||
} else {
|
||||
methods = ['card', 'transfer', 'later'];
|
||||
methods = ['card'];
|
||||
|
||||
if (!creditExceededCond) {
|
||||
methods.push('credit');
|
||||
|
@ -98,9 +98,6 @@ export default new Class({
|
|||
case 'CARD':
|
||||
id = 'cardMethod';
|
||||
break;
|
||||
case 'TRANSFER':
|
||||
id = 'transferMethod';
|
||||
break;
|
||||
default:
|
||||
id = null;
|
||||
}
|
||||
|
|
|
@ -162,32 +162,6 @@
|
|||
<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">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hedera-web",
|
||||
"version": "24.14.11",
|
||||
"version": "25.4.3",
|
||||
"description": "Verdnatura web page",
|
||||
"license": "GPL-3.0",
|
||||
"repository": {
|
||||
|
|
Loading…
Reference in New Issue