ng-pli-commons 1.0.56-dev.0 → 1.0.57-dev.0

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.
@@ -7518,9 +7518,12 @@ class TokenComponent {
7518
7518
  valueReplace = new Date();
7519
7519
  html = this.tokenService.replaceToken(html, token.value, new Date());
7520
7520
  }
7521
- else if (subToken[1].toLowerCase() == TokenService.STATIC_TOKENS_KEY_FECHA_ENVIO_SOLICITUD.toLowerCase()) {
7522
- valueReplace = new Date();
7523
- html = this.tokenService.replaceToken(html, token.value, new Date());
7521
+ else if (subToken[1].toLowerCase() ===
7522
+ TokenService.STATIC_TOKENS_KEY_FECHA_ENVIO_SOLICITUD.toLowerCase()) {
7523
+ const rawDate = this.data?.dataFormApplication?.dateSendApplication ?? null;
7524
+ const dateSubmissionApplication = rawDate ? new Date(rawDate).toISOString() : '';
7525
+ valueReplace = dateSubmissionApplication;
7526
+ html = this.tokenService.replaceToken(html, token.value, dateSubmissionApplication);
7524
7527
  }
7525
7528
  else if (subToken[1].toLowerCase() == TokenService.STATIC_TOKENS_KEY_PATROCINADOR.toLowerCase()) {
7526
7529
  const patNombre = this.data.pliPromocion &&
@@ -16751,31 +16754,31 @@ class CustomValidator {
16751
16754
  /* tslint:disable */
16752
16755
  const VERSION = {
16753
16756
  "dirty": true,
16754
- "raw": "v1.0.56-dev.0-0-gc8205920-dirty",
16755
- "hash": "gc8205920",
16757
+ "raw": "v1.0.57-dev.0-0-ge097e7e5-dirty",
16758
+ "hash": "ge097e7e5",
16756
16759
  "distance": 0,
16757
- "tag": "v1.0.56-dev.0",
16760
+ "tag": "v1.0.57-dev.0",
16758
16761
  "semver": {
16759
16762
  "options": {
16760
16763
  "loose": false,
16761
16764
  "includePrerelease": false
16762
16765
  },
16763
16766
  "loose": false,
16764
- "raw": "v1.0.56-dev.0",
16767
+ "raw": "v1.0.57-dev.0",
16765
16768
  "major": 1,
16766
16769
  "minor": 0,
16767
- "patch": 56,
16770
+ "patch": 57,
16768
16771
  "prerelease": [
16769
16772
  "dev",
16770
16773
  0
16771
16774
  ],
16772
16775
  "build": [],
16773
- "version": "1.0.56-dev.0"
16776
+ "version": "1.0.57-dev.0"
16774
16777
  },
16775
- "suffix": "0-gc8205920-dirty",
16776
- "semverString": "1.0.56-dev.0",
16777
- "version": "1.0.56-dev.0",
16778
- "buildTimestamp": "2026-06-11T16:59:22.537Z"
16778
+ "suffix": "0-ge097e7e5-dirty",
16779
+ "semverString": "1.0.57-dev.0",
16780
+ "version": "1.0.57-dev.0",
16781
+ "buildTimestamp": "2026-06-22T16:41:05.243Z"
16779
16782
  };
16780
16783
  /* tslint:enable */
16781
16784