mg-ocr-invoice 0.2.5 → 0.2.6
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 +3 -3
- package/dist/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/InvoiceList/index.vue +9 -11
package/package.json
CHANGED
|
@@ -269,17 +269,15 @@ const openDetails = (row: any) => {
|
|
|
269
269
|
}
|
|
270
270
|
const selectStatus = (item: any) => {
|
|
271
271
|
// 未使用&& (验真通过||无需验真|| 手工录入||验真异常) && 发票推断状态错误值为空 && 发票识别任务已完成
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
item.manualModify)
|
|
282
|
-
)
|
|
272
|
+
if (item.invoiceStatus) {
|
|
273
|
+
return true
|
|
274
|
+
} else if (item.manualModify) {
|
|
275
|
+
return true
|
|
276
|
+
} else if (!item.invoiceExceptionInfo) {
|
|
277
|
+
return true
|
|
278
|
+
} else {
|
|
279
|
+
return false
|
|
280
|
+
}
|
|
283
281
|
}
|
|
284
282
|
const selectedAll: any = ref(false)
|
|
285
283
|
const changeSelectAll = (v: any) => {
|