phx-node 1.0.123 → 1.0.124

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.
@@ -18,14 +18,14 @@ let PHXTransactionContentService = PHXTransactionContentService_1 = class PHXTra
18
18
  const content = [student_id, module_code, month_id];
19
19
  if (detail_id)
20
20
  content.push(detail_id);
21
- return `Z${content.join(".")}W`;
21
+ return `Z${content.join(" ")}W`;
22
22
  }
23
23
  parseContent(transactionContent) {
24
24
  var _a, _b, _c;
25
25
  const contentReal = transactionContent.match(/Z(.*?)W/);
26
26
  let result = {};
27
27
  if (contentReal && contentReal[1]) {
28
- const splitContent = contentReal[1].split(".");
28
+ const splitContent = contentReal[1].split(" ");
29
29
  result = {
30
30
  student_id: Number((_a = splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.STUDENT_ID]) !== null && _a !== void 0 ? _a : 0),
31
31
  module_code: splitContent[tuition_1.INDEX_TRANSACTION_CONTENT.MODULE_CODE],