| | |
| | | if (skipCheck) return false; |
| | | // 进入系统的不审核 |
| | | if (BomInfo.inKeeDeeDb == true) return false; |
| | | // 不在BOM明细表中不提交 |
| | | if (component.ExcludeFromBOM) return false; |
| | | //if (_drawInfo.isSpecial) return false; |
| | | // 待审核的不重复提交 |
| | | if (drawStatus == "submitted" || drawStatus == "resubmitted") return false; |
| | |
| | | public string NeedStopCheckIn() |
| | | { |
| | | if (skipCheck) return null; |
| | | /// 2025-03-12 修改金蝶插件拦截问题 |
| | | if (produceWay == "标准件") return null; |
| | | if (drawInfo.isSpecial) return null; |
| | | /// 2025-03-12 修改金蝶插件拦截问题 END |
| | | |
| | | if (BomInfo.inKeeDeeDb == true) return null; |
| | | if (IsHistoryData) |
| | | { |