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 +1 -1
- package/src/printer/store.js +1 -1
package/package.json
CHANGED
package/src/printer/store.js
CHANGED
|
@@ -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)
|