|
|
@@ -298,7 +298,7 @@
|
|
|
// console.log(row);
|
|
|
return (
|
|
|
_this.productLists.some((it) => it.categoryId == row.categoryId) ||
|
|
|
- _this.dimension == '3'
|
|
|
+ _this.dimension == '3' || row.measureQuantity == 0
|
|
|
);
|
|
|
};
|
|
|
},
|
|
|
@@ -393,7 +393,7 @@
|
|
|
selectable: (row) => {
|
|
|
return !_this.productLists.some(
|
|
|
(it) => it.categoryId == row.categoryId
|
|
|
- );
|
|
|
+ ) && row.measureQuantity != 0;
|
|
|
}
|
|
|
}
|
|
|
: {
|
|
|
@@ -406,7 +406,7 @@
|
|
|
selectable: (row) => {
|
|
|
return !_this.productLists.some(
|
|
|
(it) => it.categoryId == row.categoryId
|
|
|
- );
|
|
|
+ ) && row.measureQuantity != 0;
|
|
|
}
|
|
|
},
|
|
|
{
|