mg-ocr-invoice 0.2.4-beta0.7 → 0.2.4-beta0.9
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/dist/index.es.js +4 -4
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/InvoiceList/index.vue +6 -6
package/package.json
CHANGED
|
@@ -270,14 +270,14 @@ const selectStatus = (item: any) => {
|
|
|
270
270
|
// 未使用&& (验真通过||无需验真|| 手工录入||验真异常) && 发票推断状态错误值为空 && 发票识别任务已完成
|
|
271
271
|
return (
|
|
272
272
|
item.invoiceStatus === 'unused' &&
|
|
273
|
-
(item.realStatus === 'checked' ||
|
|
273
|
+
(((item.realStatus === 'checked' ||
|
|
274
274
|
item.realStatus === 'noNeed' ||
|
|
275
|
-
item.manualModify ||
|
|
276
275
|
item.realStatus === 'checkFail') &&
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
276
|
+
(item.taskStatus === 'ocr_success' ||
|
|
277
|
+
item.taskStatus === 'repeat' ||
|
|
278
|
+
item.taskStatus === 'finish') &&
|
|
279
|
+
!item.invoiceExceptionInfo) ||
|
|
280
|
+
item.manualModify)
|
|
281
281
|
)
|
|
282
282
|
}
|
|
283
283
|
const selectedAll: any = ref(false)
|