ps-toolkit-ui 1.20.2 → 1.20.13

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.
@@ -9813,7 +9813,11 @@
9813
9813
  this.rows.forEach(function (row) {
9814
9814
  var x = {};
9815
9815
  _this.cols.forEach(function (col) {
9816
- x[_this.l(col.name)] = _this.getText(_this.getCell(row, col));
9816
+ var txt = _this.getText(_this.getCell(row, col));
9817
+ if (col.type === exports.TableCollType.Price) {
9818
+ txt = txt.replace('ریال', '').trim();
9819
+ }
9820
+ x[_this.l(col.name)] = txt;
9817
9821
  });
9818
9822
  data.push(x);
9819
9823
  });