ps-toolkit-ui 1.20.16 → 1.20.18

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.
@@ -9825,7 +9825,7 @@
9825
9825
  _this.cols.forEach(function (col) {
9826
9826
  var txt = _this.getText(_this.getCell(row, col));
9827
9827
  if (col.type === exports.TableCollType.Price) {
9828
- txt = txt.replace('ریال', '').trim();
9828
+ txt = parseInt(txt.replace('ریال', '').replace(/,/g, '').trim(), 10);
9829
9829
  }
9830
9830
  x[_this.l(col.name)] = txt;
9831
9831
  });