'1111'
This commit is contained in:
parent
c4171c9eb9
commit
fa70870c9d
|
@ -110,7 +110,7 @@
|
|||
<!-- 数据范围过滤 -->
|
||||
${params.dataScope}
|
||||
</where>
|
||||
order by a.bidCode desc
|
||||
order by a.bid_code desc
|
||||
</select>
|
||||
|
||||
<select id="selectBidByBidId" parameterType="String" resultMap="BidResult">
|
||||
|
|
|
@ -553,7 +553,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
|
||||
and datediff(d, a.quot_quotation_date, #{params.endTime}) <![CDATA[>=]]> 0
|
||||
</if>
|
||||
and a.quot_approval_status = '2'
|
||||
and (a.quot_approval_status = '2' or (a.quot_approval_status = '3' and a.quot_oa_approval_status = '3'))
|
||||
</where>
|
||||
order by a.quot_quotation_date desc
|
||||
</select>
|
||||
|
@ -573,7 +573,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</if>
|
||||
and quot_distinguish is not null
|
||||
and quot_distinguish in ('1','2')
|
||||
and quot_approval_status = '2'
|
||||
and (quot_approval_status = '2' or (quot_approval_status = '3' and quot_oa_approval_status = '3'))
|
||||
</where>
|
||||
group by quot_distinguish) a
|
||||
</select>
|
||||
|
|
|
@ -548,11 +548,11 @@ export default {
|
|||
|
||||
/** 提交报价按钮 */
|
||||
commitHj() {
|
||||
var quotHjFileNum = this.quotHjFileList.length;
|
||||
/*const quotHjFileNum = this.quotHjFileList.length;
|
||||
if(quotHjFileNum==0){
|
||||
this.$modal.msgError("核价附件必须上传");
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
//报价单-核价协助状态 设置为 已协助
|
||||
commitHj(this.form).then(response => {
|
||||
this.open = false;
|
||||
|
|
Loading…
Reference in New Issue