feat: 设备管理优化-0513-合同管理复制

演示数据2.0
chenhc 11 months ago
parent 08472d5700
commit 9fdb69c5a2

@ -0,0 +1,91 @@
import axios from "@/utils/request";
import request from "@/utils/request";
export function listPlan(query) {
return axios({
url: '/purchase/contract/list',
method: 'get',
params: query
})
}
export function listApplyDetail(query) {
return axios({
url: '/purchase/contract/list/detail',
method: 'get',
params: query
})
}
//更新pur
export function updateDetail(data) {
return request({
url: "/purchase/contract/updateDetail",
method: 'post',
data: data
})
}
// 添加详情表
export function addContractDetail(data) {
return request({
url: "/purchase/contract/addContractDetail",
method: 'post',
data: data
})
}
export function inserThrOrderWeb(query) {
return axios({
url: "/purchase/contract/postOrder",
method: "post",
data: query
});
}
// 添加puan
export function addContractId() {
return request({
url: "/purchase/addContractDetail/add",
method: 'post'
})
}
// 查询详情表
export function selectContractDetail(query) {
return request({
url: "/purchase/contract/list/detail",
method: 'get',
params: query
})
}
//删除计划表和详情表
export function delContractDetailAll(data) {
return request({
url: "/purchase/contract/delContractDetailAll",
method: 'post',
data: data
})
}
// 删除pur
export function delApplyDetail(id) {
return axios({
url: '/purchase/contract/detail/' + id,
method: 'delete'
})
}
// 导入计划
export function importPlan(data) {
return axios({
url: "/purchase/contract/importPlan",
method: 'post',
data: data
})
}

