gm-printer 10.28.4 → 10.28.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-printer",
3
- "version": "10.28.4",
3
+ "version": "10.28.5",
4
4
  "description": "diy printer",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -226,7 +226,7 @@ class PrinterStore {
226
226
 
227
227
  // 分局明细拆分后的数据
228
228
  const splitTableData = _.map(
229
- _.filter(ranges, i[0] !== i[1] || (!i[0] && !i[1])), // 过滤掉 {[0,3],[3,3]}这周情况
229
+ _.filter(ranges, i => i[0] !== i[1] || (!i[0] && !i[1])), // 过滤掉 {[0,3],[3,3]}这周情况
230
230
  range => {
231
231
  const _tableData = Object.assign({}, tableData[end])
232
232
  _tableData.__details = data.slice(...range)