mg-ocr-invoice 0.2.4-beta0.6 → 0.2.4-beta0.8

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,7 +1,7 @@
1
1
  {
2
2
  "name": "mg-ocr-invoice",
3
3
  "private": false,
4
- "version": "0.2.4-beta0.6",
4
+ "version": "0.2.4-beta0.8",
5
5
  "type": "module",
6
6
  "types": "dist/types/index.d.ts",
7
7
  "module": "dist/index.es.js",
@@ -7,7 +7,7 @@
7
7
  alt="" />
8
8
  </div>
9
9
  <div>
10
- <Form label-width="65px">
10
+ <Form label-width="70px">
11
11
  <CellGroup inset>
12
12
  <template #title>
13
13
  <div class="Field-title">
@@ -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
- (item.taskStatus === 'ocr_success' ||
278
- item.taskStatus === 'repeat' ||
279
- item.taskStatus === 'finish') &&
280
- !item.invoiceExceptionInfo
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)