Browse Source

2026-03-02

领料申请管理增加打开功能
master
fengyuan_yang 2 months ago
parent
commit
80457121ed
  1. 4
      src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue

4
src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue

@ -123,7 +123,7 @@
<el-link style="cursor: pointer" v-if="scope.row.status==='待出库'" @click="editNotifyMaterialFun(scope.row)">编辑</el-link> <el-link style="cursor: pointer" v-if="scope.row.status==='待出库'" @click="editNotifyMaterialFun(scope.row)">编辑</el-link>
<el-link style="cursor: pointer" v-if="scope.row.status !== '草稿' && scope.row.status !== '已关闭' && scope.row.status !== '已归档'" @click="closeNotifyModel(scope.row)">关闭</el-link> <el-link style="cursor: pointer" v-if="scope.row.status !== '草稿' && scope.row.status !== '已关闭' && scope.row.status !== '已归档'" @click="closeNotifyModel(scope.row)">关闭</el-link>
<el-link style="cursor: pointer" v-if="scope.row.status === '草稿' " @click="deleteNotifyConfirm(scope.row)">删除</el-link> <el-link style="cursor: pointer" v-if="scope.row.status === '草稿' " @click="deleteNotifyConfirm(scope.row)">删除</el-link>
<!-- <a type="text" size="small" v-if="scope.row.status==='已关闭'" @click="openNotify(scope.row)">开启</a>-->
<el-link style="cursor: pointer" v-if="scope.row.status === '已关闭' || scope.row.status === '已完成'" @click="openNotify(scope.row)">打开</el-link>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -3038,7 +3038,7 @@
let inData = { let inData = {
site: row.site, site: row.site,
notifyNo: row.notifyNo, notifyNo: row.notifyNo,
status:'已下达',
status: '待出库',
} }
updateNotifyStatus(inData).then(({data}) => { updateNotifyStatus(inData).then(({data}) => {
if (data && data.code === 0) { if (data && data.code === 0) {

Loading…
Cancel
Save