@ -0,0 +1,633 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="filterQuery" class="query-form" label-width="100px" v-if="showSearch">
<el-row>
<el-col :span="6">
<el-form-item label="合同编号">
<el-input v-model="filterQuery.code" style="width: 90%" placeholder="请输入合同编号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="合同名称">
<el-input v-model="filterQuery.name" style="width: 90%" clearable placeholder="请输入合同名称">
</el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="10">-->
<!-- <el-form-item label="合同状态:" prop="emergency">-->
<!-- <el-select v-model="filterQuery.status" placeholder="请选单据状态" style="width: 90%" @change="getList" clearable>-->
<!-- <el-option label="草稿" :value='0'></el-option>-->
<!-- <el-option label="审核中" :value='1'></el-option>-->
<!-- <el-option label="已审核" :value='2'></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="12">
<el-form-item label="合同签订日期:">
<el-date-picker
:picker-options="pickerOptions"
v-model="actDateRange"
type="daterange"
format="yyyy 年 MM 月 dd 日"
style="width: 90%"
value-format="yyyy-MM-dd"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmitFind"></el-button>
<el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增合同 </el-button>
<el-button type="primary" icon="el-icon-plus" @click="newDistributionFormPlan()" :loading="loading">导入计划
</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
@current-change="handleDetail" :default-sort="defaultSort" @sort-change="handleSortChange">
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="合同编号" prop="code"></el-table-column>
<el-table-column label="合同名称" prop="name"></el-table-column>
<el-table-column label="往来单位/供应商" prop="fromCorp"></el-table-column>
<el-table-column label="合同仓库" prop="invCode" :formatter="invCodeFormat"></el-table-column>
<!-- <el-table-column label="合同状态" prop="status" :formatter="statusFormat"></el-table-column>-->
<el-table-column label="合同状态" prop="status" width="230">
<template slot-scope="scope">
<el-tag :type="(scope.row.status == 0? 1:scope.row.status ) | statusFilterType">
{{ statusMap[(scope.row.status == 0? 1:scope.row.status ) ] }}
</el-tag>
<el-tag v-if="scope.row.nextNodeName != null && scope.row.nextNodeName != '' && scope.row.status == 2 " class="tag-right-align">
<b v-if="scope.row.nextApprovalNodeType == 1"></b>
<b v-if="scope.row.nextApprovalNodeType == 2"></b>
{{ scope.row.nextNodeName }}审核
</el-tag>
</template>
</el-table-column>
<el-table-column label="合同类型" prop="type" :formatter="typeFormat"></el-table-column>
<!-- <el-table-column label="付款方式" prop="payType" :formatter="payTypeFormat"></el-table-column>-->
<el-table-column label="付款方式" prop="payType"></el-table-column>
<el-table-column label="合同签订日期" prop="contractDate"
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)" v-show="(scope.row.status=='' || scope.row.status == 1) ">
</el-button>
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" v-show="(scope.row.status=='' || scope.row.status==1) " >删除</el-button>
<el-button type="text" size="small" @click.native.stop="showApprovalFlowDetail(scope.row)"
v-show=" scope.row.status != 1 && scope.row.status !='' ">审批详情
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@pagination="handleCurrentChange"
></pagination>
</el-card>
<el-card class="el-card">
<el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="产品名称" prop="productName"></el-table-column>
<el-table-column label="生产厂家" prop="productCompany"></el-table-column>
<el-table-column label="注册证/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="规格型号" prop="ggxh"></el-table-column>
<el-table-column label="包装级别" prop="packRatio"></el-table-column>
<el-table-column label="供应商名称" prop="supName"></el-table-column>
<el-table-column label="数量" prop="count"></el-table-column>
</el-table>
<pagination
v-show="detailquery.total>0"
:total="detailquery.total"
:page.sync="detailquery.page"
:limit.sync="detailquery.limit"
@pagination="handleCurrentChangeDetail"
></pagination>
</el-card>
<el-dialog
:title="formMap[formName]"
:visible.sync="newSpDistributionVisible"
width="80%"
v-if="newSpDistributionVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<purContractEdit
:isChang="isChang"
:closeDialog="closeDialog"
v-on:cancelDialog="getId"
:idQuery="idQuery"
></purContractEdit>
</el-dialog>
<el-dialog
:title="formMap[formName]"
:visible.sync="newDistributionFormPlanVisible"
width="80%"
v-if="newDistributionFormPlanVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
>
<purContractSelectPlan
:invList = "this.invList"
:closeDialog="closeDialogSp"
></purContractSelectPlan>
</el-dialog>
<el-dialog
title="审批详情"
:visible.sync="approvalFlowDetailVisible"
width="65%"
v-if="approvalFlowDetailVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<approvalFlowDetail
:isChang="true"
:closeDialog="closeDialog"
:idQuery="idQuery"
></approvalFlowDetail>
</el-dialog>
</div>
</template>
<script>
import approvalFlowDetail from "@/components/ApprovalFlow";
import purContractEdit from "@/views/purchase/purContract/purContractEditDialog";
import purContractSelectPlan from "@/views/purchase/purContract/purContractSelectPlan";
import {delApply, inserThrOrderWeb, listPlan, listApplyDetail, delContractDetailAll} from "@/api/purchase/purContract";
import {findInvByUser} from "@/api/system/invSubWarehouse";
export default {
name: "purContract",
data() {
return {
defaultSort: {prop: 'createTime', order: 'desc'},
showSearch: true,
pId: null,
isChang: false,
filterQuery: {
billAction: null,
billNo: "",
originType: null,
thirdSysFk: "",
page: 1,
limit: 10,
corpName: null,
type: 1,
status: 11,
editStatus: 1,
emergency: '',
deptCode: '',
invCode: null
},
invCodebe: null,
formName: null,
formMap: {
add: "新增合同信息",
update: "编辑合同信息",
selectPlan: "选择采购计划",
},
statusMap: {
1: "草稿",
2: "审核中",
3: "通过",
4: "拒绝"
},
typeList:[
{name: '战略' ,code: 1 },
{name: '长期' ,code: 2 },
{name: '短期' ,code: 3 }
],
statusList:[
{name: '草稿' ,code: 1 },
{name: '未审核' ,code: 2 },
{name: '已审核' ,code: 3 }
],
payTypeList:[
{name: '银行' ,code: 1 },
{name: '微信' ,code: 2 },
{name: '支付宝' ,code: 3}
],
idQuery: {},
row: {},
total: 0,
thirdSys: [],
thirdSysDetail: null,
busTypes: [],
originTypes: [],
list: [],
detailList: [],
loading: false,
actDateRange: [],
emergencyMap: {
1: "正常",
2: "较急",
3: "特急",
},
detailquery:
{
orderIdFk: null,
total: 0,
page: 1,
limit: 10,
},
invList: {},
deptList: {},
newSpDistributionVisible: false,
newDistributionFormPlanVisible: false,
approvalFlowDetailVisible: false,
pickerOptions: {
shortcuts: [
{
text: "最近一周",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近一个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近三个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
picker.$emit("pick", [start, end]);
},
},
],
},
};
},
methods: {
showApprovalFlowDetail(row) {
this.idQuery.approvalFlowId = row.approvalFlowId
this.approvalFlowDetailVisible = true;
},
invCodeFormat(row) {
let obj = ''
this.invList.forEach((item) => {
//listreturn
//name
if (row.invCode == item.code) {
obj = item.name
}
})
return obj
},
statusFormat(row) {
let obj = ''
this.statusList.forEach((item) => {
//listreturn
//name
if (row.status == item.code) {
obj = item.name
}
})
return obj
},
typeFormat(row) {
let obj = ''
this.typeList.forEach((item) => {
//listreturn
//name
if (row.type == item.code) {
obj = item.name
}
})
return obj
},
payTypeFormat(row) {
let obj = ''
this.payTypeList.forEach((item) => {
//listreturn
//name
if (row.payType == item.code) {
obj = item.name
}
})
return obj
},
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
billNo: "",
thirdSysFk: "",
billFlag: null,
billAction: null,
startDate: null,
endDate: null,
page: 1,
limit: 10,
corpName: null,
type: 1,
status: 11,
editStatus: 1,
deptCode: this.invCodebe,
invCode: null
};
this.actDateRange = [];
this.getInvList()
this.getList();
},
handleClose() {
this.approvalFlowDetailVisible = false;
if (this.formName == 'add') {
this.isChang = !this.isChang
} else {
this.newSpDistributionVisible = false
}
this.getList();
},
getId(id) {
if (this.formName == 'add' && id != null) {
var data = {
id: id
}
this.pId = id;
//
delContractDetailAll(data).then((response) => {
if (response.code == 20000) {
this.newSpDistributionVisible = false
}
});
} else {
this.newSpDistributionVisible = false
}
},
onSubmitFind() {
this.filterQuery.page = 1;
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
handleSortChange(column, prop, order) {
if (column.order === 'descending') {
this.filterQuery.sort = 'desc'
} else {
this.filterQuery.sort = 'asc'
}
this.filterQuery.orderBy = column.prop;
this.getList();
},
getList() {
if (this.actDateRange != null) {
this.filterQuery.startDate = this.actDateRange[0];
this.filterQuery.endDate = this.actDateRange[1];
} else {
this.filterQuery.startDate = null;
this.filterQuery.endDate = null;
}
if (this.filterQuery.status == null) {
this.$message.warning("单据状态不可为空!");
return;
}
this.loading = true;
listPlan(this.filterQuery).then((response) => {
if (response.code == 20000) {
this.list = response.data.list || [];
this.total = response.data.total || 0;
this.detailList = []
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleDetail(row) {
if (row.id == null) {
this.row = this.list[0]
this.detailquery.orderIdFk=this.row.id
}else {
this.detailquery.orderIdFk=row.id
}
this.loading = true;
listApplyDetail(this.detailquery) //
.then((response) => {
this.detailList = response.data.list || [];
this.detailquery.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.detailList = [];
this.total = 0;
});
},
submitOrder(row) {
this.$confirm("是否确定提交审核?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.loading = true;
let tQuery = {
editStatus: 2,
purPlanEntity: row,
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功!");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
})
.catch(() => {
});
},
deleteDialog(row) {
this.$confirm("此操作将永久删除该单据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
delContractDetailAll({id: row.id})
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
});
},
handleCurrentChange(val) {
this.filterQuery.page = val.page;
this.getList();
},
handleCurrentChangeDetail(val) {
this.detailquery.page = val.page;
this.handleDetail(this.row)
},
closeDialog() {
this.approvalFlowDetailVisible = false;
this.newSpDistributionVisible = false;
this.getList();
this.detailList = [];
},
closeDialogSp() {
this.newDistributionFormPlanVisible = false;
this.getList();
},
getInvList() {
let query = {};
this.invList = [];
findInvByUser(query)
.then((response) => {
this.invList = response.data || [];
})
.catch(() => {
});
},
newDistributionForm(index, row) {
this.idQuery.id = '';
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.idQuery.id = row.id;
this.idQuery.formData = row;
this.formName = "update";
} else
this.formName = "add";
this.newSpDistributionVisible = true;
},
newDistributionFormPlan(){
this.formName = "selectPlan";
this.newDistributionFormPlanVisible = true;
}
}
,
components: {
purContractEdit,purContractSelectPlan,approvalFlowDetail
}
,
filters: {
statusFilterType(status) {
const statusMap = {
1: "info",
2: "warning",
3: "success",
4: "danger"
};
return statusMap[status];
}
,
}
,
mounted() {
}
,
created() {
this.getList();
this.getInvList();
}
,
}
;
</script>
<style scoped>
.itemTag {
float: left;
text-align: left;
margin-top: 10px;
width: 25%;
}
.text {
font-size: 13px;
font-family: "Microsoft YaHei";
}
.el-row {
display: flex;
flex-wrap: wrap;
}
.el-col {
border-radius: 4px;
flex-wrap: wrap;
}
</style>

@ -0,0 +1,437 @@
<template>
<div>
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end" v-if="editType == 1">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native="saveOrder('3')" :loading="loading">审核通过</el-button>
<el-button type="primary" @click.native="saveOrder('4')" :loading="loading">拒绝申请</el-button>
</el-button-group>
</el-row>
<el-card style="margin-top: -5px;">
<el-row>
<el-col :span="11">
<el-form-item label="采购单号:" prop="billNo">
<el-input v-model="formData.billNo" style="width: 90%" auto-complete="off" :disabled="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="创建时间:" prop="createTime">
<el-date-picker
:disabled="true"
v-model="formData.createTime"
type="datetime"
placeholder="选择日期"
style="width: 90%"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row style="margin-top: -10px">
<el-col :span="11">
<el-form-item label="紧急程度:" prop="emergency">
<el-select v-model="formData.emergency" :disabled="true" placeholder="请选择紧急程度" style="width: 90%"
clearable>
<el-option label="正常" :value=1></el-option>
<el-option label="较急" :value=2></el-option>
<el-option label="特急" :value=3></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="到货截止:" prop="arrivalTime">
<el-date-picker
:disabled="true"
v-model="formData.arrivalTime"
type="datetime"
placeholder="选择日期"
style="width: 90%"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="采购仓库:" prop="locStorageCode">
<el-select v-model="formData.invName" placeholder="采购仓库信息" style="width: 90%"
:disabled="true" clearable>
<el-option
v-for="item in subInvList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="审核说明:" prop="billNo">
<el-input v-model="formData.auditRemark" style="width: 90%" auto-complete="off" type="textarea"
autosize></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="采购说明:" prop="billNo">
<el-input v-model="formData.remark" style="width: 90%" :disabled="true" auto-complete="off"
type="textarea" autosize></el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="11">-->
<!-- <el-form-item>-->
<!-- <el-checkbox v-model="formData.autoPurchase"></el-checkbox>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
<el-row v-show="formData.autoPurchase">
<el-col :span="11">
<el-form-item label="入库仓库:" prop="locStorageCode">
<el-select v-model="formData.targetSubInv" placeholder="入库仓库信息" style="width: 90%"
@change="targetInvChange" clearable>
<el-option
v-for="item in tarSubList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="入库单据类型:" class="query-form-item" prop="targetBillAction">
<el-select v-model="formData.targetBillAction" placeholder="请选择单据类型" style="width: 90%">
<el-option
v-for="item in busTypes"
:key="item.name"
:label="item.name"
:value="item.action">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-card>
<el-card>
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border
highlight-current-row max-height="300" height="300" ref="multipleTable">
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="100"></el-table-column>
<el-table-column label="采购数量" prop="count"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
<el-table-column label="供应商" prop="supName"></el-table-column>
</el-table>
</el-card>
</el-form>
<el-dialog
title="产品录入"
:visible.sync="selectProductVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="80%"
v-if="selectProductVisible"
:append-to-body='true'
>
<selectProduct
:closeDialog="closeDialogC2"
:data="thisData"
:purType="1"
></selectProduct>
</el-dialog>
</div>
</template>
<script>
import draggable from "vuedraggable";
import {auditOrder, delApplyDetail, listApplyDetail} from "@/api/purchase/purContract";
// import selectProduct from "@/views/components/selectProduct.vue";
export default {
name: "idQuery",
props: {
closeDialog: {
type: Function,
required: true,
},
idQuery: {
type: Object,
required: true,
},
editType: {
type: Object,
required: true,
},
},
data() {
return {
code: "",
query: {
orderIdFk: "",
page: 1,
limit: 10,
},
formData: {
id: null,
billNo: null,
createTime: "",
remark: "",
deptCode: null,
locStorageCode: null,
invWarehouseCode: null,
auditRemark: null,
autoPurchase: false,
targetInv: 1000,
targetSubInv: null,
targetBillAction: null,
},
formRules: {},
codeArray: [],
total: 0,
loading: false,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
statusMap: {
1: "草稿",
2: "未审核",
3: "已审核",
},
typeMap: {
1: "预入库",
2: "普通采购",
},
orderEditor: true,
sOptions: [],
sValue: [],
sList: [],
sLoading: false,
busTypes: [],
currentRow: {},
selectedIndex: "",
selectProductVisible: false,
thisData: {},
subInvList: [],
tarSubList: [],
invQueryData: {},
};
},
components: {
draggable, selectProduct
},
methods: {
saveOrder(status) {
let tip = "";
if (status == "3") {
tip = "是否确定通过该采购计划?";
} else {
tip = "是否确定拒绝该采购计划?";
}
this.$confirm(tip, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitFunction(status);
}).catch(() => {
this.loading = false;
});
},
submitFunction(status) {
let tMessage = status === '1' ? '保存' : '提交';
this.loading = true;
let tQuery = {
autoPurchase: this.formData.autoPurchase,
targetSubInv: this.formData.targetSubInv,
targetDeptCode: this.formData.targetDeptCode,
targetBillAction: this.formData.targetBillAction,
editStatus: status,
purPlanEntity: this.formData,
subErpOrders: this.codeArray,
}
auditOrder(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
},
selectProductFunction() {
this.selectProductVisible = true;
},
closeDialogC2(rData) {
this.selectProductVisible = false;
this.thisData = {};
if (this.$isNotBlank(rData)) {
this.codeArray = [];
rData.forEach((obj, index) => {
this.codeArray.unshift(obj);
});
this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
this.currentRow = this.codeArray[0];
this.selectedIndex = 0;
}
},
rowChange(val) {
this.currentRow = val;
this.selectedIndex = val.index;
},
tableCountChange(row) {
if (this.$isNotBlank(row)) {
// row.count = row.reCount;
}
},
tableRowClassName({row, rowIndex}) {
row.index = rowIndex;
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$refs["dataForm"].resetFields();
this.getList();
}
},
deleteCodeArray(index, row) {
this.$confirm("此操作将永久删除该数据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.$refs.multipleTable.setCurrentRow();
this.currentRow = {};
this.selectedIndex = "";
if (this.orderEditor) {
this.detailLoading = true;
if (this.$isNotBlank(row.id)) {
delApplyDetail(row.id)
.then(response => {
this.detailLoading = false;
if (response.code === 20000) {
this.$message.success(response.data);
// this.getStockOrderDetailList();
this.codeArray.splice(index, 1);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.detailLoading = false;
})
} else {
this.$message.success('删除成功');
this.codeArray.splice(index, 1);
}
} else {
this.$message.success('删除成功');
this.codeArray.splice(index, 1);
}
}).catch(() => {
});
},
getStockOrderDetailList() {
this.loading = true;
listApplyDetail(this.query) //
.then((response) => {
console.log(response)
this.codeArray = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
if (this.$isNotBlank(this.idQuery.id)) {
this.query.limit = 100;
this.query.orderIdFk = this.idQuery.id;
this.formData = this.idQuery.formData;
this.formData.targetInv = 1000;
this.orderEditor = true;
this.sValue = this.formData.corpName;
this.getStockOrderDetailList();
} else {
this.formData = {
id: null,
billNo: null,
createTime: "",
remark: "",
deptCode: null,
locStorageCode: null,
invWarehouseCode: null,
auditRemark: null,
autoPurchase: false,
targetInv: 1000,
targetSubInv: null,
targetBillAction: null,
};
this.orderEditor = false;
}
this.findTargetSubInvs();
this.codeArray = [];
},
};
</script>
<style scoped>
.ao-text {
width: 100%;
font-size: 13px;
font-family: "Microsoft YaHei";
float: right;
text-align: right;
margin-top: 10px;
}
</style>

@ -0,0 +1,741 @@
<template>
<div>
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="120px">
<el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native="saveOrder('1')" :loading="loading">草稿保存</el-button>
<el-button type="primary" @click.native="saveOrder('2')" :loading="loading">提交单据</el-button>
</el-button-group>
</el-row>
<el-card style="margin-top: -5px;">
<el-row>
<el-col :span="11">
<el-form-item label="合同编号:" prop="code">
<el-input v-model="formData.code" auto-complete="off" :disabled="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="合同名称:" prop="name">
<el-input v-model="formData.name"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="合同仓库:" prop="invCode">
<el-select v-model="formData.invCode" placeholder="合同仓库信息" style="width: 100%"
clearable>
<el-option
v-for="item in invCodeList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="合同签订日期:" prop="contractDate">
<el-date-picker
v-model="formData.contractDate"
style="width: 100%"
type="datetime"
placeholder="选择日期"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
:disabled-date="disabledArrivalDate"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row >
<el-col :span="11">
<el-form-item label="合同类型:" prop="type">
<el-select v-model="formData.type" placeholder="合同类型" style="width: 100%"
clearable>
<el-option
v-for="item in typeList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item
prop="fromCorp"
label="供应商:"
>
<el-select
v-model="formData.fromCorp"
filterable
remote
:disabled="corpOrderIdDisabled"
clearable
reserve-keyword
placeholder="请选择供应商"
:remote-method="findMethod"
style="width: 100%"
>
<el-option
v-for="item in fromOptions"
:key="item.erpId"
:label="item.name"
:value="item.erpId"
>
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<!-- <el-col :span="11">-->
<!-- <el-form-item label="合同状态:" prop="status">-->
<!-- <el-select v-model="formData.status" placeholder="合同状态" style="width: 100%" disabled-->
<!-- clearable>-->
<!-- <el-option-->
<!-- v-for="item in statusList"-->
<!-- :key="item.name"-->
<!-- :label="item.name"-->
<!-- :value="item.code">-->
<!-- <span style="float: left">{{ item.name }}</span>-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="11">
<el-form-item label="开始时间:" prop="startDate" >
<el-date-picker
style="width: 100%"
v-model="formData.startDate"
type="datetime"
placeholder="选择日期"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
:disabled-date="disabledArrivalDate"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="截止时间:" prop="endDate">
<el-date-picker
style="width: 100%"
v-model="formData.endDate"
type="datetime"
placeholder="选择日期"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
:disabled-date="disabledArrivalDate"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="订单金额:" prop="amount">
<el-input-number
style="width: 60%"
:precision="2"
:step="1"
:min="0.00"
v-model="formData.amount" size="small" ></el-input-number>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="合同金额:" prop="payAmount">
<el-input-number
style="width: 60%"
:precision="2"
:step="1"
:min="0.00"
v-model="formData.payAmount" size="small" ></el-input-number>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="付款日期:" prop="payDate">
<el-date-picker
style="width: 100%"
v-model="formData.payDate"
type="datetime"
placeholder="选择日期"
:clearable="false"
value-format="yyyy-MM-dd HH:mm:ss"
:disabled-date="disabledArrivalDate"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="付款方式:" prop="payType">
<!-- <el-select v-model="formData.payType" placeholder="付款方式" style="width: 100%"-->
<!-- clearable>-->
<!-- <el-option-->
<!-- v-for="item in payTypeList"-->
<!-- :key="item.name"-->
<!-- :label="item.name"-->
<!-- :value="item.code">-->
<!-- <span style="float: left">{{ item.name }}</span>-->
<!-- </el-option>-->
<!-- </el-select>-->
<el-input v-model="formData.payType" style="width: 100%"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item label="备注:" prop="remark">
<el-input v-model="formData.remark" style="width: 100%"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-card>
<el-card>
<el-row type="flex" justify="end">
<el-button-group style="display: flex">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入</el-button>
<!-- <el-button type="primary" :loading="loading" @click.native.stop="selectApply()">选入申购单</el-button>-->
</el-button-group>
</el-button-group>
</el-row>
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" :row-class-name="tableRowClassName" border
highlight-current-row max-height="300" height="300" ref="multipleTable">
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="价格" prop="price" show-overflow-tooltip="true" width="100"></el-table-column>
<el-table-column width="100" label="数量">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.count"
placeholder="请输入数量" style="width: 80%"
type='number'
:disabled="scope.row.index !== selectedIndex"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</template>
</el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="生产厂家" prop="productCompany"></el-table-column>
<el-table-column label="供应商" prop="supName"></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true"
@click.native="rowChange(scope.row)">编辑
</el-button>
<el-button type="text" size="small" :disabled="scope.row.index !== selectedIndex" @click.stop="true"
@click.native="tableCountChange(scope.row)">保存
</el-button>
<el-button type="text" size="small" @click.stop="true"
@click.native="deleteCodeArray(scope.$index, scope.row)">删除
</el-button>
</template>
</el-table-column>
</el-table>
</el-card>
</el-form>
<el-dialog
title="产品录入"
:visible.sync="selectProductVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="85%"
v-if="selectProductVisible"
:append-to-body='true'
>
<purContractProducts
:closeDialog="closeDialogC2"
:purType="1"
:pId="pId"
:stockOrderLists="this.stockOrderLists"
></purContractProducts>
</el-dialog>
</div>
</template>
<script>
import draggable from "vuedraggable";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {
inserThrOrderWeb,
delApplyDetail,
listApplyDetail,
addContractId,
selectContractDetail,
updateDetail
} from "@/api/purchase/purContract";
import {parseTime} from "@/utils/coTools";
import purContractProducts from "@/views/purchase/purContract/purContractSelectProduct";
import {findInvByUser} from "@/api/system/invSubWarehouse";
export default {
name: "idQuery",
props: {
closeDialog: {
type: Function,
required: true,
},
idQuery: {
type: Object,
required: true,
},
isChang: {
type: Boolean,
required: true,
},
},
data() {
return {
code: "",
query: {
orderIdFk: "",
page: 1,
limit: 1000,
},
fromOptions: [],
typeList: [
{name: '战略', code: 1},
{name: '长期', code: 2},
{name: '短期', code: 3}
],
statusList: [
{name: '草稿', code: 1},
{name: '未审核', code: 2},
{name: '已审核', code: 3}
],
payTypeList: [
{name: '银行', code: 1},
{name: '微信', code: 2},
{name: '支付宝', code: 3}
],
formData: {
id: null,
code: null,
name: "",
fromCorp: '',
remark: "",
invCode: "",
contractDate: null,
status: null,
type: null,
startDate: null,
endDate: null,
amount: null,
payAmount: null,
payType: null,
payDate: null,
},
pId: null,
formRules: {},
codeArray: [],
stockOrderLists: [],
total: 0,
loading: false,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
statusMap: {
1: "草稿",
2: "未审核",
3: "已审核",
},
typeMap: {
1: "预入库",
2: "普通采购",
},
orderEditor: true,
sOptions: [],
sValue: [],
sList: [],
sLoading: false,
busTypes: [],
currentRow: {},
selectedIndex: "",
selectProductVisible: false,
thisData: {},
storageList: [],
invCodeList: [],
invQueryData: {},
selectApplyVisible: false
};
},
watch: {
isChang: function () {
this.$emit("cancelDialog", this.pId);
},
},
components: {
draggable,
purContractProducts,
// SelectApplyListDialog
},
methods: {
productListChange() {
this.getStockOrderDetailList()
},
//
findMethod(query) {
this.fromOptions = [];
let cQuery = {
key: query,
corpType: 2,
outType: null,
page: 1,
limit: 20,
};
getBasicUnitMaintains(cQuery)
.then((response) => {
this.loading = false;
this.fromOptions = response.data.list || [];
})
.catch(() => {
this.loading = false;
});
},
saveOrder(status) {
this.$refs["dataForm"].validate(valid => {
if (valid) {
if (this.codeArray.length < 1) {
this.$message.warning('未添加产品');
return;
}
if (status === '1') {
if (this.formData.status == 2 || this.formData.status == 3) {
return this.$message.error("当前单据状态不可以进行草稿保存!");
}
}
if (status === '2') {
if (this.formData.status == 2 || this.formData.status == 3) {
return this.$message.error("当前单据状态不可以进行提交审核!");
}
// // if (this.formData.billType == "" || this.formData.billType == null) {
// // return this.$message.error("");
// // }
// if (this.formData.invCode == "" || this.formData.invCode == null) {
// return this.$message.error("");
// }
// if (this.formData.emergency == "" || this.formData.emergency == null) {
// return this.$message.error("");
// }
// if (this.formData.arrivalTime == "" || this.formData.arrivalTime == null) {
// return this.$message.error("");
// }
// if (this.formData.arrivalTime < this.formData.createTime) {
// return this.$message.error("");
// }
// for (let i = 0; i < this.codeArray.length; i++) {
// if (this.$isBlank(this.codeArray[i].count) || this.codeArray[i].count == "0") {
// return this.$message.error('0');
// }
// }
}
if (status == "1") {
this.submitFunction(status);
} else {
let tip = "是否确定提交订单?";
this.$confirm(tip, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.submitFunction(status);
}).catch(() => {
this.loading = false;
});
}
}
}
)
;
},
disabledArrivalDate(time)
{
return time.getTime() < new Date(this.formData.createTime).getTime()
}
,
submitFunction(status)
{
let tMessage = status === '1' ? '保存' : '提交';
this.loading = true;
this.formData.id = this.pId;
let tQuery = {
editStatus: status,
purContractEntity: this.formData,
subErpOrders: this.codeArray,
type: 1,
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success(tMessage + "成功");
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
}
,
selectProductFunction()
{
this.selectProductVisible = true;
//idid
if (this.pId == null) {
addContractId().then(response => {
if (response.code === 20000) {
this.pId = response.data
}
}).catch(() => {
this.loading = false;
})
}
this.stockOrderLists = this.codeArray;
}
,
setDeptCode(obj)
{
this.formData.deptCode = this.invCodeList.find(item => item.code == obj).parentId;
}
,
closeDialogC2()
{
this.selectProductVisible = false;
this.selectApplyVisible = false;
this.query.orderIdFk = this.pId
selectContractDetail(this.query) //
.then((response) => {
console.log(response)
this.codeArray = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
}
,
rowChange(val)
{
this.currentRow = val;
this.selectedIndex = val.index;
}
,
tableCountChange(row)
{
if (this.$isNotBlank(row)) {
updateDetail(this.currentRow);
this.selectedIndex = null
}
}
,
tableRowClassName({row, rowIndex})
{
row.index = rowIndex;
}
,
//
resetForm()
{
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$refs["dataForm"].resetFields();
this.getList();
}
}
,
deleteCodeArray(index, row)
{
this.detailLoading = true;
this.$confirm("此操作将永久删除该数据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.$refs.multipleTable.setCurrentRow();
this.currentRow = {};
this.selectedIndex = "";
// console.log(this.orderEditor)
// if (!this.orderEditor) {
this.detailLoading = true;
if (this.$isNotBlank(row.id)) {
let delIds = [];
delIds.push(row.id)
delApplyDetail(delIds)
.then(response => {
this.detailLoading = false;
if (response.code === 20000) {
this.$message.success(response.data);
this.getStockOrderDetailList();
this.codeArray.splice(index, 1);
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.detailLoading = false;
})
} else {
this.$message.success('删除成功');
this.codeArray.splice(index, 1);
}
// } else {
// this.$message.success('');
// this.codeArray.splice(index, 1);
// }
}).catch(() => {
});
}
,
getStockOrderDetailList()
{
this.loading = true;
listApplyDetail(this.query) //
.then((response) => {
console.log(response)
this.codeArray = response.data.list || [];
this.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
}
,
findSubInvs()
{
this.invCodeList = [];
let query = {
filter: 3
};
findInvByUser(query)
.then((response) => {
this.invCodeList = response.data || [];
if (this.invCodeList != null && this.invCodeList.length == 1) {
this.formData.invCode = this.invCodeList[0].code;
this.formData.deptCode = this.invCodeList[0].parentId;
}
})
.catch(() => {
});
}
,
selectApply()
{
this.selectApplyVisible = true;
//idid
if (this.pId == null) {
addPlanId().then(response => {
if (response.code === 20000) {
this.pId = response.data
}
}).catch(() => {
this.loading = false;
})
}
}
,
},
filters: {
}
,
mounted()
{
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
}
,
created()
{
if (this.$isNotBlank(this.idQuery.id)) {
this.query.limit = 1000;
this.pId = this.idQuery.id;
this.query.orderIdFk = this.idQuery.id;
this.formData = this.idQuery.formData;
this.orderEditor = true;
this.sValue = this.formData.corpName;
this.getStockOrderDetailList();
} else {
var date = new Date();
this.formData = {
id: null,
billNo: null,
remark: "",
billType: "CGJH",
deptCode: null,
incCode: null,
createTime: parseTime(
date,
"{y}-{m}-{d} {h}:{i}:{s}"
),
};
this.orderEditor = false;
}
this.findSubInvs();
this.codeArray = [];
}
,
}
;
</script>
<style scoped>
.ao-text {
width: 100%;
font-size: 13px;
font-family: "Microsoft YaHei";
float: right;
text-align: right;
margin-top: 10px;
}
</style>

@ -0,0 +1,633 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="filterQuery" class="query-form" label-width="100px" v-if="showSearch">
<el-row>
<el-col :span="6">
<el-form-item label="合同编号">
<el-input v-model="filterQuery.code" style="width: 90%" placeholder="请输入合同编号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="合同名称">
<el-input v-model="filterQuery.name" style="width: 90%" clearable placeholder="请输入合同名称">
</el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="10">-->
<!-- <el-form-item label="合同状态:" prop="emergency">-->
<!-- <el-select v-model="filterQuery.status" placeholder="请选单据状态" style="width: 90%" @change="getList" clearable>-->
<!-- <el-option label="草稿" :value='0'></el-option>-->
<!-- <el-option label="审核中" :value='1'></el-option>-->
<!-- <el-option label="已审核" :value='2'></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="12">
<el-form-item label="合同签订日期:">
<el-date-picker
:picker-options="pickerOptions"
v-model="actDateRange"
type="daterange"
format="yyyy 年 MM 月 dd 日"
style="width: 90%"
value-format="yyyy-MM-dd"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmitFind"></el-button>
<!-- <el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增合同 </el-button>-->
<!-- <el-button type="primary" icon="el-icon-plus" @click="newDistributionFormPlan()" :loading="loading">导入计划-->
<!-- </el-button>-->
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
@current-change="handleDetail" :default-sort="defaultSort" @sort-change="handleSortChange">
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="合同编号" prop="code"></el-table-column>
<el-table-column label="合同名称" prop="name"></el-table-column>
<el-table-column label="往来单位/供应商" prop="fromCorp"></el-table-column>
<el-table-column label="合同仓库" prop="invCode" :formatter="invCodeFormat"></el-table-column>
<!-- <el-table-column label="合同状态" prop="status" :formatter="statusFormat"></el-table-column>-->
<el-table-column label="合同状态" prop="status" width="230">
<template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusFilterType">
{{ statusMap[scope.row.status] }}
</el-tag>
<el-tag v-if="scope.row.nextNodeName != null && scope.row.nextNodeName != '' && scope.row.status == 2 " class="tag-right-align">
<b v-if="scope.row.nextApprovalNodeType == 1"></b>
<b v-if="scope.row.nextApprovalNodeType == 2"></b>
{{ scope.row.nextNodeName }}审核
</el-tag>
</template>
</el-table-column>
<el-table-column label="合同类型" prop="type" :formatter="typeFormat"></el-table-column>
<!-- <el-table-column label="付款方式" prop="payType" :formatter="payTypeFormat"></el-table-column>-->
<el-table-column label="付款方式" prop="payType"></el-table-column>
<el-table-column label="合同签订日期" prop="contractDate"
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)" v-show="(scope.row.status=='' || scope.row.status == 1) ">
</el-button>
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" v-show="(scope.row.status=='' || scope.row.status==1) " >删除</el-button>
<el-button type="text" size="small" @click.native.stop="showApprovalFlowDetail(scope.row)"
v-show=" scope.row.status != 1 && scope.row.status !='' ">审批详情
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@pagination="handleCurrentChange"
></pagination>
</el-card>
<el-card class="el-card">
<el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="产品名称" prop="productName"></el-table-column>
<el-table-column label="生产厂家" prop="productCompany"></el-table-column>
<el-table-column label="注册证/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="规格型号" prop="ggxh"></el-table-column>
<el-table-column label="包装级别" prop="packRatio"></el-table-column>
<el-table-column label="供应商名称" prop="supName"></el-table-column>
<el-table-column label="数量" prop="count"></el-table-column>
</el-table>
<pagination
v-show="detailquery.total>0"
:total="detailquery.total"
:page.sync="detailquery.page"
:limit.sync="detailquery.limit"
@pagination="handleCurrentChangeDetail"
></pagination>
</el-card>
<el-dialog
:title="formMap[formName]"
:visible.sync="newSpDistributionVisible"
width="80%"
v-if="newSpDistributionVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<purContractEdit
:isChang="isChang"
:closeDialog="closeDialog"
v-on:cancelDialog="getId"
:idQuery="idQuery"
></purContractEdit>
</el-dialog>
<el-dialog
:title="formMap[formName]"
:visible.sync="newDistributionFormPlanVisible"
width="80%"
v-if="newDistributionFormPlanVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
>
<purContractSelectPlan
:invList = "this.invList"
:closeDialog="closeDialogSp"
></purContractSelectPlan>
</el-dialog>
<el-dialog
title="审批详情"
:visible.sync="approvalFlowDetailVisible"
width="65%"
v-if="approvalFlowDetailVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<approvalFlowDetail
:isChang="true"
:closeDialog="closeDialog"
:idQuery="idQuery"
></approvalFlowDetail>
</el-dialog>
</div>
</template>
<script>
import approvalFlowDetail from "@/components/ApprovalFlow";
import purContractEdit from "@/views/purchase/purContract/purContractEditDialog";
import purContractSelectPlan from "@/views/purchase/purContract/purContractSelectPlan";
import {delApply, inserThrOrderWeb, listPlan, listApplyDetail, delContractDetailAll} from "@/api/purchase/purContract";
// import {filterAllByUser} from "@/api/basic/invWarehouse";
export default {
name: "purContract",
data() {
return {
defaultSort: {prop: 'createTime', order: 'desc'},
showSearch: true,
pId: null,
isChang: false,
filterQuery: {
billAction: null,
billNo: "",
originType: null,
thirdSysFk: "",
page: 1,
limit: 10,
corpName: null,
type: 1,
status: 12,
editStatus: 1,
emergency: '',
deptCode: '',
invCode: null
},
invCodebe: null,
formName: null,
formMap: {
add: "新增合同信息",
update: "编辑合同信息",
selectPlan: "选择采购计划",
},
statusMap: {
1: "草稿",
2: "审核中",
3: "通过",
4: "拒绝"
},
typeList:[
{name: '战略' ,code: 1 },
{name: '长期' ,code: 2 },
{name: '短期' ,code: 3 }
],
statusList:[
{name: '草稿' ,code: 1 },
{name: '未审核' ,code: 2 },
{name: '已审核' ,code: 3 }
],
payTypeList:[
{name: '银行' ,code: 1 },
{name: '微信' ,code: 2 },
{name: '支付宝' ,code: 3}
],
idQuery: {},
row: {},
total: 0,
thirdSys: [],
thirdSysDetail: null,
busTypes: [],
originTypes: [],
list: [],
detailList: [],
loading: false,
actDateRange: [],
emergencyMap: {
1: "正常",
2: "较急",
3: "特急",
},
detailquery:
{
orderIdFk: null,
total: 0,
page: 1,
limit: 10,
},
invList: {},
deptList: {},
newSpDistributionVisible: false,
newDistributionFormPlanVisible: false,
approvalFlowDetailVisible: false,
pickerOptions: {
shortcuts: [
{
text: "最近一周",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近一个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近三个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
picker.$emit("pick", [start, end]);
},
},
],
},
};
},
methods: {
showApprovalFlowDetail(row) {
this.idQuery.approvalFlowId = row.approvalFlowId
this.approvalFlowDetailVisible = true;
},
invCodeFormat(row) {
let obj = ''
this.invList.forEach((item) => {
//listreturn
//name
if (row.invCode == item.code) {
obj = item.name
}
})
return obj
},
statusFormat(row) {
let obj = ''
this.statusList.forEach((item) => {
//listreturn
//name
if (row.status == item.code) {
obj = item.name
}
})
return obj
},
typeFormat(row) {
let obj = ''
this.typeList.forEach((item) => {
//listreturn
//name
if (row.type == item.code) {
obj = item.name
}
})
return obj
},
payTypeFormat(row) {
let obj = ''
this.payTypeList.forEach((item) => {
//listreturn
//name
if (row.payType == item.code) {
obj = item.name
}
})
return obj
},
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
billNo: "",
thirdSysFk: "",
billFlag: null,
billAction: null,
startDate: null,
endDate: null,
page: 1,
limit: 10,
corpName: null,
type: 1,
status: 12,
editStatus: 1,
deptCode: this.invCodebe,
invCode: null
};
this.actDateRange = [];
this.getInvList()
this.getList();
},
handleClose() {
this.approvalFlowDetailVisible = false;
if (this.formName == 'add') {
this.isChang = !this.isChang
} else {
this.newSpDistributionVisible = false
}
this.getList();
},
getId(id) {
if (this.formName == 'add' && id != null) {
var data = {
id: id
}
this.pId = id;
//
delContractDetailAll(data).then((response) => {
if (response.code == 20000) {
this.newSpDistributionVisible = false
}
});
} else {
this.newSpDistributionVisible = false
}
},
onSubmitFind() {
this.filterQuery.page = 1;
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
handleSortChange(column, prop, order) {
if (column.order === 'descending') {
this.filterQuery.sort = 'desc'
} else {
this.filterQuery.sort = 'asc'
}
this.filterQuery.orderBy = column.prop;
this.getList();
},
getList() {
if (this.actDateRange != null) {
this.filterQuery.startDate = this.actDateRange[0];
this.filterQuery.endDate = this.actDateRange[1];
} else {
this.filterQuery.startDate = null;
this.filterQuery.endDate = null;
}
if (this.filterQuery.status == null) {
this.$message.warning("单据状态不可为空!");
return;
}
this.loading = true;
listPlan(this.filterQuery).then((response) => {
if (response.code == 20000) {
this.list = response.data.list || [];
this.total = response.data.total || 0;
this.detailList = []
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleDetail(row) {
if (row.id == null) {
this.row = this.list[0]
this.detailquery.orderIdFk=this.row.id
}else {
this.detailquery.orderIdFk=row.id
}
this.loading = true;
listApplyDetail(this.detailquery) //
.then((response) => {
this.detailList = response.data.list || [];
this.detailquery.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.detailList = [];
this.total = 0;
});
},
submitOrder(row) {
this.$confirm("是否确定提交审核?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.loading = true;
let tQuery = {
editStatus: 2,
purPlanEntity: row,
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功!");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
})
.catch(() => {
});
},
deleteDialog(row) {
this.$confirm("此操作将永久删除该单据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
delContractDetailAll({id: row.id})
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
});
},
handleCurrentChange(val) {
this.filterQuery.page = val.page;
this.getList();
},
handleCurrentChangeDetail(val) {
this.detailquery.page = val.page;
this.handleDetail(this.row)
},
closeDialog() {
this.approvalFlowDetailVisible = false;
this.newSpDistributionVisible = false;
this.getList();
this.detailList = [];
},
closeDialogSp() {
this.newDistributionFormPlanVisible = false;
this.getList();
},
getInvList() {
let query = {};
this.invList = [];
// filterAllByUser(query)
// .then((response) => {
// this.invList = response.data || [];
// })
// .catch(() => {
// });
},
newDistributionForm(index, row) {
this.idQuery.id = '';
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.idQuery.id = row.id;
this.idQuery.formData = row;
this.formName = "update";
} else
this.formName = "add";
this.newSpDistributionVisible = true;
},
newDistributionFormPlan(){
this.formName = "selectPlan";
this.newDistributionFormPlanVisible = true;
}
}
,
components: {
purContractEdit,purContractSelectPlan,approvalFlowDetail
}
,
filters: {
statusFilterType(status) {
const statusMap = {
1: "info",
2: "warning",
3: "success",
4: "danger"
};
return statusMap[status];
}
,
}
,
mounted() {
}
,
created() {
this.getList();
this.getInvList();
}
,
}
;
</script>
<style scoped>
.itemTag {
float: left;
text-align: left;
margin-top: 10px;
width: 25%;
}
.text {
font-size: 13px;
font-family: "Microsoft YaHei";
}
.el-row {
display: flex;
flex-wrap: wrap;
}
.el-col {
border-radius: 4px;
flex-wrap: wrap;
}
</style>

@ -0,0 +1,633 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="filterQuery" class="query-form" label-width="100px" v-if="showSearch">
<el-row>
<el-col :span="6">
<el-form-item label="合同编号">
<el-input v-model="filterQuery.code" style="width: 90%" placeholder="请输入合同编号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="合同名称">
<el-input v-model="filterQuery.name" style="width: 90%" clearable placeholder="请输入合同名称">
</el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="10">-->
<!-- <el-form-item label="合同状态:" prop="emergency">-->
<!-- <el-select v-model="filterQuery.status" placeholder="请选单据状态" style="width: 90%" @change="getList" clearable>-->
<!-- <el-option label="草稿" :value='0'></el-option>-->
<!-- <el-option label="审核中" :value='1'></el-option>-->
<!-- <el-option label="已审核" :value='2'></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="12">
<el-form-item label="合同签订日期:">
<el-date-picker
:picker-options="pickerOptions"
v-model="actDateRange"
type="daterange"
format="yyyy 年 MM 月 dd 日"
style="width: 90%"
value-format="yyyy-MM-dd"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
>
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmitFind"></el-button>
<!-- <el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增合同 </el-button>-->
<!-- <el-button type="primary" icon="el-icon-plus" @click="newDistributionFormPlan()" :loading="loading">导入计划-->
<!-- </el-button>-->
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
@current-change="handleDetail" :default-sort="defaultSort" @sort-change="handleSortChange">
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="合同编号" prop="code"></el-table-column>
<el-table-column label="合同名称" prop="name"></el-table-column>
<el-table-column label="往来单位/供应商" prop="fromCorp"></el-table-column>
<el-table-column label="合同仓库" prop="invCode" :formatter="invCodeFormat"></el-table-column>
<!-- <el-table-column label="合同状态" prop="status" :formatter="statusFormat"></el-table-column>-->
<el-table-column label="合同状态" prop="status" width="230">
<template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusFilterType">
{{ statusMap[scope.row.status] }}
</el-tag>
<el-tag v-if="scope.row.nextNodeName != null && scope.row.nextNodeName != '' && scope.row.status == 2 " class="tag-right-align">
<b v-if="scope.row.nextApprovalNodeType == 1"></b>
<b v-if="scope.row.nextApprovalNodeType == 2"></b>
{{ scope.row.nextNodeName }}审核
</el-tag>
</template>
</el-table-column>
<el-table-column label="合同类型" prop="type" :formatter="typeFormat"></el-table-column>
<!-- <el-table-column label="付款方式" prop="payType" :formatter="payTypeFormat"></el-table-column>-->
<el-table-column label="付款方式" prop="payType"></el-table-column>
<el-table-column label="合同签订日期" prop="contractDate"
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)" v-show="(scope.row.status=='' || scope.row.status == 1) ">
</el-button>
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" v-show="(scope.row.status=='' || scope.row.status==1) " >删除</el-button>
<el-button type="text" size="small" @click.native.stop="showApprovalFlowDetail(scope.row)"
v-show=" scope.row.status != 1 && scope.row.status !='' ">审批详情
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@pagination="handleCurrentChange"
></pagination>
</el-card>
<el-card class="el-card">
<el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="产品名称" prop="productName"></el-table-column>
<el-table-column label="生产厂家" prop="productCompany"></el-table-column>
<el-table-column label="注册证/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="规格型号" prop="ggxh"></el-table-column>
<el-table-column label="包装级别" prop="packRatio"></el-table-column>
<el-table-column label="供应商名称" prop="supName"></el-table-column>
<el-table-column label="数量" prop="count"></el-table-column>
</el-table>
<pagination
v-show="detailquery.total>0"
:total="detailquery.total"
:page.sync="detailquery.page"
:limit.sync="detailquery.limit"
@pagination="handleCurrentChangeDetail"
></pagination>
</el-card>
<el-dialog
:title="formMap[formName]"
:visible.sync="newSpDistributionVisible"
width="80%"
v-if="newSpDistributionVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<purContractEdit
:isChang="isChang"
:closeDialog="closeDialog"
v-on:cancelDialog="getId"
:idQuery="idQuery"
></purContractEdit>
</el-dialog>
<el-dialog
:title="formMap[formName]"
:visible.sync="newDistributionFormPlanVisible"
width="80%"
v-if="newDistributionFormPlanVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
>
<purContractSelectPlan
:invList = "this.invList"
:closeDialog="closeDialogSp"
></purContractSelectPlan>
</el-dialog>
<el-dialog
title="审批详情"
:visible.sync="approvalFlowDetailVisible"
width="65%"
v-if="approvalFlowDetailVisible"
@close='closeDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
:before-close="handleClose"
>
<approvalFlowDetail
:isChang="true"
:closeDialog="closeDialog"
:idQuery="idQuery"
></approvalFlowDetail>
</el-dialog>
</div>
</template>
<script>
import approvalFlowDetail from "@/components/ApprovalFlow";
import purContractEdit from "@/views/purchase/purContract/purContractEditDialog";
import purContractSelectPlan from "@/views/purchase/purContract/purContractSelectPlan";
import {delApply, inserThrOrderWeb, listPlan, listApplyDetail, delContractDetailAll} from "@/api/purchase/purContract";
// import {filterAllByUser} from "@/api/basic/invWarehouse";
export default {
name: "purContract",
data() {
return {
defaultSort: {prop: 'createTime', order: 'desc'},
showSearch: true,
pId: null,
isChang: false,
filterQuery: {
billAction: null,
billNo: "",
originType: null,
thirdSysFk: "",
page: 1,
limit: 10,
corpName: null,
type: 1,
status: 10,
editStatus: 1,
emergency: '',
deptCode: '',
invCode: null
},
invCodebe: null,
formName: null,
formMap: {
add: "新增合同信息",
update: "编辑合同信息",
selectPlan: "选择采购计划",
},
statusMap: {
1: "草稿",
2: "审核中",
3: "通过",
4: "拒绝"
},
typeList:[
{name: '战略' ,code: 1 },
{name: '长期' ,code: 2 },
{name: '短期' ,code: 3 }
],
statusList:[
{name: '草稿' ,code: 1 },
{name: '未审核' ,code: 2 },
{name: '已审核' ,code: 3 }
],
payTypeList:[
{name: '银行' ,code: 1 },
{name: '微信' ,code: 2 },
{name: '支付宝' ,code: 3}
],
idQuery: {},
row: {},
total: 0,
thirdSys: [],
thirdSysDetail: null,
busTypes: [],
originTypes: [],
list: [],
detailList: [],
loading: false,
actDateRange: [],
emergencyMap: {
1: "正常",
2: "较急",
3: "特急",
},
detailquery:
{
orderIdFk: null,
total: 0,
page: 1,
limit: 10,
},
invList: {},
deptList: {},
newSpDistributionVisible: false,
newDistributionFormPlanVisible: false,
approvalFlowDetailVisible: false,
pickerOptions: {
shortcuts: [
{
text: "最近一周",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近一个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近三个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
picker.$emit("pick", [start, end]);
},
},
],
},
};
},
methods: {
showApprovalFlowDetail(row) {
this.idQuery.approvalFlowId = row.approvalFlowId
this.approvalFlowDetailVisible = true;
},
invCodeFormat(row) {
let obj = ''
this.invList.forEach((item) => {
//listreturn
//name
if (row.invCode == item.code) {
obj = item.name
}
})
return obj
},
statusFormat(row) {
let obj = ''
this.statusList.forEach((item) => {
//listreturn
//name
if (row.status == item.code) {
obj = item.name
}
})
return obj
},
typeFormat(row) {
let obj = ''
this.typeList.forEach((item) => {
//listreturn
//name
if (row.type == item.code) {
obj = item.name
}
})
return obj
},
payTypeFormat(row) {
let obj = ''
this.payTypeList.forEach((item) => {
//listreturn
//name
if (row.payType == item.code) {
obj = item.name
}
})
return obj
},
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
billNo: "",
thirdSysFk: "",
billFlag: null,
billAction: null,
startDate: null,
endDate: null,
page: 1,
limit: 10,
corpName: null,
type: 1,
status: 10,
editStatus: 1,
deptCode: this.invCodebe,
invCode: null
};
this.actDateRange = [];
this.getInvList()
this.getList();
},
handleClose() {
this.approvalFlowDetailVisible = false;
if (this.formName == 'add') {
this.isChang = !this.isChang
} else {
this.newSpDistributionVisible = false
}
this.getList();
},
getId(id) {
if (this.formName == 'add' && id != null) {
var data = {
id: id
}
this.pId = id;
//
delContractDetailAll(data).then((response) => {
if (response.code == 20000) {
this.newSpDistributionVisible = false
}
});
} else {
this.newSpDistributionVisible = false
}
},
onSubmitFind() {
this.filterQuery.page = 1;
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
handleSortChange(column, prop, order) {
if (column.order === 'descending') {
this.filterQuery.sort = 'desc'
} else {
this.filterQuery.sort = 'asc'
}
this.filterQuery.orderBy = column.prop;
this.getList();
},
getList() {
if (this.actDateRange != null) {
this.filterQuery.startDate = this.actDateRange[0];
this.filterQuery.endDate = this.actDateRange[1];
} else {
this.filterQuery.startDate = null;
this.filterQuery.endDate = null;
}
if (this.filterQuery.status == null) {
this.$message.warning("单据状态不可为空!");
return;
}
this.loading = true;
listPlan(this.filterQuery).then((response) => {
if (response.code == 20000) {
this.list = response.data.list || [];
this.total = response.data.total || 0;
this.detailList = []
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleDetail(row) {
if (row.id == null) {
this.row = this.list[0]
this.detailquery.orderIdFk=this.row.id
}else {
this.detailquery.orderIdFk=row.id
}
this.loading = true;
listApplyDetail(this.detailquery) //
.then((response) => {
this.detailList = response.data.list || [];
this.detailquery.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.detailList = [];
this.total = 0;
});
},
submitOrder(row) {
this.$confirm("是否确定提交审核?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.loading = true;
let tQuery = {
editStatus: 2,
purPlanEntity: row,
}
inserThrOrderWeb(tQuery)
.then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功!");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
})
})
.catch(() => {
});
},
deleteDialog(row) {
this.$confirm("此操作将永久删除该单据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
delContractDetailAll({id: row.id})
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
this.getList();
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
});
},
handleCurrentChange(val) {
this.filterQuery.page = val.page;
this.getList();
},
handleCurrentChangeDetail(val) {
this.detailquery.page = val.page;
this.handleDetail(this.row)
},
closeDialog() {
this.approvalFlowDetailVisible = false;
this.newSpDistributionVisible = false;
this.getList();
this.detailList = [];
},
closeDialogSp() {
this.newDistributionFormPlanVisible = false;
this.getList();
},
getInvList() {
let query = {};
this.invList = [];
// filterAllByUser(query)
// .then((response) => {
// this.invList = response.data || [];
// })
// .catch(() => {
// });
},
newDistributionForm(index, row) {
this.idQuery.id = '';
if (this.$isNotBlank(row) && this.$isNotBlank(row.id)) {
this.idQuery.id = row.id;
this.idQuery.formData = row;
this.formName = "update";
} else
this.formName = "add";
this.newSpDistributionVisible = true;
},
newDistributionFormPlan(){
this.formName = "selectPlan";
this.newDistributionFormPlanVisible = true;
}
}
,
components: {
purContractEdit,purContractSelectPlan,approvalFlowDetail
}
,
filters: {
statusFilterType(status) {
const statusMap = {
1: "info",
2: "warning",
3: "success",
4: "danger"
};
return statusMap[status];
}
,
}
,
mounted() {
}
,
created() {
this.getList();
this.getInvList();
}
,
}
;
</script>
<style scoped>
.itemTag {
float: left;
text-align: left;
margin-top: 10px;
width: 25%;
}
.text {
font-size: 13px;
font-family: "Microsoft YaHei";
}
.el-row {
display: flex;
flex-wrap: wrap;
}
.el-col {
border-radius: 4px;
flex-wrap: wrap;
}
</style>

@ -0,0 +1,269 @@
<template>
<div>
<el-card>
<el-form :model="filterQuery" class="query-form" label-width="100px" >
<el-row>
<el-col :span="11">
<el-form-item label="采购单号">
<el-input v-model="filterQuery.billNo" style="width: 90%" placeholder="请输入单据号" clearable @change="getList"></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="采购仓库">
<el-select v-model="filterQuery.invCode" style="width: 90%" clearable placeholder="请选择所属仓库" @change="getList">
<el-option
v-for="item in invList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="10">
<el-form-item label="单据状态:" prop="emergency">
<el-select v-model="filterQuery.status" placeholder="请选单据状态" style="width: 90%" @change="getList"
clearable>
<el-option label="草稿" :value='1'></el-option>
<el-option label="审核中" :value='2'></el-option>
<el-option label="已审核" :value='3'></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="13">
<el-form-item label="是否已导入:">
<el-select v-model="filterQuery.importStatus" placeholder="请选导入状态" style="width: 90%" @change="getList"
clearable>
<el-option label="未导入" :value='0'></el-option>
<el-option label="已导入" :value='1'></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
@current-change="handleDetail" :default-sort="defaultSort">
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="采购单号" prop="billNo"></el-table-column>
<el-table-column label="采购仓库" prop="invCode" :formatter="invCodeFormat">
</el-table-column>
<el-table-column label="到货截止" prop="arrivalTime"></el-table-column>
<!-- <el-table-column label="采购总金额" prop="amount"></el-table-column>-->
<el-table-column label="单据状态" prop="flowStatus">
<template slot-scope="scope">
<el-tag :type="(scope.row.flowStatus==null? scope.row.status : scope.row.flowStatus) | statusFilterType">
{{ statusMap[(scope.row.flowStatus==null? scope.row.status : scope.row.flowStatus)] }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="是否已导入" prop="importStatus">
<template slot-scope="scope">
<el-tag :type="(scope.row.importStatus) | statusFilterType" >
{{scope.row.importStatus == 1 ? "已导入":"未导入" }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="单据日期" prop="billDate"
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native="importPlan(scope.$index, scope.row)">导入
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="filterQuery.total>0"
:total="filterQuery.total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@pagination="productListChange"/>
</el-card>
<br>
<el-card class="el-card">
<el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="物资名称" prop="productName" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="计量单位" prop="measname" show-overflow-tooltip="true" width="100"></el-table-column>
<el-table-column label="价格" prop="price" show-overflow-tooltip="true" width="100"></el-table-column>
<el-table-column label="申购数量" prop="count"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="生产厂家" prop="productCompany"></el-table-column>
<el-table-column label="供应商" prop="supName"></el-table-column>
<!-- <el-table-column label="备注" prop="remark"></el-table-column>-->
</el-table>
<pagination
v-show="detailquery.total>0"
:total="detailquery.total"
:page.sync="detailquery.page"
:limit.sync="detailquery.limit"
@pagination="handleCurrentChangeDetail"
></pagination>
</el-card>
</div>
</template>
<script>
import { listPlan, listApplyDetail} from "@/api/purchase/purPlan";
import {importPlan} from "@/api/purchase/purContract";
export default {
name: "purContractSelectPlan",
props: {
closeDialog: {
type: Function,
required: true,
},
invList: {
type: Array,
required: true,
},
},
data() {
return {
statusMap: {
1: "草稿",
2: "审核中",
3: "通过",
4: "拒绝"
},
list: [],
detailquery:
{
orderIdFk: null,
total: 0,
page: 1,
limit: 10,
},
detailList: [],
row: {},
filterQuery:{
billAction: null,
billNo: "",
originType: null,
thirdSysFk: "",
corpName: null,
type: 1,
status: 3,
editStatus: 1,
emergency: '',
deptCode: '',
invCode: null,
importStatus: 0,
total:0,
page: 1,
limit: 10,
}
}
},
methods: {
handleCurrentChangeDetail(val) {
this.detailquery.page = val.page;
this.handleDetail(this.row)
},
handleDetail(row) {
if (row.id == null) {
this.row = this.list[0]
this.detailquery.orderIdFk=this.row.id
}else {
this.detailquery.orderIdFk=row.id
}
this.loading = true;
listApplyDetail(this.detailquery) //
.then((response) => {
this.detailList = response.data.list || [];
this.detailquery.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.detailList = [];
this.total = 0;
});
},
productListChange() {
this.getList()
},
getList() {
this.loading = true;
listPlan(this.filterQuery).then((response) => {
if (response.code == 20000) {
this.list = response.data.list || [];
this.filterQuery.total = response.data.total || 0;
this.detailList = []
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
invCodeFormat(row) {
let obj = ''
this.invList.forEach((item) => {
//listreturn
//name
if (row.invCode == item.code) {
obj = item.name
}
})
return obj
},
importPlan(index, row) {
this.loading = true;
let tQuery = {
id: row.id
}
importPlan(tQuery).then((response) => {
if (response.code == 20000) {
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
});
},
},
filters: {
statusFilterType(status) {
const statusMap = {
1: "info",
2: "warning",
3: "success",
4: "danger"
};
return statusMap[status];
}
,
},
created() {
this.getList();
}
}
</script>
<style scoped>
</style>

@ -0,0 +1,402 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="listQuery" label-width="120px" v-show="showSearch">
<el-row>
<el-col :span="24">
<el-form-item label="UDI码:" class="query-form-item">
<el-input v-model="listQuery.udiCode" style="width: 98%" placeholder="请扫描或输入UDI码" clearable="true"
@keyup.enter.native="keyup_submit($event)"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<el-form-item label="产品标识:" class="query-form-item">
<el-input clearable v-model="listQuery.nameCode" style="width: 90%" placeholder="请输入最小销售产品标识"/>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="物品编码:" class="query-form-item">
<el-input v-model="listQuery.unionCode" style="width: 90%" placeholder="请输入DI/医保编码/商品条码"
clearable="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="产品通用名:" class="query-form-item">
<el-input v-model="listQuery.cpmctymc" style="width: 90%" placeholder="请输入产品通用名"
clearable="true"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<el-form-item label="规格型号:" class="query-form-item">
<el-input v-model="listQuery.ggxh" style="width: 90%" placeholder="请输入规格型号" clearable="true"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="生产企业:" class="query-form-item">
<el-input v-model="listQuery.ylqxzcrbarmc" style="width: 90%" placeholder="请输入生产企业/注册备案人"
clearable="true"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="search"></el-button>
<el-button type="primary" icon="el-icon-plus" @click="confirmSelect"></el-button>
</el-button-group>
</div>
<!-- <el-divider style="margin: 15px"></el-divider>-->
<el-table :data="productList" style="width: 100%"
v-loading="productListLoading" border highlight-current-row
:row-class-name="tableRowClassName" @current-change="handleChange" ref="multipleTable"
@selection-change="productSelectChange">
<el-table-column type="selection" width="55" :selectable="selectableDIS"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="最小销售产品标识" width="150" prop="nameCode" show-overflow-tooltip></el-table-column>
<el-table-column label="产品通用名称" width="150" prop="cpmctymc" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" width="150" prop="ggxh" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案号" width="150" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" width="200" prop="manufactory" show-overflow-tooltip></el-table-column>
<el-table-column label="产品描述" width="200" prop="cpms" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="160">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="handleDetailClick(scope.row)">详情</el-button>
</template>
</el-table-column>
</el-table>
<el-dialog
title="耗材字典详情"
:visible.sync="udiRlDetailVisible"
width="80%"
:close-on-click-modal="false"
:close-on-press-escape="false"
append-to-body
v-if="udiRlDetailVisible"
>
<udiRlDetailDialog :editQuery="currentRow"></udiRlDetailDialog>
</el-dialog>
<pagination
v-show="productListTotal>0"
:total="productListTotal"
:page.sync="listQuery.page"
:limit.sync="listQuery.limit"
@pagination="handleErpPageChange"
></pagination>
</el-card>
<el-dialog title="请选择对应的注册/备案证" :visible.sync="dialogFormVisible" append-to-body width="40%">
<el-form :model="form">
<el-form-item label="" prop="isGive">
<el-radio-group v-model="currentCert">
<el-radio style="width: 100%; margin-top: 10px;" :label="item" :key="item" v-for="item in certList">{{
item
}}
</el-radio>
</el-radio-group>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="selectCert"> </el-button>
<el-button @click="dialogFormVisible = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
// import store from "../../../store";
import {addContractDetail} from "@/api/purchase/purContract"
import {isBlank} from "@/utils/strUtil";
// import selectProduct from "@/views/order/pur/selectProduct.vue";
// import {productListWithUnique, productListWithUniqueAndUnit} from "@/api/receipts/productInfo";
import udiRlDetailDialog from "./../../purchase/purApply/purUdiRlDetailDialog";
import {filterCompanyProductRelevance} from "../../../api/basic/udiRlSuptRelevance";
export default {
name: "stockOrderNewSelectProduct",
props: {
stockOrderLists: {
type: Object,
required: true,
},
closeDialog: {
type: Function,
required: true,
},
closeDialogC2: {
type: Function,
required: true,
},
purType: {
type: Object,
required: true,
},
pId: {
type: Object,
required: true,
},
},
data() {
return {
productList:[],
showSearch: true,
listQuery: {
purType: null,
udiCode: null,
unicode: null,
nameCode: null,
cpmctymc: null,
ggxh: null,
ylqxzcrbarmc: null,
thrPiId: null,
corpType:'VENDOR',
page: 1,
limit: 10,
},
combineQuery: {
thirdId: "",
relId: "",
erpName: "",
keys: [],
},
ids: [],
radioCheck: null,
dataList: [],
pageTotal: 1,
total: 1,
currentRow: null,
productListLoading: false,
udiRlDetailVisible: false,
thirdSys: [],
thirdSysFk: null,
busTypes: [],
actDateRange: [],
pickerOptions: {
shortcuts: [
{
text: "最近一周",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近一个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
picker.$emit("pick", [start, end]);
},
},
{
text: "最近三个月",
onClick(picker) {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
picker.$emit("pick", [start, end]);
},
},
],
},
orderEditor: false,
orderId: "",
currentCert: null,
certList: [],
dialogFormVisible: false,
multipleSelection: null,
uniqueIds: [],
};
},
methods: {
selectableDIS(row, index) {
if (this.stockOrderLists.length > 0) {
for (var i = 0; i < this.stockOrderLists.length; i++) {
if (row.rlId == this.stockOrderLists[i].productId){
return false
}
}
}
return true
},
productSelectChange(e) {
this.uniqueIds = []
e.forEach(i => this.uniqueIds.push({productUniqueId: i.uniqueId, id: i.id || null}));
},
onReset() {
this.$router.push({
path: "",
});
this.listQuery = {
purType: null,
udiCode: null,
unicode: null,
cpmctymc: null,
ggxh: null,
ylqxzcrbarmc: null,
thrPiId: null,
page: 1,
limit: 10
}
this.multipleSelection = [];
this.radioCheck = null;
this.currentRow = null;
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
tableRowClassName({row}) {
if (row.checked) return "warning-row";
return "";
},
checkSelectable(row) {
return !row.check;
},
handleCurrentChange(val) {
this.unionQuery.page = val;
this.getList();
},
handleChange(val) {
this.radioCheck = val.id;
this.currentRow = val;
this.multipleSelection = val
},
handleDetailClick(row) {
this.currentRow = row;
this.udiRlDetailVisible = true;
},
closeDetailDialog() {
this.udiRlDetailVisible = false;
},
handleErpPageChange(val) {
this.listQuery.page = val.page;
this.getList();
},
keyup_submit(event) {
this.listQuery.page = 1;
this.getList();
event.target.select();
},
search() {
this.listQuery.page = 1;
this.getList();
},
getList() {
this.productListLoading = true;
// this.listQuery.customerId = store.getters.customerId;
filterCompanyProductRelevance(this.listQuery).then(res => {
this.productListLoading = false
if (res.code === 20000) {
this.productList = res.data.list || []
this.productListTotal = res.data.total || 0
} else {
this.$message.error(res.message)
}
}).catch((e) => {
this.productListLoading = false
})
},
intentBack() {
this.closeDialog();
},
confirmSelect() {
if (!this.uniqueIds.length) {
this.$message.error("请先选择产品")
return
}
this.combine();
this.closeDialog();
},
combine() {
this.loading = true;
let arr = []
this.uniqueIds.forEach((value, index) => {
arr[index] = value.id;
});
if (arr.length == 0){
this.$message.error("请先选择产品!");
return
}
let tQuery = {
productIds : arr,
orderIdFk: this.pId
};
addContractDetail(tQuery).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.closeDialog(response.data);
} else {
if (response.code == 601) {
this.$alert(response.message, "提示", {
confirmButtonText: "确定",
});
} else
this.$message.error(response.message);
}
}).catch(() => {
this.loading = false;
});
},
selectCert() {
if (this.currentCert == null) {
this.$message.error("请先选择对应的注册证!");
} else {
this.multipleSelection.zczbhhzbapzbh = this.currentCert;
this.combine();
}
},
},
components: {
udiRlDetailDialog
},
created() {
this.getList();
},
};
</script>
<style scoped>
div /deep/ .el-table .warning-row {
background: #bebebe;
}
div /deep/ .el-table .success-row {
background: #ffffff;
}
</style>

@ -0,0 +1,315 @@
<template>
<div>
<el-card>
<el-form :model="filterQuery" class="query-form" label-width="100px" >
<el-row>
<el-col :span="11">
<el-form-item label="合同编号">
<el-input v-model="filterQuery.code" style="width: 90%" placeholder="请输入合同编号" clearable @change="getList"></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item label="合同名称">
<el-input v-model="filterQuery.name" style="width: 90%" clearable placeholder="请输入合同名称" @change="getList">
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="10">
<el-form-item label="合同状态:" prop="emergency">
<el-select v-model="filterQuery.status" placeholder="请选单据状态" style="width: 90%" @change="getList" clearable>
<el-option label="草稿" :value='0'></el-option>
<el-option label="审核中" :value='1'></el-option>
<el-option label="已审核" :value='2'></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="13">
<el-form-item label="是否已导入:">
<el-select v-model="filterQuery.isGenerateOrder" placeholder="请选导入状态" style="width: 90%" @change="getList"
clearable>
<el-option label="未导入" :value='0'></el-option>
<el-option label="已导入" :value='1'></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
@current-change="handleDetail" :default-sort="defaultSort">
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="合同编号" prop="code"></el-table-column>
<el-table-column label="合同名称" prop="name"></el-table-column>
<el-table-column label="往来单位/供应商" prop="fromCorp"></el-table-column>
<el-table-column label="合同仓库" prop="invCode" :formatter="invCodeFormat"></el-table-column>
<!-- <el-table-column label="合同状态" prop="status" :formatter="statusFormat"></el-table-column>-->
<el-table-column label="合同状态" prop="status" >
<template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusFilterType">
{{ statusMap[scope.row.status] }}
</el-tag>
<el-tag v-if="scope.row.nextNodeName != null && scope.row.nextNodeName != '' && scope.row.status == 1 " class="tag-right-align">
<b v-if="scope.row.nextApprovalNodeType == 1"></b>
<b v-if="scope.row.nextApprovalNodeType == 2"></b>
{{ scope.row.nextNodeName }}审核
</el-tag>
</template>
</el-table-column>
<el-table-column label="是否已导入" prop="isGenerateOrder">
<template slot-scope="scope">
<el-tag :type="(scope.row.isGenerateOrder) | statusFilterType" >
{{scope.row.isGenerateOrder == 1? "已导入":"未导入" }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="合同类型" prop="type" :formatter="typeFormat"></el-table-column>
<el-table-column label="付款方式" prop="payType" :formatter="payTypeFormat"></el-table-column>
<el-table-column label="合同签订日期" prop="contractDate"
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native="importContract(scope.$index, scope.row)">导入
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="filterQuery.total>0"
:total="filterQuery.total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@pagination="productListChange"/>
</el-card>
<br>
<el-card class="el-card">
<el-table v-loading="loading" :data="detailList" style="width: 100%" border highlight-current-row>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode"></el-table-column>
<el-table-column label="产品名称" prop="productName"></el-table-column>
<el-table-column label="生产厂家" prop="productCompany"></el-table-column>
<el-table-column label="注册证/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="规格型号" prop="ggxh"></el-table-column>
<el-table-column label="包装级别" prop="packRatio"></el-table-column>
<el-table-column label="供应商名称" prop="supName"></el-table-column>
<el-table-column label="数量" prop="count"></el-table-column>
</el-table>
<pagination
v-show="detailquery.total>0"
:total="detailquery.total"
:page.sync="detailquery.page"
:limit.sync="detailquery.limit"
@pagination="handleCurrentChangeDetail"
></pagination>
</el-card>
</div>
</template>
<script>
import {listPlan, listApplyDetail} from "@/api/purchase/purContract";
// import {importContract} from "@/api/warehouse/order";
export default {
name: "purContractSelectPlan",
props: {
closeDialog: {
type: Function,
required: true,
},
invList: {
type: Array,
required: true,
},
action: {
type: Array,
required: true,
},
orderType: {
type: Array,
required: true,
},
invCode: {
type: Array,
required: true,
}
},
data() {
return {
typeList:[
{name: '战略' ,code: 1 },
{name: '长期' ,code: 2 },
{name: '短期' ,code: 3 }
],
statusList:[
{name: '草稿' ,code: 1 },
{name: '未审核' ,code: 2 },
{name: '已审核' ,code: 3 }
],
payTypeList:[
{name: '银行' ,code: 1 },
{name: '微信' ,code: 2 },
{name: '支付宝' ,code: 3}
],
statusMap: {
0: "草稿",
1: "审核中",
2: "通过",
3: "拒绝"
},
list: [],
filterQuery:{
code:null,
name:null,
status:2,
isGenerateOrder:0,
total:0,
page: 1,
limit: 10,
},
detailquery:
{
orderIdFk: null,
total: 0,
page: 1,
limit: 10,
},
detailList: [],
row: {},
}
},
methods: {
handleCurrentChangeDetail(val) {
this.detailquery.page = val.page;
this.handleDetail(this.row)
},
handleDetail(row) {
if (row.id == null) {
this.row = this.list[0]
this.detailquery.orderIdFk=this.row.id
}else {
this.detailquery.orderIdFk=row.id
}
this.loading = true;
listApplyDetail(this.detailquery) //
.then((response) => {
this.detailList = response.data.list || [];
this.detailquery.total = response.data.total || 0;
this.loading = false;
})
.catch(() => {
this.loading = false;
this.detailList = [];
this.total = 0;
});
},
typeFormat(row) {
let obj = ''
this.typeList.forEach((item) => {
//listreturn
//name
if (row.type == item.code) {
obj = item.name
}
})
return obj
},
payTypeFormat(row) {
let obj = ''
this.payTypeList.forEach((item) => {
//listreturn
//name
if (row.payType == item.code) {
obj = item.name
}
})
return obj
},
// handleDetail(row) {
// console.log("handleDetail:" + row)
// },
productListChange() {
this.getList()
},
getList() {
this.loading = true;
listPlan(this.filterQuery).then((response) => {
if (response.code == 20000) {
this.list = response.data.list || [];
this.filterQuery.total = response.data.total || 0;
this.detailList = []
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
invCodeFormat(row) {
let obj = ''
this.invList.forEach((item) => {
//listreturn
//name
if (row.invCode == item.code) {
obj = item.name
}
})
return obj
},
importContract(index, row) {
this.loading = true;
let tQuery = {
id: row.id,
action: this.action,
invCode: this.invCode,
orderType: this.orderType
}
console.log(tQuery)
importContract(tQuery).then((response) => {
if (response.code == 20000) {
this.closeDialog(true);
} else {
this.$message.error(response.message);
}
this.loading = false;
})
.catch(() => {
this.loading = false;
});
},
},
filters: {
statusFilterType(status) {
const statusMap = {
0: "info",
1: "warning",
2: "success",
3: "danger"
};
return statusMap[status];
}
,
},
created() {
this.getList();
}
}
</script>
<style scoped>
</style>
Loading…
Cancel
Save