@hmcts/ccd-case-ui-toolkit 4.9.0-ways-to-pay.2 → 4.9.0-ways-to-pay.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RELEASE-NOTES.md +3 -0
- package/dist/index.umd.js +101 -61
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.LICENSE.txt +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/dist/shared/components/case-editor/case-edit-page/case-edit-page.component.d.ts +1 -1
- package/dist/shared/components/case-editor/case-edit-page/case-edit-page.component.js +19 -11
- package/dist/shared/components/case-editor/case-edit-page/case-edit-page.component.js.map +1 -1
- package/dist/shared/components/case-editor/services/page-validation.service.d.ts +1 -1
- package/dist/shared/components/case-editor/services/page-validation.service.js +5 -2
- package/dist/shared/components/case-editor/services/page-validation.service.js.map +1 -1
- package/dist/shared/components/markdown/markdown.component.js +1 -1
- package/dist/shared/components/markdown/markdown.component.js.map +1 -1
- package/dist/shared/components/markdown/markdown.component.metadata.json +1 -1
- package/dist/shared/components/markdown/markdown.module.js +3 -1
- package/dist/shared/components/markdown/markdown.module.js.map +1 -1
- package/dist/shared/components/markdown/markdown.module.metadata.json +1 -1
- package/dist/shared/components/palette/base-field/index.d.ts +1 -0
- package/dist/shared/components/palette/base-field/index.js +1 -0
- package/dist/shared/components/palette/base-field/index.js.map +1 -1
- package/dist/shared/components/palette/base-field/index.metadata.json +1 -1
- package/dist/shared/components/palette/base-field/payment-field.component.d.ts +13 -0
- package/dist/shared/components/palette/base-field/payment-field.component.js +51 -0
- package/dist/shared/components/palette/base-field/payment-field.component.js.map +1 -0
- package/dist/shared/components/palette/base-field/payment-field.component.metadata.json +1 -0
- package/dist/shared/components/palette/payment/case-payment-history-viewer-field.component.d.ts +4 -6
- package/dist/shared/components/palette/payment/case-payment-history-viewer-field.component.js +8 -14
- package/dist/shared/components/palette/payment/case-payment-history-viewer-field.component.js.map +1 -1
- package/dist/shared/components/palette/payment/case-payment-history-viewer-field.component.metadata.json +1 -1
- package/dist/shared/components/palette/waystopay/waystopay-field.component.d.ts +3 -10
- package/dist/shared/components/palette/waystopay/waystopay-field.component.js +4 -30
- package/dist/shared/components/palette/waystopay/waystopay-field.component.js.map +1 -1
- package/dist/shared/components/palette/waystopay/waystopay-field.component.metadata.json +1 -1
- package/dist/shared/pipes/case-reference/case-reference.pipe.js +1 -1
- package/dist/shared/pipes/case-reference/case-reference.pipe.js.map +1 -1
- package/package.json +1 -1
package/RELEASE-NOTES.md
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @hmcts/ccd-case-ui-toolkit - Case UI Toolkit
|
|
3
|
-
* @version v4.9.0-ways-to-pay.
|
|
3
|
+
* @version v4.9.0-ways-to-pay.3
|
|
4
4
|
* @link undefined
|
|
5
5
|
* @license MIT
|
|
6
6
|
*/
|
|
@@ -18883,47 +18883,55 @@ var CaseEditPageComponent = /** @class */ (function () {
|
|
|
18883
18883
|
CaseEditPageComponent_1.setFocusToTop();
|
|
18884
18884
|
};
|
|
18885
18885
|
// Adding validation message to show it as Error Summary
|
|
18886
|
-
CaseEditPageComponent.prototype.generateErrorMessage = function (fields, container) {
|
|
18886
|
+
CaseEditPageComponent.prototype.generateErrorMessage = function (fields, container, path) {
|
|
18887
18887
|
var _this = this;
|
|
18888
18888
|
var group = container || this.editForm.controls['data'];
|
|
18889
18889
|
fields.filter(function (casefield) { return !_this.caseFieldService.isReadOnly(casefield); })
|
|
18890
|
-
.filter(function (casefield) { return !_this.pageValidationService.isHidden(casefield, _this.editForm); })
|
|
18890
|
+
.filter(function (casefield) { return !_this.pageValidationService.isHidden(casefield, _this.editForm, path); })
|
|
18891
18891
|
.forEach(function (casefield) {
|
|
18892
18892
|
var fieldElement = group.get(casefield.id);
|
|
18893
18893
|
if (fieldElement) {
|
|
18894
18894
|
var label = casefield.label || 'Field';
|
|
18895
|
-
var
|
|
18895
|
+
var id_1 = casefield.id;
|
|
18896
18896
|
if (fieldElement['component'] && fieldElement['component'].parent) {
|
|
18897
|
-
|
|
18897
|
+
if (fieldElement['component'].idPrefix.indexOf('_' + id_1 + '_') === -1) {
|
|
18898
|
+
id_1 = "" + fieldElement['component'].idPrefix + id_1;
|
|
18899
|
+
}
|
|
18900
|
+
else {
|
|
18901
|
+
id_1 = "" + fieldElement['component'].idPrefix;
|
|
18902
|
+
}
|
|
18898
18903
|
}
|
|
18899
18904
|
if (fieldElement.hasError('required')) {
|
|
18900
|
-
_this.validationErrors.push({ id:
|
|
18905
|
+
_this.validationErrors.push({ id: id_1, message: label + " is required" });
|
|
18901
18906
|
fieldElement.markAsDirty();
|
|
18902
18907
|
}
|
|
18903
18908
|
else if (fieldElement.hasError('pattern')) {
|
|
18904
|
-
_this.validationErrors.push({ id:
|
|
18909
|
+
_this.validationErrors.push({ id: id_1, message: label + " is not valid" });
|
|
18905
18910
|
fieldElement.markAsDirty();
|
|
18906
18911
|
}
|
|
18907
18912
|
else if (fieldElement.hasError('minlength')) {
|
|
18908
|
-
_this.validationErrors.push({ id:
|
|
18913
|
+
_this.validationErrors.push({ id: id_1, message: label + " is below the minimum length" });
|
|
18909
18914
|
fieldElement.markAsDirty();
|
|
18910
18915
|
}
|
|
18911
18916
|
else if (fieldElement.hasError('maxlength')) {
|
|
18912
|
-
_this.validationErrors.push({ id:
|
|
18917
|
+
_this.validationErrors.push({ id: id_1, message: label + " exceeds the maximum length" });
|
|
18913
18918
|
fieldElement.markAsDirty();
|
|
18914
18919
|
}
|
|
18915
18920
|
else if (fieldElement.invalid) {
|
|
18916
18921
|
if (casefield.isComplex()) {
|
|
18917
|
-
_this.generateErrorMessage(casefield.field_type.complex_fields, fieldElement);
|
|
18922
|
+
_this.generateErrorMessage(casefield.field_type.complex_fields, fieldElement, id_1);
|
|
18918
18923
|
}
|
|
18919
18924
|
else if (casefield.isCollection() && casefield.field_type.collection_field_type.type === 'Complex') {
|
|
18920
18925
|
var fieldArray = fieldElement;
|
|
18926
|
+
if (fieldArray['component'] && fieldArray['component']['collItems'] && fieldArray['component']['collItems'].length > 0) {
|
|
18927
|
+
id_1 = "" + fieldArray['component']['collItems'][0].prefix;
|
|
18928
|
+
}
|
|
18921
18929
|
fieldArray.controls.forEach(function (c) {
|
|
18922
|
-
_this.generateErrorMessage(casefield.field_type.collection_field_type.complex_fields, c.get('value'));
|
|
18930
|
+
_this.generateErrorMessage(casefield.field_type.collection_field_type.complex_fields, c.get('value'), id_1);
|
|
18923
18931
|
});
|
|
18924
18932
|
}
|
|
18925
18933
|
else {
|
|
18926
|
-
_this.validationErrors.push({ id:
|
|
18934
|
+
_this.validationErrors.push({ id: id_1, message: "Select or fill the required " + casefield.label + " field" });
|
|
18927
18935
|
fieldElement.markAsDirty();
|
|
18928
18936
|
}
|
|
18929
18937
|
}
|
|
@@ -20765,10 +20773,13 @@ var PageValidationService = /** @class */ (function () {
|
|
|
20765
20773
|
}
|
|
20766
20774
|
return !(this.checkMandatoryField(caseField, theControl));
|
|
20767
20775
|
};
|
|
20768
|
-
PageValidationService.prototype.isHidden = function (caseField, editForm) {
|
|
20776
|
+
PageValidationService.prototype.isHidden = function (caseField, editForm, path) {
|
|
20769
20777
|
var formFields = editForm.getRawValue();
|
|
20770
20778
|
var condition = conditional_show_model_1.ShowCondition.getInstance(caseField.show_condition);
|
|
20771
|
-
|
|
20779
|
+
if (path && path.indexOf('_' + caseField.id + '_') === -1) {
|
|
20780
|
+
path = "" + path + caseField.id;
|
|
20781
|
+
}
|
|
20782
|
+
return !condition.match(formFields.data, path);
|
|
20772
20783
|
};
|
|
20773
20784
|
PageValidationService.prototype.checkOptionalField = function (caseField, theControl) {
|
|
20774
20785
|
if (!theControl) {
|
|
@@ -25202,6 +25213,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
25202
25213
|
var core_1 = __webpack_require__(57208);
|
|
25203
25214
|
var markdown_component_1 = __webpack_require__(86843);
|
|
25204
25215
|
var ngx_md_1 = __webpack_require__(99978);
|
|
25216
|
+
var pipes_1 = __webpack_require__(32741);
|
|
25205
25217
|
exports.forRoot = ngx_md_1.NgxMdModule.forRoot();
|
|
25206
25218
|
var MarkdownModule = /** @class */ (function () {
|
|
25207
25219
|
function MarkdownModule() {
|
|
@@ -25209,7 +25221,8 @@ var MarkdownModule = /** @class */ (function () {
|
|
|
25209
25221
|
MarkdownModule = __decorate([
|
|
25210
25222
|
core_1.NgModule({
|
|
25211
25223
|
imports: [
|
|
25212
|
-
exports.forRoot
|
|
25224
|
+
exports.forRoot,
|
|
25225
|
+
pipes_1.PipesModule
|
|
25213
25226
|
],
|
|
25214
25227
|
declarations: [
|
|
25215
25228
|
markdown_component_1.MarkdownComponent
|
|
@@ -26274,6 +26287,7 @@ __export(__webpack_require__(90654));
|
|
|
26274
26287
|
__export(__webpack_require__(33262));
|
|
26275
26288
|
__export(__webpack_require__(16291));
|
|
26276
26289
|
__export(__webpack_require__(56503));
|
|
26290
|
+
__export(__webpack_require__(38645));
|
|
26277
26291
|
|
|
26278
26292
|
|
|
26279
26293
|
/***/ }),
|
|
@@ -26292,6 +26306,64 @@ var PaletteContext;
|
|
|
26292
26306
|
})(PaletteContext = exports.PaletteContext || (exports.PaletteContext = {}));
|
|
26293
26307
|
|
|
26294
26308
|
|
|
26309
|
+
/***/ }),
|
|
26310
|
+
|
|
26311
|
+
/***/ 38645:
|
|
26312
|
+
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
26313
|
+
|
|
26314
|
+
"use strict";
|
|
26315
|
+
|
|
26316
|
+
var __extends = (this && this.__extends) || (function () {
|
|
26317
|
+
var extendStatics = function (d, b) {
|
|
26318
|
+
extendStatics = Object.setPrototypeOf ||
|
|
26319
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
26320
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
26321
|
+
return extendStatics(d, b);
|
|
26322
|
+
}
|
|
26323
|
+
return function (d, b) {
|
|
26324
|
+
extendStatics(d, b);
|
|
26325
|
+
function __() { this.constructor = d; }
|
|
26326
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
26327
|
+
};
|
|
26328
|
+
})();
|
|
26329
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
26330
|
+
var abstract_field_read_component_1 = __webpack_require__(73860);
|
|
26331
|
+
var PaymentField = /** @class */ (function (_super) {
|
|
26332
|
+
__extends(PaymentField, _super);
|
|
26333
|
+
function PaymentField(appConfig, sessionStorage) {
|
|
26334
|
+
var _this = _super.call(this) || this;
|
|
26335
|
+
_this.appConfig = appConfig;
|
|
26336
|
+
_this.sessionStorage = sessionStorage;
|
|
26337
|
+
return _this;
|
|
26338
|
+
}
|
|
26339
|
+
PaymentField.prototype.getBaseURL = function () {
|
|
26340
|
+
return this.appConfig.getPaymentsUrl();
|
|
26341
|
+
};
|
|
26342
|
+
PaymentField.prototype.getPayBulkScanBaseURL = function () {
|
|
26343
|
+
return this.appConfig.getPayBulkScanBaseUrl();
|
|
26344
|
+
};
|
|
26345
|
+
PaymentField.prototype.getRefundsUrl = function () {
|
|
26346
|
+
return this.appConfig.getRefundsUrl();
|
|
26347
|
+
};
|
|
26348
|
+
PaymentField.prototype.getUserRoles = function () {
|
|
26349
|
+
var userDetails = JSON.parse(this.sessionStorage.getItem('userDetails') || null);
|
|
26350
|
+
if (!userDetails || !userDetails.hasOwnProperty('roles')) {
|
|
26351
|
+
return [];
|
|
26352
|
+
}
|
|
26353
|
+
return userDetails.roles;
|
|
26354
|
+
};
|
|
26355
|
+
PaymentField.prototype.getUserEmail = function () {
|
|
26356
|
+
var userDetails = JSON.parse(this.sessionStorage.getItem('userDetails') || null);
|
|
26357
|
+
if (!userDetails || !userDetails.hasOwnProperty('sub')) {
|
|
26358
|
+
return '';
|
|
26359
|
+
}
|
|
26360
|
+
return userDetails.sub;
|
|
26361
|
+
};
|
|
26362
|
+
return PaymentField;
|
|
26363
|
+
}(abstract_field_read_component_1.AbstractFieldReadComponent));
|
|
26364
|
+
exports.PaymentField = PaymentField;
|
|
26365
|
+
|
|
26366
|
+
|
|
26295
26367
|
/***/ }),
|
|
26296
26368
|
|
|
26297
26369
|
/***/ 15440:
|
|
@@ -32407,31 +32479,25 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
32407
32479
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
32408
32480
|
};
|
|
32409
32481
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
32410
|
-
var abstract_field_read_component_1 = __webpack_require__(73860);
|
|
32411
32482
|
var core_1 = __webpack_require__(57208);
|
|
32412
32483
|
var app_config_1 = __webpack_require__(35185);
|
|
32484
|
+
var session_storage_service_1 = __webpack_require__(95224);
|
|
32485
|
+
var payment_field_component_1 = __webpack_require__(38645);
|
|
32413
32486
|
var CasePaymentHistoryViewerFieldComponent = /** @class */ (function (_super) {
|
|
32414
32487
|
__extends(CasePaymentHistoryViewerFieldComponent, _super);
|
|
32415
|
-
function CasePaymentHistoryViewerFieldComponent(appConfig) {
|
|
32416
|
-
|
|
32417
|
-
_this.appConfig = appConfig;
|
|
32418
|
-
return _this;
|
|
32488
|
+
function CasePaymentHistoryViewerFieldComponent(appConfig, sessionStorage) {
|
|
32489
|
+
return _super.call(this, appConfig, sessionStorage) || this;
|
|
32419
32490
|
}
|
|
32420
|
-
CasePaymentHistoryViewerFieldComponent.prototype.getBaseURL = function () {
|
|
32421
|
-
return this.appConfig.getPaymentsUrl();
|
|
32422
|
-
};
|
|
32423
|
-
CasePaymentHistoryViewerFieldComponent.prototype.getPayBulkScanBaseURL = function () {
|
|
32424
|
-
return this.appConfig.getPayBulkScanBaseUrl();
|
|
32425
|
-
};
|
|
32426
32491
|
CasePaymentHistoryViewerFieldComponent = __decorate([
|
|
32427
32492
|
core_1.Component({
|
|
32428
32493
|
selector: 'ccd-case-payment-history-viewer-field',
|
|
32429
32494
|
template: __webpack_require__(69259),
|
|
32430
32495
|
}),
|
|
32431
|
-
__metadata("design:paramtypes", [app_config_1.AbstractAppConfig
|
|
32496
|
+
__metadata("design:paramtypes", [app_config_1.AbstractAppConfig,
|
|
32497
|
+
session_storage_service_1.SessionStorageService])
|
|
32432
32498
|
], CasePaymentHistoryViewerFieldComponent);
|
|
32433
32499
|
return CasePaymentHistoryViewerFieldComponent;
|
|
32434
|
-
}(
|
|
32500
|
+
}(payment_field_component_1.PaymentField));
|
|
32435
32501
|
exports.CasePaymentHistoryViewerFieldComponent = CasePaymentHistoryViewerFieldComponent;
|
|
32436
32502
|
|
|
32437
32503
|
|
|
@@ -33434,40 +33500,14 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
33434
33500
|
};
|
|
33435
33501
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33436
33502
|
var core_1 = __webpack_require__(57208);
|
|
33437
|
-
var session_storage_service_1 = __webpack_require__(95224);
|
|
33438
33503
|
var app_config_1 = __webpack_require__(35185);
|
|
33439
|
-
var
|
|
33504
|
+
var session_storage_service_1 = __webpack_require__(95224);
|
|
33505
|
+
var payment_field_component_1 = __webpack_require__(38645);
|
|
33440
33506
|
var WaysToPayFieldComponent = /** @class */ (function (_super) {
|
|
33441
33507
|
__extends(WaysToPayFieldComponent, _super);
|
|
33442
33508
|
function WaysToPayFieldComponent(appConfig, sessionStorage) {
|
|
33443
|
-
|
|
33444
|
-
_this.appConfig = appConfig;
|
|
33445
|
-
_this.sessionStorage = sessionStorage;
|
|
33446
|
-
return _this;
|
|
33509
|
+
return _super.call(this, appConfig, sessionStorage) || this;
|
|
33447
33510
|
}
|
|
33448
|
-
WaysToPayFieldComponent.prototype.getBaseURL = function () {
|
|
33449
|
-
return this.appConfig.getPaymentsUrl();
|
|
33450
|
-
};
|
|
33451
|
-
WaysToPayFieldComponent.prototype.getPayBulkScanBaseURL = function () {
|
|
33452
|
-
return this.appConfig.getPayBulkScanBaseUrl();
|
|
33453
|
-
};
|
|
33454
|
-
WaysToPayFieldComponent.prototype.getRefundsUrl = function () {
|
|
33455
|
-
return this.appConfig.getRefundsUrl();
|
|
33456
|
-
};
|
|
33457
|
-
WaysToPayFieldComponent.prototype.getUserRoles = function () {
|
|
33458
|
-
var userDetails = JSON.parse(this.sessionStorage.getItem('userDetails') || null);
|
|
33459
|
-
if (!userDetails || !userDetails.hasOwnProperty('roles')) {
|
|
33460
|
-
return [];
|
|
33461
|
-
}
|
|
33462
|
-
return userDetails.roles;
|
|
33463
|
-
};
|
|
33464
|
-
WaysToPayFieldComponent.prototype.getUserEmail = function () {
|
|
33465
|
-
var userDetails = JSON.parse(this.sessionStorage.getItem('userDetails') || null);
|
|
33466
|
-
if (!userDetails || !userDetails.hasOwnProperty('sub')) {
|
|
33467
|
-
return '';
|
|
33468
|
-
}
|
|
33469
|
-
return userDetails.sub;
|
|
33470
|
-
};
|
|
33471
33511
|
WaysToPayFieldComponent = __decorate([
|
|
33472
33512
|
core_1.Component({
|
|
33473
33513
|
selector: 'ccd-ways-to-pay-field',
|
|
@@ -33477,7 +33517,7 @@ var WaysToPayFieldComponent = /** @class */ (function (_super) {
|
|
|
33477
33517
|
session_storage_service_1.SessionStorageService])
|
|
33478
33518
|
], WaysToPayFieldComponent);
|
|
33479
33519
|
return WaysToPayFieldComponent;
|
|
33480
|
-
}(
|
|
33520
|
+
}(payment_field_component_1.PaymentField));
|
|
33481
33521
|
exports.WaysToPayFieldComponent = WaysToPayFieldComponent;
|
|
33482
33522
|
|
|
33483
33523
|
|
|
@@ -38253,7 +38293,7 @@ var CaseReferencePipe = /** @class */ (function () {
|
|
|
38253
38293
|
return draft_model_1.DRAFT_PREFIX;
|
|
38254
38294
|
}
|
|
38255
38295
|
else {
|
|
38256
|
-
return String(caseReference).replace(/(\d{4})(\d{4})(\d{4})(\d{4})
|
|
38296
|
+
return String(caseReference).replace(/(?<!\/)(\d{4})(\d{4})(\d{4})(\d{4})/g, '$1-$2-$3-$4');
|
|
38257
38297
|
}
|
|
38258
38298
|
};
|
|
38259
38299
|
CaseReferencePipe = __decorate([
|
|
@@ -70403,7 +70443,7 @@ module.exports = "<div class=\"spinner-container\">\n <div class=\"spinner-in
|
|
|
70403
70443
|
/***/ 6961:
|
|
70404
70444
|
/***/ ((module) => {
|
|
70405
70445
|
|
|
70406
|
-
module.exports = "<div><markdown class=\"markdown\" [innerHTML]=\"content\"></markdown></div>"
|
|
70446
|
+
module.exports = "<div><markdown class=\"markdown\" [innerHTML]=\"content | ccdCaseReference\"></markdown></div>"
|
|
70407
70447
|
|
|
70408
70448
|
/***/ }),
|
|
70409
70449
|
|
|
@@ -70697,7 +70737,7 @@ module.exports = "<div class=\"form-group\" [formGroup]=\"organisationFormGroup\
|
|
|
70697
70737
|
/***/ 69259:
|
|
70698
70738
|
/***/ ((module) => {
|
|
70699
70739
|
|
|
70700
|
-
module.exports = "<ccpay-payment-lib\n [API_ROOT]=\"getBaseURL()\"\n [CCD_CASE_NUMBER]=\"caseReference\"\n [BULKSCAN_API_ROOT]=\"getPayBulkScanBaseURL()\"\n [SELECTED_OPTION]=\"'CCDorException'\"\n [ISBSENABLE]=\"'true'\"\n [VIEW]=\"'case-transactions'\"\n></ccpay-payment-lib>\n"
|
|
70740
|
+
module.exports = "<ccpay-payment-lib\n [API_ROOT]=\"getBaseURL()\"\n [CCD_CASE_NUMBER]=\"caseReference\"\n [BULKSCAN_API_ROOT]=\"getPayBulkScanBaseURL()\"\n [SELECTED_OPTION]=\"'CCDorException'\"\n [ISBSENABLE]=\"'true'\"\n [VIEW]=\"'case-transactions'\"\n [REFUNDS_API_ROOT]=\"getRefundsUrl()\"\n [TAKEPAYMENT]=\"true\"\n [SERVICEREQUEST]=\"true\"\n [PAYMENT_GROUP_REF]=\"null\"\n [EXC_REFERENCE]=\"caseReference\"\n [DCN_NUMBER]=\"null\"\n [LOGGEDINUSERROLES]=\"getUserRoles()\"\n></ccpay-payment-lib>\n"
|
|
70701
70741
|
|
|
70702
70742
|
/***/ }),
|
|
70703
70743
|
|