dev #13530
This commit is contained in:
parent
afb713a8c6
commit
84f8cb9bcb
21
angular.json
21
angular.json
@ -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,
|
||||||
|
|||||||
@ -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) => {
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
appSelfDeliveryEndPoint: 'http://selfdelivery-pitsburg.mydatahosting.ru/admin_api',
|
appSelfDeliveryEndPoint: 'http://selfdelivery-pitsburg.mydatahosting.ru/admin_api',
|
||||||
systemId: 'dfe16ca16a3598b812',
|
systemId: 'dfe16ca16a3598b812',
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
export const environment = {
|
export const environment = {
|
||||||
production: true,
|
production: true,
|
||||||
appSelfDeliveryEndPoint: 'http://selfdelivery-pitsburg-test.mydatahosting.ru/api',
|
appSelfDeliveryEndPoint: 'http://selfdelivery-pitsburg-test.mydatahosting.ru/api',
|
||||||
systemId: 'dfe16ca16a3598b812',
|
systemId: 'dfe16ca16a3598b812',
|
||||||
};
|
};
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user