【修改】应收金额为0的时候 选择专用发票 列表插槽状态显示不正确

This commit is contained in:
fengachen
2022-01-24 10:02:32 +08:00
parent b15c9d0f5d
commit 1f07207013
+3 -4
View File
@@ -79,13 +79,12 @@ export default {
// 应收金额为0 未到账 未邮寄 未开票的状态
return zero
} else {
// 应收金额为0 打包 与需要开票的状态
// 应收金额为0 打包 与需要开票的状态 打包与需要开票 只有√和×的状态
if (this.statusNo === 0) {
return error
} else if (this.statusNo === 1) {
} else if (this.statusNo === 1 || this.statusNo === 2) {
// 打包只有 0和 1 需要发票 有 0(不需要发票) 1(普通发票) 2(增值税发票)
return finished
} else if (this.statusNo === 2) {
return half
}
}