|
@@ -29,25 +29,25 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
-<!-- <el-form-item label="货物品名" prop="fGoodsid">-->
|
|
|
-<!-- <el-select-->
|
|
|
-<!-- v-model="queryParams.fGoodsid"-->
|
|
|
-<!-- filterable-->
|
|
|
-<!-- remote-->
|
|
|
-<!-- clearable-->
|
|
|
-<!-- style="width: 200px"-->
|
|
|
-<!-- :remote-method="goodsRemoteMethod"-->
|
|
|
-<!-- @keyup.enter.native="handleQuery"-->
|
|
|
-<!-- placeholder="请输入货物品名"-->
|
|
|
-<!-- >-->
|
|
|
-<!-- <el-option-->
|
|
|
-<!-- v-for="(dict, index) in goodsOptions"-->
|
|
|
-<!-- :key="index.fId"-->
|
|
|
-<!-- :label="dict.fName"-->
|
|
|
-<!-- :value="dict.fId"-->
|
|
|
-<!-- ></el-option>-->
|
|
|
-<!-- </el-select>-->
|
|
|
-<!-- </el-form-item>-->
|
|
|
+ <!-- <el-form-item label="货物品名" prop="fGoodsid">-->
|
|
|
+ <!-- <el-select-->
|
|
|
+ <!-- v-model="queryParams.fGoodsid"-->
|
|
|
+ <!-- filterable-->
|
|
|
+ <!-- remote-->
|
|
|
+ <!-- clearable-->
|
|
|
+ <!-- style="width: 200px"-->
|
|
|
+ <!-- :remote-method="goodsRemoteMethod"-->
|
|
|
+ <!-- @keyup.enter.native="handleQuery"-->
|
|
|
+ <!-- placeholder="请输入货物品名"-->
|
|
|
+ <!-- >-->
|
|
|
+ <!-- <el-option-->
|
|
|
+ <!-- v-for="(dict, index) in goodsOptions"-->
|
|
|
+ <!-- :key="index.fId"-->
|
|
|
+ <!-- :label="dict.fName"-->
|
|
|
+ <!-- :value="dict.fId"-->
|
|
|
+ <!-- ></el-option>-->
|
|
|
+ <!-- </el-select>-->
|
|
|
+ <!-- </el-form-item>-->
|
|
|
<el-form-item label="制单部门" prop="fDeptid">
|
|
|
<el-input
|
|
|
v-model="queryParams.fDeptid"
|
|
@@ -109,6 +109,7 @@
|
|
|
:disabled="single"
|
|
|
@click="handleUpdate"
|
|
|
v-hasPermi="['warehouseBusiness:agreement:edit']"
|
|
|
+ v-if="form.fBillstatus === '2' || form.fBillstatus === '3'"
|
|
|
>修改
|
|
|
</el-button>
|
|
|
</el-col>
|
|
@@ -140,7 +141,7 @@
|
|
|
<el-table-column type="selection" width="55" align="center"/>
|
|
|
<el-table-column label="合同编号" align="center" prop="fContractno"/>
|
|
|
<el-table-column label="客户名称" align="center" prop="fCorpid"/>
|
|
|
-<!-- <el-table-column label="货物品名" align="center" prop="fGoodsid"/>-->
|
|
|
+ <!-- <el-table-column label="货物品名" align="center" prop="fGoodsid"/>-->
|
|
|
<el-table-column label="有效期起" align="center" prop="fBegindate" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.fBegindate, '{y}-{m}-{d}') }}</span>
|
|
@@ -152,21 +153,50 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column label="状态" align="center" prop="fId" />-->
|
|
|
- <el-table-column label="状态" align="center" prop="fBillstatus">
|
|
|
+ <el-table-column label="是否启用" align="center" prop="fStatus">
|
|
|
<template slot-scope="scope">
|
|
|
<el-switch
|
|
|
- v-model="scope.row.fBillstatus"
|
|
|
+ v-model="scope.row.fStatus"
|
|
|
active-value="0"
|
|
|
inactive-value="1"
|
|
|
@change="handleStatusChange(scope.row)"
|
|
|
></el-switch>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="状态" align="center" prop="fBillstatus">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.fBillstatus == '1'">保存</span>
|
|
|
+ <span v-else-if="scope.row.fBillstatus == '2'">暂存</span>
|
|
|
+ <span v-else-if="scope.row.fBillstatus == '3'">审批驳回</span>
|
|
|
+ <span v-else-if="scope.row.fBillstatus == '4'">提交审核</span>
|
|
|
+ <span v-else-if="scope.row.fBillstatus == '5'">审核中</span>
|
|
|
+ <span v-else-if="scope.row.fBillstatus == '6'">审核完成</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
+ icon="el-icon-view"
|
|
|
+ @click="check(scope.row,0)"
|
|
|
+ v-if="scope.row.fBillstatus == 6"
|
|
|
+ v-hasPermi="['warehouseBusiness:agreement:edit']"
|
|
|
+ >查看
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-view"
|
|
|
+ @click="check(scope.row,1)"
|
|
|
+ v-hasPermi="['finance:contrast:edit']"
|
|
|
+ v-if="scope.row.fBillstatus == 4 || scope.row.fBillstatus == 5"
|
|
|
+ >审批进度
|
|
|
+ </el-button>
|
|
|
+
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
icon="el-icon-edit"
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
v-hasPermi="['warehouseBusiness:agreement:edit']"
|
|
@@ -201,12 +231,15 @@
|
|
|
/>
|
|
|
|
|
|
<!-- 添加或修改仓储费对话框 -->
|
|
|
- <el-dialog :title="title" :visible.sync="open" width="65%" append-to-body :before-close="handleClose" :close-on-click-modal="false">
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="65%" append-to-body :before-close="handleClose"
|
|
|
+ :close-on-click-modal="false" :show-close="false"
|
|
|
+ >
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px"
|
|
|
style="display: flex;flex-wrap: wrap;"
|
|
|
>
|
|
|
<el-form-item label="客户名称" prop="fCorpid">
|
|
|
<el-select
|
|
|
+ :disabled="notChange"
|
|
|
v-model="form.fCorpid"
|
|
|
filterable
|
|
|
remote
|
|
@@ -232,6 +265,7 @@
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
|
|
v-model="form.fBegindate"
|
|
|
type="date"
|
|
|
+ :disabled="notChange"
|
|
|
value-format="yyyy-MM-dd"
|
|
|
placeholder="选择有效期起"
|
|
|
>
|
|
@@ -240,6 +274,7 @@
|
|
|
<el-form-item label="有效期至" prop="fEnddate">
|
|
|
<el-date-picker clearable size="small" style="width: 200px"
|
|
|
v-model="form.fEnddate"
|
|
|
+ :disabled="notChange"
|
|
|
type="date"
|
|
|
value-format="yyyy-MM-dd"
|
|
|
placeholder="选择有效期至"
|
|
@@ -247,11 +282,11 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="合同编号" prop="fContractno">
|
|
|
- <el-input v-model="form.fContractno" placeholder="请输入合同编号" style="width: 200px"/>
|
|
|
+ <el-input v-model="form.fContractno" :disabled="notChange" placeholder="请输入合同编号" style="width: 200px"/>
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="商品类别" prop="tPackages">
|
|
|
- <el-select v-model="form.tPackages" placeholder="请选择商品类别">
|
|
|
+ <el-select v-model="form.tPackages" :disabled="notChange" placeholder="请选择商品类别">
|
|
|
<el-option
|
|
|
v-for="dict in fTypeidOptions"
|
|
|
:key="dict.dictValue"
|
|
@@ -262,13 +297,15 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
- <el-button type="primary">请 核</el-button>
|
|
|
+ <el-button type="primary" @click="submit" :disabled="notChange" v-if="form.fBillstatus < 4">请 核</el-button>
|
|
|
+ <el-button type="success" @click="BackSubmit" v-if="form.fBillstatus === '6'">撤销请核</el-button>
|
|
|
+
|
|
|
<div class="dialogTableTitle flex a-center jlr">
|
|
|
<h2>标题</h2>
|
|
|
- <el-button @click="getList_s()">新增</el-button>
|
|
|
+ <el-button @click="getList_s()" :disabled="notChange">新增</el-button>
|
|
|
</div>
|
|
|
<el-table v-loading="loading_s" :data="agreementitemsList" @selection-change="handleSelectionChange">
|
|
|
-<!-- <el-table-column type="selection" width="55" align="center"/>-->
|
|
|
+ <!-- <el-table-column type="selection" width="55" align="center"/>-->
|
|
|
<el-table-column label="行号" align="center" type="index"/>
|
|
|
|
|
|
<el-table-column
|
|
@@ -303,6 +340,7 @@
|
|
|
placeholder="请输入开始天数"
|
|
|
clearable
|
|
|
size="small"
|
|
|
+ :disabled="notChange"
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -313,6 +351,7 @@
|
|
|
placeholder="请输入结束天数"
|
|
|
clearable
|
|
|
size="small"
|
|
|
+ :disabled="notChange"
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -323,6 +362,7 @@
|
|
|
placeholder="请输入单价"
|
|
|
clearable
|
|
|
size="small"
|
|
|
+ :disabled="notChange"
|
|
|
/>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="录入人" align="center">
|
|
@@ -385,8 +425,14 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
+ <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
|
|
|
+ <approval-comments v-if="addOrUpdateVisib" ref="ApprovalComments" @refreshDataList="returnData"></approval-comments>
|
|
|
+ <el-button v-if="approve === true" @click="goApproval">审批</el-button>
|
|
|
+ <el-button type="danger" :disabled="disappear" @click="approvalRevocation" v-if="form.fBillstatus === '4'">撤销审批</el-button>
|
|
|
+ <el-button type="info" v-if="notChange" @click="addOrUpdateHandle()">查看审批流</el-button>
|
|
|
+ <el-button type="primary" @click="submitForm" :disabled="notChange">确 定</el-button>
|
|
|
+ <el-button v-if="cancelButton === true" @click="cancel">取 消</el-button>
|
|
|
+ <el-button v-if="cancelButton === false" @click="homePage">取消</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -395,6 +441,9 @@
|
|
|
<script>
|
|
|
import moment from 'moment'
|
|
|
import {
|
|
|
+ revocation,
|
|
|
+ ReturnCheck,
|
|
|
+ PleaseCheck,
|
|
|
listAgreements,
|
|
|
getAgreement,
|
|
|
delAgreement,
|
|
@@ -403,7 +452,7 @@ import {
|
|
|
updateAgreement_s,
|
|
|
exportAgreement,
|
|
|
listAgreementitems,
|
|
|
- queryUserVal,
|
|
|
+ queryUserVal
|
|
|
} from '@/api/warehouseBusiness/agreement'
|
|
|
import { listCorps } from '@/api/basicdata/corps'
|
|
|
import { listGoods } from '@/api/basicdata/goods'
|
|
@@ -411,32 +460,46 @@ import { delWarehousebills } from '@/api/warehouseBusiness/warehouseInStock'
|
|
|
import { listGoodsTransfer } from '@/api/warehouseBusiness/goodsTransfer'
|
|
|
import { listFees } from '@/api/basicdata/fees'
|
|
|
import { changeUserStatus } from '@/api/system/user'
|
|
|
+import AddOrUpdate from '@/views/viewApproval'
|
|
|
+import ApprovalComments from '@/views/startApproval'
|
|
|
+import Global from '@/layout/components/global'
|
|
|
// import { listUser, queryUserVal } from '@/api/system/user'
|
|
|
|
|
|
export default {
|
|
|
name: 'Agreement',
|
|
|
- components: {},
|
|
|
+ components: {
|
|
|
+ AddOrUpdate,
|
|
|
+ ApprovalComments
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
+ cancelButton:true,
|
|
|
+ // 审批状态
|
|
|
+ approve:false,
|
|
|
+ addOrUpdateVisible: false,
|
|
|
+ addOrUpdateVisib:false,
|
|
|
+ disappear: false,
|
|
|
+ notChange: false,
|
|
|
dataList: '',
|
|
|
- value_s:[],
|
|
|
+ value_s: [],
|
|
|
// 遮罩层
|
|
|
loading: true,
|
|
|
loading_s: false,
|
|
|
browseStatus: false,
|
|
|
// 计价单位
|
|
|
jFeetunitOptions: [
|
|
|
- { dictLabel: "件数", dictValue: "1" },
|
|
|
- { dictLabel: "毛重", dictValue: "2" },
|
|
|
- { dictLabel: "净重", dictValue: "3" },
|
|
|
- { dictLabel: "尺码", dictValue: "4" },
|
|
|
- { dictLabel: "固定", dictValue: "5" },
|
|
|
+ { dictLabel: '件数', dictValue: '1' },
|
|
|
+ { dictLabel: '毛重', dictValue: '2' },
|
|
|
+ { dictLabel: '净重', dictValue: '3' },
|
|
|
+ { dictLabel: '尺码', dictValue: '4' },
|
|
|
+ { dictLabel: '固定', dictValue: '5' }
|
|
|
],
|
|
|
- goodsOptions:[],
|
|
|
+ agreementId: 310,
|
|
|
+ goodsOptions: [],
|
|
|
fTypeidOptions: [],
|
|
|
// 选中数组
|
|
|
ids: [],
|
|
|
- deptName:'',
|
|
|
+ deptName: '',
|
|
|
// 客户(客户数据)
|
|
|
fMblnoOptions: [],
|
|
|
fFeeunitidOptions: [],
|
|
@@ -453,7 +516,7 @@ export default {
|
|
|
agreementList: [],
|
|
|
// 弹出层标题
|
|
|
title: '',
|
|
|
- add:'',
|
|
|
+ add: '',
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
// 结算方式,也可以从表t_stltypes中下拉选择,存储id,显示name字典
|
|
@@ -464,6 +527,8 @@ export default {
|
|
|
fTrademodeidOptions: [],
|
|
|
// 仓储费明细表表格数据
|
|
|
agreementitemsList: [],
|
|
|
+ // 操作人
|
|
|
+ Operator: '',
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
@@ -480,7 +545,8 @@ export default {
|
|
|
fFreedays: null,
|
|
|
fBegindate: null,
|
|
|
fEnddate: null,
|
|
|
- fBillstatus: null
|
|
|
+ fBillstatus: null,
|
|
|
+ fStatus: null
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
@@ -510,30 +576,258 @@ export default {
|
|
|
this.getDicts('data_trademodes').then(response => {
|
|
|
this.fTrademodeidOptions = response.data
|
|
|
})
|
|
|
- this.getDicts("data_goods_category").then(response => {
|
|
|
- this.fTypeidOptions = response.data;
|
|
|
- });
|
|
|
+ this.getDicts('data_goods_category').then(response => {
|
|
|
+ this.fTypeidOptions = response.data
|
|
|
+ })
|
|
|
// this.getDicts("data_unitfees").then(response => {
|
|
|
// this.jFeetunitOptions = response.data;
|
|
|
// });
|
|
|
},
|
|
|
+ activated(){
|
|
|
+ this.Jump()
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ homepaGe(){
|
|
|
+ let view = {
|
|
|
+ fullPath: "/agreement/agreementStorage",
|
|
|
+ hash: "",
|
|
|
+ matched: Array(2),
|
|
|
+ meta: Object,
|
|
|
+ name: "AgreementStorage",
|
|
|
+ params: Object,
|
|
|
+ path: "/agreement/agreementStorage",
|
|
|
+ query: Object,
|
|
|
+ title: "仓储费协议"
|
|
|
+ }
|
|
|
+ this.$router.push({ path: '/index'})
|
|
|
+ this.$store.dispatch('tagsView/delView', view).then(({ visitedViews }) => {
|
|
|
+ if (this.isActive(view)) {
|
|
|
+ this.toLastView(visitedViews, view)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ Global.$emit("removeCache", "closeSelectedTag", view);
|
|
|
+ },
|
|
|
+ homePage() {
|
|
|
+ this.open = false
|
|
|
+ let view = {
|
|
|
+ fullPath: "/agreement/agreementStorage",
|
|
|
+ hash: "",
|
|
|
+ matched: Array(2),
|
|
|
+ meta: Object,
|
|
|
+ name: "AgreementStorage",
|
|
|
+ params: Object,
|
|
|
+ path: "/agreement/agreementStorage",
|
|
|
+ query: Object,
|
|
|
+ title: "仓储费协议"
|
|
|
+ }
|
|
|
+ this.$router.push({ path: '/index' })
|
|
|
+ this.$store.dispatch('tagsView/delView', view).then(({ visitedViews }) => {
|
|
|
+ console.log(visitedViews)
|
|
|
+ if (this.isActive(view)) {
|
|
|
+ this.toLastView(visitedViews, view)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ Global.$emit("removeCache", "closeSelectedTag", view);
|
|
|
+ },
|
|
|
+ Jump(){
|
|
|
+ this.approval = this.$route.query.data
|
|
|
+ if(this.approval) {
|
|
|
+
|
|
|
+ this.approval = JSON.parse(this.approval)
|
|
|
+ this.hide = false
|
|
|
+ this.open = true
|
|
|
+ this.notChange = true
|
|
|
+ this.approve = true
|
|
|
+ this.disappear = true
|
|
|
+ this.cancelButton = false
|
|
|
+ this.reset()
|
|
|
+ getAgreement(this.approval.billId).then(response => {
|
|
|
+ console.log(response)
|
|
|
+ this.deptName = response.data.dept.deptName
|
|
|
+ this.form = response.data.tWarehouseAgreement
|
|
|
+ this.fMblnoOptions = response.data.corps
|
|
|
+ this.agreementitemsList = response.data.tWarehouseAgreementitems
|
|
|
+ for (let item in this.agreementitemsList) {
|
|
|
+ this.$set(this.agreementitemsList[item], 'fFeeunitid', this.agreementitemsList[item].fFeeunitid + '')
|
|
|
+ // this.fWRemoteMethod(this.agreementitemsList[item].fFeeid)
|
|
|
+ }
|
|
|
+ // console.log(response.data.feesList)
|
|
|
+ this.fWbuOptions = response.data.feesList
|
|
|
+ // this.add = row
|
|
|
+ console.log(JSON.stringify(this.agreementitemsList))
|
|
|
+ this.open = true
|
|
|
+ this.browseStatus = true
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ goApproval(){
|
|
|
+ this.addOrUpdateVisib = true
|
|
|
+ console.log(this.approval)
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.ApprovalComments.init(this.form.fId,this.agreementId)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ returnData(){
|
|
|
+ this.addOrUpdateVisib = false
|
|
|
+ this.open = false
|
|
|
+ this.homepaGe()
|
|
|
+
|
|
|
+ },
|
|
|
+ getDataList(){
|
|
|
+ this.addOrUpdateVisible = false
|
|
|
+ },
|
|
|
+ // 查看审批流
|
|
|
+ addOrUpdateHandle() {
|
|
|
+ this.addOrUpdateVisible = true
|
|
|
+ this.addOrUpdateVisib = false
|
|
|
+ let id = '448'
|
|
|
+ let actId = '110'
|
|
|
+ console.log(this.form.fId)
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.addOrUpdate.init(this.form.fId, this.agreementId)
|
|
|
+ })
|
|
|
+ },
|
|
|
+ register() {
|
|
|
+ queryUserVal().then((response) => {
|
|
|
+ this.Lander = response.user.userName
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 查看按钮
|
|
|
+ check(row, res) {
|
|
|
+ this.notChange = true
|
|
|
+ this.browseStatus = true
|
|
|
+ getAgreement(row.fId).then(response => {
|
|
|
+ console.log(response)
|
|
|
+ this.Operator = response.data.corps.createBy
|
|
|
+ console.log(response.data.corps.createBy)
|
|
|
+ console.log(response)
|
|
|
+ this.deptName = response.data.dept.deptName
|
|
|
+ this.form = response.data.tWarehouseAgreement
|
|
|
+ this.fMblnoOptions = response.data.corps
|
|
|
+ this.agreementitemsList = response.data.tWarehouseAgreementitems
|
|
|
+ for (let item in this.agreementitemsList) {
|
|
|
+ this.$set(this.agreementitemsList[item], 'fFeeunitid', this.agreementitemsList[item].fFeeunitid + '')
|
|
|
+ // this.fWRemoteMethod(this.agreementitemsList[item].fFeeid)
|
|
|
+ }
|
|
|
+ // console.log(response.data.feesList)
|
|
|
+ this.fWbuOptions = response.data.feesList
|
|
|
+ this.add = row
|
|
|
+ console.log(JSON.stringify(this.agreementitemsList))
|
|
|
+ this.open = true
|
|
|
+ this.disappear = true
|
|
|
+ this.title = '修改仓储费'
|
|
|
+ if (res == 1) {
|
|
|
+ this.notChange = true
|
|
|
+ if (this.Operator == this.Lander) {
|
|
|
+ this.disappear = false
|
|
|
+ this.reset()
|
|
|
+ const fId = row.fId || this.ids
|
|
|
+ // getAgreement(row.fId).then(response => {
|
|
|
+ // console.log(response)
|
|
|
+ // this.deptName = response.data.dept.deptName
|
|
|
+ // this.form = response.data.tWarehouseAgreement
|
|
|
+ // this.fMblnoOptions = response.data.corps
|
|
|
+ // this.agreementitemsList = response.data.tWarehouseAgreementitems
|
|
|
+ // for (let item in this.agreementitemsList) {
|
|
|
+ // this.$set(this.agreementitemsList[item], 'fFeeunitid', this.agreementitemsList[item].fFeeunitid + '')
|
|
|
+ // // this.fWRemoteMethod(this.agreementitemsList[item].fFeeid)
|
|
|
+ // }
|
|
|
+ // // console.log(response.data.feesList)
|
|
|
+ // this.fWbuOptions = response.data.feesList
|
|
|
+ // this.add = row
|
|
|
+ // console.log(JSON.stringify(this.agreementitemsList))
|
|
|
+ // this.open = true
|
|
|
+ // })
|
|
|
+ }else {
|
|
|
+ this.notChange = true
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ this.notChange = true
|
|
|
+ this.reset()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ const fId = row.fId || this.ids
|
|
|
+ getAgreement(row.fId).then(response => {
|
|
|
+ console.log(response)
|
|
|
+ this.deptName = response.data.dept.deptName
|
|
|
+ this.form = response.data.tWarehouseAgreement
|
|
|
+ this.fMblnoOptions = response.data.corps
|
|
|
+ this.agreementitemsList = response.data.tWarehouseAgreementitems
|
|
|
+ for (let item in this.agreementitemsList) {
|
|
|
+ this.$set(this.agreementitemsList[item], 'fFeeunitid', this.agreementitemsList[item].fFeeunitid + '')
|
|
|
+ // this.fWRemoteMethod(this.agreementitemsList[item].fFeeid)
|
|
|
+ }
|
|
|
+ // console.log(response.data.feesList)
|
|
|
+ this.fWbuOptions = response.data.feesList
|
|
|
+ this.add = row
|
|
|
+ console.log(JSON.stringify(this.agreementitemsList))
|
|
|
+ this.open = true
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //撤销审批
|
|
|
+ approvalRevocation() {
|
|
|
+ let data = {
|
|
|
+ id: this.form.fId,
|
|
|
+ actId: this.agreementId,
|
|
|
+ billId: this.form.fId
|
|
|
+ }
|
|
|
+ console.log(this.queryParams)
|
|
|
+ revocation(data).then(data => {
|
|
|
+ console.log(data)
|
|
|
+ if (data.code === 200) {
|
|
|
+ this.$message.success('撤销成功')
|
|
|
+ this.open = false
|
|
|
+ this.getList()
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 撤销请核
|
|
|
+ BackSubmit() {
|
|
|
+ console.log(this.form)
|
|
|
+ this.form.fBillstatus = '1'
|
|
|
+ let formDate = new window.FormData()
|
|
|
+ formDate.append('agreement', JSON.stringify(this.form))
|
|
|
+ formDate.append('agreementitems', JSON.stringify(this.agreementitemsList))
|
|
|
+ console.log(formDate)
|
|
|
+ ReturnCheck(formDate).then(response => {
|
|
|
+ this.open = false
|
|
|
+ this.msgSuccess('操作成功')
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 请核按钮
|
|
|
+ submit() {
|
|
|
+ if (this.agreementitemsList.length !== 0) {
|
|
|
+ this.form.fBillstatus = '4'
|
|
|
+ let formData = new window.FormData()
|
|
|
+ // 附件数据
|
|
|
+ formData.append('agreement', JSON.stringify(this.form))
|
|
|
+ formData.append('agreementitems', JSON.stringify(this.agreementitemsList))
|
|
|
+ PleaseCheck(formData).then(response => {
|
|
|
+ this.msgSuccess('请核成功')
|
|
|
+ this.open = false
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ this.$message.error('仓储费协议明细为空,无法操作')
|
|
|
+ }
|
|
|
+ },
|
|
|
// 仓储费状态修改
|
|
|
handleStatusChange(row) {
|
|
|
- let text = row.fBillstatus === "0" ? "启用" : "停用";
|
|
|
- this.$confirm('确认要"' + text + '""' + row.fCorpid + '"用户吗?', "警告", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
+ let text = row.fBillstatus === '0' ? '启用' : '停用'
|
|
|
+ this.$confirm('确认要"' + text + '""' + row.fCorpid + '"用户吗?', '警告', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
}).then(function() {
|
|
|
- return updateAgreement_s(row.fId, row.fBillstatus);
|
|
|
+ return updateAgreement_s(row.fId, row.fBillstatus)
|
|
|
}).then(() => {
|
|
|
- this.msgSuccess(text + "成功");
|
|
|
+ this.msgSuccess(text + '成功')
|
|
|
}).catch(function() {
|
|
|
- row.fBillstatus = row.fBillstatus === "0" ? "1" : "0";
|
|
|
- });
|
|
|
+ row.fBillstatus = row.fBillstatus === '0' ? '1' : '0'
|
|
|
+ })
|
|
|
},
|
|
|
- test_s(){
|
|
|
+ test_s() {
|
|
|
console.log(this.agreementitemsList)
|
|
|
},
|
|
|
/** 创建仓储费明细表列表 */
|
|
@@ -542,21 +836,21 @@ export default {
|
|
|
queryUserVal().then((response) => {
|
|
|
this.agreementitemsList.push({
|
|
|
//行号
|
|
|
- fLineno:'',
|
|
|
+ fLineno: '',
|
|
|
//计价单位
|
|
|
- fFeeunitid:'',
|
|
|
+ fFeeunitid: '',
|
|
|
//费用名称
|
|
|
- fFeeid:'',
|
|
|
+ fFeeid: '',
|
|
|
//开始天数
|
|
|
- fFromdays:'',
|
|
|
+ fFromdays: '',
|
|
|
//结束天数
|
|
|
- fEndays:'',
|
|
|
+ fEndays: '',
|
|
|
//单价
|
|
|
fPrice: '',
|
|
|
//录入人
|
|
|
- createBy:response.user.userName,
|
|
|
+ createBy: response.user.userName,
|
|
|
//创建时间
|
|
|
- createTime:moment(Date.parse(new Date())).format("YYYY-MM-DD HH:mm:ss")
|
|
|
+ createTime: moment(Date.parse(new Date())).format('YYYY-MM-DD HH:mm:ss')
|
|
|
})
|
|
|
// this.$set("deptName", response.dept.deptName);
|
|
|
this.deptName = response.dept.deptName
|
|
@@ -566,8 +860,7 @@ export default {
|
|
|
// this.$set(this.agreementitemsList, "createBy", response.user.userName);
|
|
|
//格式化时间戳
|
|
|
// this.$set(this.agreementitemsList, "createTime", moment(Date.parse(new Date())).format("YYYY-MM-DD HH:mm:ss"));
|
|
|
- });
|
|
|
-
|
|
|
+ })
|
|
|
|
|
|
listAgreementitems(this.queryParams).then(response => {
|
|
|
console.log(response)
|
|
@@ -575,17 +868,17 @@ export default {
|
|
|
},
|
|
|
/* 远程模糊查询商品 */
|
|
|
goodsRemoteMethod(name) {
|
|
|
- if (name == null || name === "") {
|
|
|
- return false;
|
|
|
+ if (name == null || name === '') {
|
|
|
+ return false
|
|
|
}
|
|
|
- let queryParams = { pageNum: 1, pageSize: 10, fName: name };
|
|
|
+ let queryParams = { pageNum: 1, pageSize: 10, fName: name }
|
|
|
listGoods(queryParams).then((response) => {
|
|
|
- this.goodsOptions = response.rows;
|
|
|
- });
|
|
|
+ this.goodsOptions = response.rows
|
|
|
+ })
|
|
|
},
|
|
|
// 计价单位
|
|
|
fFeeunitidFormat(row, column) {
|
|
|
- return this.selectDictLabel(this.fFeeunitidOptions, row.fFeeunitid);
|
|
|
+ return this.selectDictLabel(this.fFeeunitidOptions, row.fFeeunitid)
|
|
|
},
|
|
|
/** 查询仓储费列表 */
|
|
|
getList() {
|
|
@@ -600,14 +893,14 @@ export default {
|
|
|
// 远程模糊查询费用名称
|
|
|
fWRemoteMethod(name) {
|
|
|
this.fWbuOptions = []
|
|
|
- if (name == null || name === "") {
|
|
|
- return false;
|
|
|
+ if (name == null || name === '') {
|
|
|
+ return false
|
|
|
}
|
|
|
- let queryParams = { pageNum: 1, pageSize: 10, fName: name };
|
|
|
+ let queryParams = { pageNum: 1, pageSize: 10, fName: name }
|
|
|
listFees(queryParams).then((response) => {
|
|
|
console.log(this.fWbuOptions)
|
|
|
this.fWbuOptions = response.rows
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
// 结算方式,也可以从表t_stltypes中下拉选择,存储id,显示name字典翻译
|
|
|
fStltypeidFormat(row, column) {
|
|
@@ -627,7 +920,7 @@ export default {
|
|
|
this.agreementitemsList = []
|
|
|
this.reset()
|
|
|
},
|
|
|
- handleClose(){
|
|
|
+ handleClose() {
|
|
|
this.open = false
|
|
|
this.agreementitemsList = []
|
|
|
this.reset()
|
|
@@ -665,22 +958,22 @@ export default {
|
|
|
},
|
|
|
// 变更计价单位
|
|
|
changeFeeUnit(row) {
|
|
|
- console.log(this.fCntqty);
|
|
|
- console.log(row);
|
|
|
+ console.log(this.fCntqty)
|
|
|
+ console.log(row)
|
|
|
if (!row.fFeeUnitid) {
|
|
|
- return false;
|
|
|
+ return false
|
|
|
}
|
|
|
- if (row.fFeeUnitid === "0") {
|
|
|
- this.$set(row, "fQty", this.fCntqty);
|
|
|
- } else if (row.fFeeUnitid === "1") {
|
|
|
- this.$set(row, "fQty", this.fGrossweight);
|
|
|
+ if (row.fFeeUnitid === '0') {
|
|
|
+ this.$set(row, 'fQty', this.fCntqty)
|
|
|
+ } else if (row.fFeeUnitid === '1') {
|
|
|
+ this.$set(row, 'fQty', this.fGrossweight)
|
|
|
}
|
|
|
if (row.fUnitprice) {
|
|
|
this.$set(
|
|
|
row,
|
|
|
- "fAmount",
|
|
|
+ 'fAmount',
|
|
|
parseFloat(Number(row.fUnitprice) * Number(row.fQty)).toFixed(2)
|
|
|
- );
|
|
|
+ )
|
|
|
}
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
@@ -698,6 +991,7 @@ export default {
|
|
|
handleAdd() {
|
|
|
this.reset()
|
|
|
this.open = true
|
|
|
+ this.notChange = false
|
|
|
this.title = '添加仓储费'
|
|
|
queryUserVal().then((response) => {
|
|
|
// this.$set("deptName", response.dept.deptName);
|
|
@@ -708,11 +1002,13 @@ export default {
|
|
|
// this.$set(this.agreementitemsList, "createBy", response.user.userName);
|
|
|
//格式化时间戳
|
|
|
// this.$set(this.agreementitemsList, "createTime", moment(Date.parse(new Date())).format("YYYY-MM-DD HH:mm:ss"));
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset()
|
|
|
+ this.notChange = false
|
|
|
+ this.browseStatus = false
|
|
|
const fId = row.fId || this.ids
|
|
|
getAgreement(fId).then(response => {
|
|
|
console.log(response)
|
|
@@ -734,14 +1030,14 @@ export default {
|
|
|
},
|
|
|
/** 远程模糊查询用户 */
|
|
|
corpsRemoteMethod(name) {
|
|
|
- if (name == null || name === "") {
|
|
|
- return false;
|
|
|
+ if (name == null || name === '') {
|
|
|
+ return false
|
|
|
}
|
|
|
- let queryParams = { pageNum: 1, pageSize: 10, fName: name, type: 1 };
|
|
|
+ let queryParams = { pageNum: 1, pageSize: 10, fName: name, type: 1 }
|
|
|
listCorps(queryParams).then((response) => {
|
|
|
- this.fMblnoOptions = response.rows;
|
|
|
- this.KHblnoOptions = response.rows;
|
|
|
- });
|
|
|
+ this.fMblnoOptions = response.rows
|
|
|
+ this.KHblnoOptions = response.rows
|
|
|
+ })
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
@@ -750,10 +1046,10 @@ export default {
|
|
|
if (valid) {
|
|
|
if (this.form.fId != null) {
|
|
|
updateAgreement(this.form).then(response => {
|
|
|
- let formData = new window.FormData();
|
|
|
+ let formData = new window.FormData()
|
|
|
// 附件数据
|
|
|
- formData.append("agreement",JSON.stringify(this.form))
|
|
|
- formData.append("agreementitems", JSON.stringify(this.agreementitemsList));
|
|
|
+ formData.append('agreement', JSON.stringify(this.form))
|
|
|
+ formData.append('agreementitems', JSON.stringify(this.agreementitemsList))
|
|
|
addAgreement(formData).then(response => {
|
|
|
this.msgSuccess('修改成功')
|
|
|
this.open = false
|
|
@@ -762,10 +1058,10 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
} else {
|
|
|
- let formData = new window.FormData();
|
|
|
+ let formData = new window.FormData()
|
|
|
// 附件数据
|
|
|
- formData.append("agreement",JSON.stringify(this.form))
|
|
|
- formData.append("agreementitems", JSON.stringify(this.agreementitemsList));
|
|
|
+ formData.append('agreement', JSON.stringify(this.form))
|
|
|
+ formData.append('agreementitems', JSON.stringify(this.agreementitemsList))
|
|
|
addAgreement(formData).then(response => {
|
|
|
this.msgSuccess('新增成功')
|
|
|
this.open = false
|
|
@@ -778,16 +1074,16 @@ export default {
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
- const fIds = row.fId || this.ids;
|
|
|
- this.$confirm('是否确认删除仓储费编号为"' + fIds + '"的数据项?', "警告", {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning"
|
|
|
+ const fIds = row.fId || this.ids
|
|
|
+ this.$confirm('是否确认删除仓储费编号为"' + fIds + '"的数据项?', '警告', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
}).then(function() {
|
|
|
- return delAgreement(fIds);
|
|
|
+ return delAgreement(fIds)
|
|
|
}).then(() => {
|
|
|
- this.getList();
|
|
|
- this.msgSuccess("删除成功");
|
|
|
+ this.getList()
|
|
|
+ this.msgSuccess('删除成功')
|
|
|
})
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
@@ -804,8 +1100,8 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
deleteRow(index, rows) {
|
|
|
- rows.splice(index, 1);
|
|
|
- },
|
|
|
+ rows.splice(index, 1)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|