This commit is contained in:
caf 2023-01-13 10:48:28 +04:00
parent afb713a8c6
commit 84f8cb9bcb
4 changed files with 28 additions and 7 deletions

View File

@ -64,6 +64,27 @@
], ],
"outputHashing": "all" "outputHashing": "all"
}, },
"test": {
"budgets": [
{
"type": "initial",
"maximumWarning": "4mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.test.ts"
}
],
"outputHashing": "all"
},
"development": { "development": {
"buildOptimizer": false, "buildOptimizer": false,
"optimization": false, "optimization": false,

View File

@ -276,7 +276,7 @@ notif2() {
qr_id = dat.payment[0].payload.id; qr_id = dat.payment[0].payload.id;
this.jsonRpcService.rpc2({ this.jsonRpcService.rpc2({
method: 'doAdminRefund', method: 'doAdminRefund',
params: { "order_id": id, "qr_id": qr_id } params: { "order_id": id_, "qr_id": qr_id }
}, RpcService.authService, false) }, RpcService.authService, false)
.subscribe({ .subscribe({
next: (result) => { next: (result) => {
@ -295,7 +295,7 @@ notif2() {
} else { } else {
this.jsonRpcService.rpc2({ this.jsonRpcService.rpc2({
method: 'doAdminRefund', method: 'doAdminRefund',
params: { "order_id": id} params: { "order_id": id_}
}, RpcService.authService, false) }, RpcService.authService, false)
.subscribe({ .subscribe({
next: (result) => { next: (result) => {