1077 lines
42 KiB
Vue
1077 lines
42 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-card>
|
|
<span>物料名称:</span>
|
|
<el-input v-model="materialName" placeholder="物料名称" size="small" clearable/>
|
|
<span>库存状态:</span>
|
|
<el-select v-model="inventoryStateValue" placeholder="库存状态" size="small" clearable>
|
|
<el-option
|
|
v-for="item in inventoryState"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
<span>采购状态:</span>
|
|
<el-select v-model="purchaseStateValue" placeholder="库存状态" size="small">
|
|
<el-option
|
|
v-for="item in purchaseState"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
<el-button
|
|
type="success"
|
|
size="small"
|
|
icon="el-icon-search"
|
|
style="margin-left: 10px"
|
|
@click="pageCurrent1=1;pageSize1=10;total1=0;searchTable1()">查询</el-button>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<el-table
|
|
v-loading="loading1"
|
|
:data="tableData1"
|
|
border
|
|
style="width: 100%;max-height: 300px;"
|
|
height="300px"
|
|
size="mini"
|
|
@selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" align="center" width="55"/>
|
|
<el-table-column label="库存状态" width="100" align="center">
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="parseInt(scope.row.库存是否不足)===1" type="danger" size="small">不足</el-tag>
|
|
<el-tag v-else type="success" size="small">充足</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料名称" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料型号" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料型号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料规格" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料规格 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="供货商" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.供货商 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="当前库存量" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.当前库存量 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="安全库存量" min-width="200" align="center">
|
|
<template slot-scope="scope">
|
|
<template v-if="scope.row.changeSafeValue">
|
|
<el-input v-model="scope.row.安全库存量" class="edit-input" size="mini"/>
|
|
<el-button class="cancel-btn" size="mini" icon="el-icon-refresh" type="warning" @click="cancelEdit(scope.row)">取消</el-button>
|
|
</template>
|
|
<span v-else>{{ scope.row.安全库存量 }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="设置" min-width="100" align="center">
|
|
<template slot-scope="scope">
|
|
<el-button v-if="scope.row.changeSafeValue" type="mini" size="mini" icon="el-icon-circle-check-outline" @click="confirmEdit(scope.row)">确定</el-button>
|
|
<el-button
|
|
v-else
|
|
type="primary"
|
|
size="mini"
|
|
icon="el-icon-edit"
|
|
@click="scope.row.changeSafeValue=!scope.row.changeSafeValue">设置</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="block" style="margin-top: 10px;">
|
|
<el-pagination
|
|
:current-page="pageCurrent1"
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
:page-size="pageSize1"
|
|
:total="total1"
|
|
style="display:inline-block;width:50%"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@size-change="handleSizeChange1"
|
|
@current-change="handleCurrentChange1"/>
|
|
</div>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<span>离线合同号:</span>
|
|
<el-input v-model="offlineContract" placeholder="离线合同号" size="small" clearable/>
|
|
<span>供应商:</span>
|
|
<el-input v-model="supplierName0" placeholder="供应商" size="small" clearable/>
|
|
<el-button
|
|
type="success"
|
|
size="small"
|
|
icon="el-icon-search"
|
|
style="margin-left: 10px"
|
|
@click="pageCurrent2=1;pageSize2=10;total2=0;searchTable2()">查询</el-button>
|
|
<el-button
|
|
type="primary"
|
|
size="small"
|
|
icon="el-icon-plus"
|
|
style="margin-left: 10px"
|
|
@click="addOfflineContract">创建离线合同</el-button>
|
|
<el-button
|
|
type="primary"
|
|
size="small"
|
|
icon="el-icon-download"
|
|
style="margin-left: 10px"
|
|
@click="addMateriel">选入物料</el-button>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<el-table v-loading="" :data="tableData2" border style="max-height: 300px;" height="300px" size="mini" highlight-current-row @row-click="searchTable3">
|
|
<el-table-column label="合同状态" align="center" width="80" fixed="left">
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="parseInt(scope.row.离线合同状态)===1" type="warning" size="small">编辑中</el-tag>
|
|
<el-tag v-if="parseInt(scope.row.离线合同状态)===2" type="primary" size="small">采购中</el-tag>
|
|
<el-tag v-if="parseInt(scope.row.离线合同状态)===4" type="success" size="small">已到货</el-tag>
|
|
<el-tag v-if="parseInt(scope.row.离线合同状态)===5" type="info" size="small">已作废</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="离线合同编号" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.离线合同编号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="离线合同名称" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.离线合同名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="供应商" align="center" min-width="250">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.供应商名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="采购员" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.采购员 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="规定到货时间" align="center" width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.规定到货时间.split(' ')[0] }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="付款方式" align="center" width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.付款方式内容 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="第一次付款时间" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.第一次付款时间节点 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="第二次付款时间" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.第二次付款时间节点 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="第三次付款时间" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.第三次付款时间节点 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="第四次付款时间" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.第四次付款时间节点 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" width="280" fixed="right">
|
|
<template slot-scope="scope">
|
|
<el-button :disabled="parseInt(scope.row.离线合同状态)!==1" type="primary" size="mini" icon="el-icon-edit" @click="editOfflineContract(scope.row)">编辑</el-button>
|
|
<el-button :disabled="parseInt(scope.row.离线合同状态)!==1" type="danger" size="mini" icon="el-icon-delete" @click="deleteOfflineContract(scope.row)">作废</el-button>
|
|
<el-button type="warning" size="mini" icon="el-icon-download">导出</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="block" style="margin: 10px 0;">
|
|
<el-pagination
|
|
:current-page="pageCurrent2"
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
:page-size="pageSize2"
|
|
:total="total2"
|
|
style="display:inline-block;width:50%"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@size-change="handleSizeChange2"
|
|
@current-change="handleCurrentChange2"/>
|
|
</div>
|
|
<el-table v-loading="" :data="tableData3" :summary-method="getSummaries" border style="max-height: 300px;" height="300px" size="mini" show-summary>
|
|
<el-table-column label="离线合同编号" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.离线合同编号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料名称" align="center" min-width="150">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料规格" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料规格 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="物料型号" align="center" min-width="200">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.物料型号 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="数量" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.数量" :disabled="disable" size="mini" style="width:70px"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="参考价格" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.参考价格 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="单价" align="center" min-width="100" prop="单价">
|
|
<template slot-scope="scope">
|
|
<el-input v-model="scope.row.单价" :disabled="disable" size="mini" style="width:70px"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="合计" align="center" min-width="100" prop="合计">
|
|
<template slot-scope="scope">
|
|
{{ parseFloat(scope.row.单价||0) * parseInt(scope.row.数量||0) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" align="center" min-width="100">
|
|
<template slot-scope="scope">
|
|
<el-button :disabled="disable" type="danger" size="mini" icon="el-icon-delete" @click="deleteMateriel(scope.row)">移除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-card>
|
|
|
|
<el-card>
|
|
<el-table
|
|
:data="tableData4"
|
|
:show-header="false"
|
|
:highlight-current-row="!disable"
|
|
border
|
|
height="280px"
|
|
style="width: 250px;display:inline-block;max-height: 280px;"
|
|
size="mini"
|
|
@row-click="searchDemo">
|
|
<el-table-column align="center" label="合同模板名称">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.合同模板名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<el-input :rows="20" v-model="textArea" :readonly="disable" type="textarea" style="width:calc(99% - 250px);float:right;margin-bottom: 20px" resize="none"/>
|
|
<el-button :disabled="disable" type="success" size="mini" icon="el-icon-circle-check-outline" @click="doneOfflineContact">生成离线合同</el-button>
|
|
</el-card>
|
|
|
|
<el-dialog :visible.sync="dialogVisible1" title="供应商选择" center style="min-height: 300px">
|
|
<el-form ref="form1" :model="form1" label-position="left" label-width="90px" class="searchForm">
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="供应商名称">
|
|
<el-input v-model="supplierName" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="企业性质">
|
|
<el-input v-model="enterpriseNature" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="货期">
|
|
<el-input v-model="goodTime" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="注册资本">
|
|
<el-input v-model="registeredCapital" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="税号">
|
|
<el-input v-model="taxNum" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="电子邮箱">
|
|
<el-input v-model="EMail" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="地址">
|
|
<el-input v-model="address" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="账号">
|
|
<el-input v-model="account" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="开户行">
|
|
<el-input v-model="openingBank" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="电话号码">
|
|
<el-input v-model="phone" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="传真">
|
|
<el-input v-model="fax" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-button
|
|
type="success"
|
|
size="small"
|
|
icon="el-icon-search"
|
|
@click="searchSupplier">查询</el-button>
|
|
<el-button
|
|
type="primary"
|
|
size="small"
|
|
icon="el-icon-check"
|
|
@click="submitSelectSupplier">确定</el-button>
|
|
<el-button
|
|
type="danger"
|
|
size="small"
|
|
icon="el-icon-delete"
|
|
@click="emptySupplierDetail">清空</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
<el-table :data="tableData01" size="mini" style="width: 97%;max-height: 300px;margin-top:15px" height="200px" border @row-click="showSupplierDetail">
|
|
<el-table-column align="center" label="供应商名称" min-width="250">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.供应商名称 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="企业性质" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.企业性质 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="创立日期" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.创立日期 }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" label="注册资本" min-width="100">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.注册资本 }}
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-form>
|
|
</el-dialog>
|
|
|
|
<el-dialog :title="title2" :visible.sync="dialogVisible2" center style="min-height: 300px" width="800px">
|
|
<el-form ref="form2" :model="form2" :rules="rules2" label-position="left" label-width="120px">
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="离线合同编号" prop="离线合同编号">
|
|
<el-input v-model="form2.离线合同编号" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="离线合同名称" prop="离线合同名称">
|
|
<el-input v-model="form2.离线合同名称" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="供应商名称" prop="供应商名称">
|
|
<el-input v-model="form2.供应商名称" size="small" readonly>
|
|
<el-button slot="append" icon="el-icon-search" @click="dialogVisible1=true"/>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="规定到货时间" prop="规定到货时间">
|
|
<el-date-picker
|
|
v-model="form2.规定到货时间"
|
|
size="small"
|
|
type="date"
|
|
format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="选择日期"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="运费" prop="运费">
|
|
<el-input v-model="form2.运费" size="small"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="付款方式" prop="付款方式">
|
|
<el-select v-model="form2.付款方式" placeholder="付款方式" size="small" @change="searchDemo();payMethodChange()">
|
|
<el-option
|
|
v-for="item in payMethod"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="第一次付款时间" prop="第一次付款时间">
|
|
<el-select v-model="form2.第一次付款时间" placeholder="请选择" size="small" clearable>
|
|
<el-option
|
|
v-for="item in payTime"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="第二次付款时间" prop="第二次付款时间">
|
|
<el-select v-model="form2.第二次付款时间" :disabled="disable2" placeholder="请选择" size="small" clearable>
|
|
<el-option
|
|
v-for="item in payTime"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="第三次付款时间" prop="第三次付款时间">
|
|
<el-select v-model="form2.第三次付款时间" :disabled="disable3" placeholder="请选择" size="small" clearable>
|
|
<el-option
|
|
v-for="item in payTime"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="第四次付款时间" prop="第四次付款时间">
|
|
<el-select v-model="form2.第四次付款时间" :disabled="disable4" placeholder="请选择" size="small" clearable>
|
|
<el-option
|
|
v-for="item in payTime"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value"/>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button
|
|
v-show="title2==='创建离线合同'"
|
|
type="primary"
|
|
size="small"
|
|
icon="el-icon-check"
|
|
@click="submitAddOfflineContract">确定</el-button>
|
|
<el-button
|
|
v-show="title2==='编辑离线合同'"
|
|
type="primary"
|
|
size="small"
|
|
icon="el-icon-check"
|
|
@click="submitEditOfflineContract">确定</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { searchInventoryNum, searchOfflineContract, searchOfflineContract2, searchSupplier, initPayMethod, initPayTimeNode, addOfflineContract, editOfflineContract, deleteOfflineContract, searchMateriel,
|
|
addMateriel, deleteMateriel, doneOfflineContact, searchContractDemo, setSafeValue } from '@/api/PurchasingCenter/OfflineContract'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: '', // 离线合同
|
|
data() {
|
|
return {
|
|
loading1: false,
|
|
title2: '',
|
|
purchaseStateValue: 2, // 采购状态 全部
|
|
purchaseState: [
|
|
{
|
|
label: '未采购',
|
|
value: 1
|
|
}, {
|
|
label: '全部',
|
|
value: 2
|
|
}
|
|
],
|
|
check1: 0,
|
|
check2: 0,
|
|
check3: 0,
|
|
check4: 0,
|
|
materialName: '',
|
|
inventoryStateValue: '', // 库存状态
|
|
inventoryState: [
|
|
{
|
|
label: '充足',
|
|
value: 2
|
|
},
|
|
{
|
|
label: '不足',
|
|
value: 1
|
|
}
|
|
],
|
|
tableData1: [],
|
|
pageCurrent1: 1,
|
|
pageSize1: 10,
|
|
total1: 0,
|
|
offlineContractNum: '', // 离线合同流水号
|
|
offlineContract: '', // 离线合同号
|
|
supplierName0: '', // 供应商名称(外面的)
|
|
supplierName: '', // 供应商名称
|
|
payMethod: [], // 付款方式
|
|
payTime: [], // 付款时间节点
|
|
tableData2: [],
|
|
total2: 0,
|
|
pageCurrent2: 1,
|
|
pageSize2: 10,
|
|
dialogVisible1: false,
|
|
form1: {},
|
|
supplierCheck1: 0,
|
|
supplierCheck2: 0,
|
|
supplierCheck3: 0,
|
|
supplierCheck4: 0,
|
|
supplierCheck5: 0,
|
|
supplierCheck6: 0,
|
|
supplierCheck7: 0,
|
|
supplierCheck8: 0,
|
|
supplierCheck9: 0,
|
|
supplierCheck10: 0,
|
|
supplierCheck11: 0,
|
|
supplierCheck12: 0,
|
|
supplierValue: '', // 供应商流水号
|
|
goodTime: '', // 货期
|
|
enterpriseNature: '', // 企业性质
|
|
createDate: '', // 创立日期
|
|
registeredCapital: '', // 注册资本
|
|
taxNum: '', // 税号
|
|
EMail: '', // 电子邮箱
|
|
address: '', // 地址
|
|
account: '', // 账号
|
|
openingBank: '', // 开户行
|
|
phone: '', // 电话号码
|
|
fax: '', // 传真
|
|
tableData01: [],
|
|
dialogVisible2: false,
|
|
form2: {
|
|
离线合同流水号: '',
|
|
离线合同编号: '',
|
|
离线合同名称: '',
|
|
供应商流水号: '',
|
|
供应商名称: '',
|
|
规定到货时间: '',
|
|
运费: '',
|
|
付款方式: '',
|
|
第一次付款时间: 1,
|
|
第二次付款时间: 1,
|
|
第三次付款时间: 1,
|
|
第四次付款时间: 1
|
|
},
|
|
rules2: { // 离线合同表单验证规则
|
|
离线合同编号: [{ required: true, message: '请填写离线合同编号' }],
|
|
离线合同名称: [{ required: true, message: '请填写离线合同名称' }],
|
|
供应商名称: [{ required: true, message: '请选择供应商' }],
|
|
规定到货时间: [{ required: true, message: '请选择规定到货时间' }],
|
|
运费: [{ required: true, message: '请填写运费' }],
|
|
付款方式: [{ required: true, message: '请选择付款方式' }]
|
|
},
|
|
tableData3: [],
|
|
textArea: '请选择',
|
|
materielGroup: [], // 物料流水号组
|
|
partGroup: [], // 离线合同明细流水号组
|
|
numGroup: [], // 数量组
|
|
priceGroup: [], // 单价组
|
|
totalPrice: 0, // 合同总额
|
|
tableData4: [], // 合同模板
|
|
stipulateArrivalTime: '', // 规定到货时间
|
|
payMethodName: '', // 付款方式名称
|
|
paramRow: '', // 参数row
|
|
disable2: true,
|
|
disable3: true,
|
|
disable4: true,
|
|
disable: true // 其他的禁用
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'sidebar',
|
|
'avatar',
|
|
'name',
|
|
'id' // 人员编号
|
|
])
|
|
},
|
|
created() {
|
|
this.fetchData()
|
|
},
|
|
methods: {
|
|
fetchData() {
|
|
initPayMethod().then(response => { // 初始化付款方式
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
this.payMethod.push({
|
|
label: response.data[i].付款方式内容,
|
|
value: response.data[i].付款方式流水号
|
|
})
|
|
}
|
|
})
|
|
initPayTimeNode().then(response => {
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
this.payTime.push({
|
|
label: response.data[i].付款时间节点名称,
|
|
value: response.data[i].付款时间节点流水号
|
|
})
|
|
}
|
|
})
|
|
searchContractDemo().then(response => { // 初始化合同模板
|
|
this.tableData4 = response.data
|
|
})
|
|
},
|
|
searchTable1() { // 查询物料库物料
|
|
this.loading1 = true
|
|
this.materialName ? this.check1 = 1 : this.check1 = 0
|
|
this.inventoryStateValue ? this.check2 = 1 : this.check2 = 0
|
|
searchInventoryNum(this.pageCurrent1, this.pageSize1, this.check1, this.materialName, this.check2, this.inventoryStateValue, this.purchaseStateValue).then(response => {
|
|
this.tableData1 = response.data.rows
|
|
this.tableData1.map(v => {
|
|
this.$set(v, 'changeSafeValue', false)
|
|
v.原安全库存量 = v.安全库存量
|
|
return v
|
|
})
|
|
this.total1 = response.data.total
|
|
this.loading1 = false
|
|
})
|
|
},
|
|
handleSizeChange1(val) {
|
|
this.pageSize1 = val
|
|
this.pageCurrent1 = 1
|
|
this.searchTable1()
|
|
},
|
|
handleCurrentChange1(val) {
|
|
this.pageCurrent1 = val
|
|
this.searchTable1()
|
|
},
|
|
handleSelectionChange(val) {
|
|
this.materielGroup = []
|
|
for (let i = 0; i < val.length; i++) {
|
|
this.materielGroup.push(val[i].物料流水号)
|
|
}
|
|
},
|
|
cancelEdit(row) { // 取消设置
|
|
row.安全库存量 = row.原安全库存量
|
|
row.changeSafeValue = false
|
|
this.$message('取消修改')
|
|
},
|
|
confirmEdit(row) { // 确认设置
|
|
Number(row.安全库存量) ? row.安全库存量 = Number(row.安全库存量) : row.安全库存量 = 0
|
|
setSafeValue(row.物料流水号, parseInt(row.安全库存量)).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
row.changeSafeValue = false
|
|
this.$message.success('设置成功')
|
|
this.searchTable1()
|
|
} else {
|
|
this.$message.error('设置失败')
|
|
}
|
|
})
|
|
},
|
|
searchTable2() { // 查询离线合同列表
|
|
this.offlineContract ? this.check3 = 1 : this.check3 = 0
|
|
this.supplierName0 ? this.check4 = 1 : this.check4 = 0
|
|
searchOfflineContract(this.pageCurrent2, this.pageSize2, this.check3, this.offlineContract, this.check4, this.supplierName0).then(response => {
|
|
this.tableData2 = response.data.rows
|
|
this.total2 = response.data.total
|
|
})
|
|
},
|
|
handleSizeChange2(val) { // 离线合同列表分页
|
|
this.pageSize2 = val
|
|
this.searchTable2()
|
|
},
|
|
handleCurrentChange2(val) { // 离线合同列表分页
|
|
this.pageCurrent2 = val
|
|
this.searchTable2()
|
|
},
|
|
addOfflineContract() { // 创建离线合同
|
|
if (this.$refs['form2'] !== undefined) {
|
|
this.$refs['form2'].resetFields()
|
|
}
|
|
this.title2 = '创建离线合同'
|
|
this.form2.离线合同编号 = ''
|
|
this.form2.离线合同名称 = ''
|
|
this.form2.供应商流水号 = ''
|
|
this.form2.供应商名称 = ''
|
|
this.form2.规定到货时间 = ''
|
|
this.form2.运费 = ''
|
|
this.form2.付款方式 = ''
|
|
this.form2.第一次付款时间 = 1
|
|
this.form2.第二次付款时间 = 0
|
|
this.form2.第三次付款时间 = 0
|
|
this.form2.第四次付款时间 = 0
|
|
this.dialogVisible2 = true
|
|
},
|
|
editOfflineContract(row) {
|
|
console.log(row)
|
|
if (this.$refs['form2'] !== undefined) {
|
|
this.$refs['form2'].resetFields()
|
|
}
|
|
this.title2 = '编辑离线合同'
|
|
this.form2.离线合同流水号 = row.离线合同流水号
|
|
this.form2.离线合同编号 = row.离线合同编号
|
|
this.form2.离线合同名称 = row.离线合同名称
|
|
this.form2.供应商流水号 = row.供应商流水号
|
|
this.form2.供应商名称 = row.供应商名称
|
|
this.form2.规定到货时间 = row.规定到货时间
|
|
this.form2.运费 = row.运费
|
|
this.form2.付款方式 = parseInt(row.付款方式流水号)
|
|
this.form2.第一次付款时间 = parseInt(row.第一次付款时间节点流水号)
|
|
this.form2.第二次付款时间 = parseInt(row.第二次付款时间节点流水号)
|
|
this.form2.第三次付款时间 = parseInt(row.第三次付款时间节点流水号)
|
|
this.form2.第四次付款时间 = parseInt(row.第四次付款时间节点流水号)
|
|
this.payMethodChange()
|
|
this.dialogVisible2 = true
|
|
},
|
|
submitEditOfflineContract() {
|
|
this.$refs['form2'].validate((valid) => {
|
|
if (valid) {
|
|
this.disable2 ? this.form2.第二次付款时间 = 0 : this.form2.第二次付款时间
|
|
this.disable3 ? this.form2.第三次付款时间 = 0 : this.form2.第三次付款时间
|
|
this.disable4 ? this.form2.第四次付款时间 = 0 : this.form2.第四次付款时间
|
|
const numGroup1 = [] // 空数组,放现有的离线合同号
|
|
const numGroup2 = [] // 空数组,放现有的离线合同流水号
|
|
searchOfflineContract2().then(response => { // 先查询判断是否存在
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
numGroup1.push(response.data[i].离线合同编号)
|
|
numGroup2.push(response.data[i].离线合同流水号)
|
|
}
|
|
}).then(() => {
|
|
if (numGroup1.indexOf(this.form2.离线合同编号) !== -1 && numGroup1.indexOf(this.form2.离线合同编号) !== numGroup2.indexOf(parseInt(this.form2.离线合同流水号))) {
|
|
this.$message.error('该离线合同编号已存在')
|
|
} else {
|
|
editOfflineContract(this.form2.离线合同流水号, this.form2.离线合同编号, this.form2.离线合同名称, this.form2.供应商流水号, this.id, this.form2.规定到货时间, this.form2.运费, this.form2.付款方式, this.form2.第一次付款时间, this.form2.第二次付款时间, this.form2.第三次付款时间, this.form2.第四次付款时间).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('修改离线合同成功')
|
|
this.searchTable2()
|
|
this.dialogVisible2 = false
|
|
} else { this.$message.error('修改离线合同失败') }
|
|
})
|
|
}
|
|
})
|
|
} else {
|
|
console.log('error submit!!')
|
|
return false
|
|
}
|
|
})
|
|
},
|
|
deleteOfflineContract(row) { // 作废离线合同
|
|
this.$confirm('确定作废该合同?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
deleteOfflineContract(row.离线合同流水号).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('作废成功')
|
|
this.searchTable2()
|
|
searchMateriel(this.offlineContractNum).then(response => {
|
|
this.tableData3 = response.data
|
|
})
|
|
} else { this.$message.error('作废失败') }
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '已取消作废'
|
|
})
|
|
})
|
|
},
|
|
submitAddOfflineContract() { // 新建离线合同
|
|
this.$refs['form2'].validate((valid) => {
|
|
if (valid) {
|
|
this.disable2 ? this.form2.第二次付款时间 = 0 : this.form2.第二次付款时间
|
|
this.disable3 ? this.form2.第三次付款时间 = 0 : this.form2.第三次付款时间
|
|
this.disable4 ? this.form2.第四次付款时间 = 0 : this.form2.第四次付款时间
|
|
const numGroup1 = [] // 空数组,放现有的询价单号
|
|
searchOfflineContract2().then(response => { // 先查询判断是否存在
|
|
for (let i = 0; i < response.data.length; i++) {
|
|
numGroup1.push(response.data[i].离线合同编号)
|
|
}
|
|
}).then(() => {
|
|
if (numGroup1.indexOf(this.form2.离线合同编号) !== -1) {
|
|
this.$message.error('该离线合同编号已存在')
|
|
} else {
|
|
addOfflineContract(this.form2.离线合同编号, this.form2.离线合同名称, this.form2.供应商流水号, this.id, this.form2.规定到货时间, this.form2.运费, this.form2.付款方式, this.form2.第一次付款时间, this.form2.第二次付款时间, this.form2.第三次付款时间, this.form2.第四次付款时间).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('新建离线合同成功')
|
|
this.searchTable2()
|
|
this.dialogVisible2 = false
|
|
} else { this.$message.error('新建离线合同失败') }
|
|
})
|
|
}
|
|
})
|
|
} else {
|
|
console.log('error submit!!')
|
|
return false
|
|
}
|
|
})
|
|
},
|
|
searchSupplier() { // 查询创立日期和注册资本大于符合条件的数据
|
|
this.supplierName ? this.supplierCheck1 = 1 : (this.supplierCheck1 = 0, this.supplierName = '')
|
|
this.enterpriseNature ? this.supplierCheck2 = 1 : (this.supplierCheck2 = 0, this.enterpriseNature = '')
|
|
this.createDate ? this.supplierCheck3 = 1 : (this.supplierCheck3 = 0, this.createDate = '')
|
|
this.registeredCapital ? this.supplierCheck4 = 1 : (this.supplierCheck4 = 0, this.registeredCapital = '')
|
|
this.taxNum ? this.supplierCheck5 = 1 : (this.supplierCheck5 = 0, this.taxNum = '')
|
|
this.EMail ? this.supplierCheck6 = 1 : (this.supplierCheck6 = 0, this.EMail = '')
|
|
this.address ? this.supplierCheck7 = 1 : (this.supplierCheck7 = 0, this.address = '')
|
|
this.account ? this.supplierCheck8 = 1 : (this.supplierCheck8 = 0, this.account = '')
|
|
this.openingBank ? this.supplierCheck9 = 1 : (this.supplierCheck9 = 0, this.openingBank = '')
|
|
this.phone ? this.supplierCheck10 = 1 : (this.supplierCheck10 = 0, this.phone = '')
|
|
this.fax ? this.supplierCheck11 = 1 : (this.supplierCheck11 = 0, this.fax = '')
|
|
this.goodTime ? this.supplierCheck12 = 1 : (this.supplierCheck12 = 0, this.goodTime = '')
|
|
searchSupplier(this.supplierCheck1, this.supplierName, this.supplierCheck2, this.enterpriseNature, this.supplierCheck3, this.createDate, this.supplierCheck4, this.registeredCapital, this.supplierCheck5, this.taxNum, this.supplierCheck6, this.EMail, this.supplierCheck7, this.address, this.supplierCheck8, this.account, this.supplierCheck9, this.openingBank, this.supplierCheck10, this.phone, this.supplierCheck11, this.fax, this.supplierCheck12, this.goodTime).then(response => {
|
|
this.tableData01 = response.data
|
|
})
|
|
},
|
|
showSupplierDetail(row) {
|
|
this.form2.供应商流水号 = row.供应商流水号
|
|
this.form2.供应商名称 = row.供应商名称
|
|
this.supplierValue = row.供应商流水号
|
|
this.supplierName = row.供应商名称
|
|
this.enterpriseNature = row.企业性质
|
|
this.createDate = row.创立日期
|
|
this.registeredCapital = row.注册资本
|
|
this.taxNum = row.税号
|
|
this.EMail = row.电子信箱
|
|
this.address = row.地址
|
|
this.account = row.帐号
|
|
this.openingBank = row.开户行
|
|
this.phone = row.电话号码
|
|
this.fax = row.传真
|
|
this.goodTime = row.货期
|
|
},
|
|
emptySupplierDetail() {
|
|
this.supplierValue = ''
|
|
this.supplierName = ''
|
|
this.enterpriseNature = ''
|
|
this.createDate = ''
|
|
this.registeredCapital = ''
|
|
this.taxNum = ''
|
|
this.EMail = ''
|
|
this.address = ''
|
|
this.account = ''
|
|
this.openingBank = ''
|
|
this.phone = ''
|
|
this.fax = ''
|
|
this.goodTime = ''
|
|
},
|
|
submitSelectSupplier() { // 确定选择供应商
|
|
this.dialogVisible1 = false
|
|
},
|
|
searchTable3(row) { // 查询离线合同明细
|
|
this.stipulateArrivalTime = row.规定到货时间.split(' ')[0]
|
|
this.payMethodName = row.付款方式内容
|
|
this.offlineContractNum = row.离线合同流水号
|
|
searchMateriel(this.offlineContractNum).then(response => {
|
|
this.tableData3 = response.data
|
|
})
|
|
this.textArea = row.合同文本
|
|
if (parseInt(row.离线合同状态) !== 1) { // 是否未编辑模式
|
|
this.disable = true
|
|
} else {
|
|
this.disable = false
|
|
}
|
|
},
|
|
getSummaries(param) { // 合计
|
|
const { columns, data } = param
|
|
const sums = []
|
|
columns.forEach((column, index) => {
|
|
if (index === 0) {
|
|
sums[index] = '总价'
|
|
} else if (index === 7) {
|
|
const values = data.map(item => Number(parseFloat(item['单价']) * parseInt(item['数量'])))
|
|
if (!values.every(value => isNaN(value))) {
|
|
sums[index] = values.reduce((prev, curr) => {
|
|
const value = Number(curr)
|
|
if (!isNaN(value)) {
|
|
return prev + curr
|
|
} else {
|
|
return prev
|
|
}
|
|
}, 0)
|
|
sums[index] += ' 元'
|
|
} else {
|
|
sums[index] = 'N/A'
|
|
}
|
|
}
|
|
})
|
|
return sums
|
|
},
|
|
addMateriel() { // 将物料选入离线合同
|
|
addMateriel(this.offlineContractNum, this.materielGroup).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('选入成功')
|
|
searchMateriel(this.offlineContractNum).then(response => {
|
|
this.tableData3 = response.data
|
|
})
|
|
} else { this.$message.error('选入失败') }
|
|
})
|
|
},
|
|
deleteMateriel(row) { // 移除物料
|
|
this.$confirm('确定移除该物料?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
deleteMateriel(row.离线合同明细流水号).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('移除成功')
|
|
searchMateriel(this.offlineContractNum).then(response => {
|
|
this.tableData3 = response.data
|
|
})
|
|
} else { this.$message.error('移除失败') }
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '已取消移除'
|
|
})
|
|
})
|
|
},
|
|
doneOfflineContact() { // 生成离线合同
|
|
this.$confirm('确定生成合同?', '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.totalPrice = 0
|
|
this.partGroup = []
|
|
this.numGroup = []
|
|
this.priceGroup = []
|
|
for (let i = 0; i < this.tableData3.length; i++) {
|
|
this.totalPrice += this.tableData3[i].数量 * this.tableData3[i].单价
|
|
this.partGroup.push(this.tableData3[i].离线合同明细流水号)
|
|
this.numGroup.push(this.tableData3[i].数量)
|
|
this.priceGroup.push(this.tableData3[i].单价)
|
|
}
|
|
doneOfflineContact(this.offlineContractNum, this.totalPrice, this.textArea, this.partGroup, this.numGroup, this.priceGroup).then(response => {
|
|
if (response.data[0].result === '1') {
|
|
this.$message.success('离线合同生成成功')
|
|
this.searchTable2()
|
|
searchMateriel(this.offlineContractNum).then(response => {
|
|
this.tableData3 = response.data
|
|
})
|
|
} else { this.$message.error('离线合同生成失败') }
|
|
})
|
|
}).catch(() => {
|
|
this.$message({
|
|
type: 'info',
|
|
message: '已取消操作'
|
|
})
|
|
})
|
|
},
|
|
searchDemo(row = this.paramRow) {
|
|
for (let i = 0; i < this.payMethod.length; i++) {
|
|
if (this.payMethod[i].value === this.payMethodValue) {
|
|
this.payMethodName = this.payMethod[i].label
|
|
}
|
|
}
|
|
this.paramRow = row
|
|
if (!this.disable) {
|
|
searchContractDemo(this.paramRow.合同模板流水号).then(response => {
|
|
this.textArea = response.data[0].合同模板内容.replace('stipulateArrivalTime', this.stipulateArrivalTime).replace('payMethodName', this.payMethodName)
|
|
})
|
|
}
|
|
},
|
|
payMethodChange() { // 付款方式改变
|
|
for (let i = 0; i < this.payMethod.length; i++) {
|
|
if (this.payMethod[i].value === this.form2.付款方式) {
|
|
this.payMethodName = this.payMethod[i].label
|
|
}
|
|
}
|
|
const payTimeNum = this.payMethodName.split(':')
|
|
switch (payTimeNum.length) {
|
|
case 1:
|
|
this.disable2 = true
|
|
this.disable3 = true
|
|
this.disable4 = true
|
|
break
|
|
case 2:
|
|
this.disable2 = false
|
|
this.disable3 = true
|
|
this.disable4 = true
|
|
break
|
|
case 3:
|
|
this.disable2 = false
|
|
this.disable3 = false
|
|
this.disable4 = true
|
|
break
|
|
case 4:
|
|
this.disable2 = false
|
|
this.disable3 = false
|
|
this.disable4 = false
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-card{
|
|
margin-bottom: 15px;
|
|
}
|
|
.el-date-editor{
|
|
width:150px;
|
|
}
|
|
.el-select{
|
|
width:200px
|
|
}
|
|
.el-input{
|
|
width:200px
|
|
}
|
|
span{
|
|
margin: 10px 0 10px 10px;
|
|
}
|
|
.el-tag{
|
|
margin: 0
|
|
}
|
|
.searchForm .el-form-item{
|
|
margin-bottom: 5px;
|
|
}
|
|
.edit-input {
|
|
padding-right: 100px;
|
|
}
|
|
.cancel-btn {
|
|
position: absolute;
|
|
right: 15px;
|
|
top: 5px;
|
|
}
|
|
</style>
|