|
@@ -22,8 +22,7 @@
|
|
|
action: () => openModal('add'),
|
|
|
},
|
|
|
]"
|
|
|
- @get-list="getList"
|
|
|
- >
|
|
|
+ @get-list="getList">
|
|
|
<!-- <template #amount="{ item }">
|
|
|
<div :style="'color: ' + (item.status === '10' ? '#04cb04;' : 'red;')">
|
|
|
<span style="padding-right: 4px">{{ item.currency }}</span>
|
|
@@ -41,31 +40,23 @@
|
|
|
<span v-if="item.status == 20">{{ item.amount }}</span>
|
|
|
</div>
|
|
|
</template>
|
|
|
+ <template #contractCodes="{ item }">
|
|
|
+ <div style="width: 100%">
|
|
|
+ <div v-if="item.contractCodes">
|
|
|
+ <div v-for="(contract, index) in item.contractCodes.split(',')" :key="index">
|
|
|
+ <a style="color: #409eff; cursor: pointer; word-break: break-all" @click="openDetails(contract)">{{ contract }}</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</byTable>
|
|
|
</div>
|
|
|
|
|
|
- <el-dialog
|
|
|
- :title="modalType == 'add' ? '添加流水' : '编辑流水'"
|
|
|
- v-if="dialogVisible"
|
|
|
- v-model="dialogVisible"
|
|
|
- width="600"
|
|
|
- >
|
|
|
- <byForm
|
|
|
- :formConfig="formConfig"
|
|
|
- :formOption="formOption"
|
|
|
- v-model="formData.data"
|
|
|
- :rules="rules"
|
|
|
- ref="submit"
|
|
|
- v-loading="loadingDialog"
|
|
|
- >
|
|
|
+ <el-dialog :title="modalType == 'add' ? '添加流水' : '编辑流水'" v-if="dialogVisible" v-model="dialogVisible" width="600">
|
|
|
+ <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="submit" v-loading="loadingDialog">
|
|
|
<template #transactionTime>
|
|
|
<div>
|
|
|
- <el-date-picker
|
|
|
- v-model="formData.data.transactionTime"
|
|
|
- type="datetime"
|
|
|
- placeholder="请选择交易时间"
|
|
|
- value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
- />
|
|
|
+ <el-date-picker v-model="formData.data.transactionTime" type="datetime" placeholder="请选择交易时间" value-format="YYYY-MM-DD HH:mm:ss" />
|
|
|
</div>
|
|
|
</template>
|
|
|
<template #money>
|
|
@@ -73,34 +64,15 @@
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="6">
|
|
|
<el-form-item prop="status">
|
|
|
- <el-select
|
|
|
- v-model="formData.data.status"
|
|
|
- placeholder="请选择"
|
|
|
- style="width: 100%"
|
|
|
- @change="changeStatus()"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in status"
|
|
|
- :key="item.value"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value"
|
|
|
- />
|
|
|
+ <el-select v-model="formData.data.status" placeholder="请选择" style="width: 100%" @change="changeStatus()">
|
|
|
+ <el-option v-for="item in status" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="6">
|
|
|
<el-form-item prop="currency">
|
|
|
- <el-select
|
|
|
- v-model="formData.data.currency"
|
|
|
- placeholder="请选择"
|
|
|
- style="width: 100%"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in accountCurrency"
|
|
|
- :key="item.value"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value"
|
|
|
- />
|
|
|
+ <el-select v-model="formData.data.currency" placeholder="请选择" style="width: 100%">
|
|
|
+ <el-option v-for="item in accountCurrency" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -113,8 +85,7 @@
|
|
|
style="width: 100%"
|
|
|
:precision="2"
|
|
|
:controls="false"
|
|
|
- :min="0"
|
|
|
- />
|
|
|
+ :min="0" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -124,13 +95,7 @@
|
|
|
<div>
|
|
|
<el-form-item prop="received">
|
|
|
<el-radio-group v-model="formData.data.received">
|
|
|
- <el-radio
|
|
|
- v-for="item in received"
|
|
|
- :key="item.value"
|
|
|
- :label="item.value"
|
|
|
- border
|
|
|
- >{{ item.label }}</el-radio
|
|
|
- >
|
|
|
+ <el-radio v-for="item in received" :key="item.value" :label="item.value" border>{{ item.label }}</el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
@@ -138,82 +103,35 @@
|
|
|
</byForm>
|
|
|
<template #footer>
|
|
|
<el-button @click="dialogVisible = false" size="large">取 消</el-button>
|
|
|
- <el-button type="primary" @click="submitForm()" size="large"
|
|
|
- >确 定</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" @click="submitForm()" size="large">确 定</el-button>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <el-dialog
|
|
|
- :title="'退税登记'"
|
|
|
- v-if="dialogVisibleOne"
|
|
|
- v-model="dialogVisibleOne"
|
|
|
- width="600"
|
|
|
- >
|
|
|
- <byForm
|
|
|
- :formConfig="formConfigOne"
|
|
|
- :formOption="formOption"
|
|
|
- v-model="formData.dataOne"
|
|
|
- :rules="rulesOne"
|
|
|
- ref="submitOne"
|
|
|
- v-loading="loadingDialog"
|
|
|
- >
|
|
|
+ <el-dialog :title="'退税登记'" v-if="dialogVisibleOne" v-model="dialogVisibleOne" width="600">
|
|
|
+ <byForm :formConfig="formConfigOne" :formOption="formOption" v-model="formData.dataOne" :rules="rulesOne" ref="submitOne" v-loading="loadingDialog">
|
|
|
<template #details>
|
|
|
<div style="width: 100%">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="handleAddRow"
|
|
|
- style="margin: 10px 0"
|
|
|
- >
|
|
|
- 添加
|
|
|
- </el-button>
|
|
|
+ <el-button type="primary" @click="handleAddRow" style="margin: 10px 0"> 添加 </el-button>
|
|
|
<el-table :data="formData.dataOne.taxRefundDetailsList">
|
|
|
<el-table-column prop="count" label="合同编号" min-width="150">
|
|
|
<template #default="{ row, $index }">
|
|
|
- <el-form-item
|
|
|
- :prop="'taxRefundDetailsList.' + $index + '.contractId'"
|
|
|
- :rules="rulesOne.contractId"
|
|
|
- :inline-message="true"
|
|
|
- >
|
|
|
- <el-select
|
|
|
- v-model="row.contractId"
|
|
|
- placeholder="请选择"
|
|
|
- filterable
|
|
|
- style="width: 100%"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in contractList"
|
|
|
- :label="item.code"
|
|
|
- :value="item.id"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
+ <el-form-item :prop="'taxRefundDetailsList.' + $index + '.contractId'" :rules="rulesOne.contractId" :inline-message="true">
|
|
|
+ <el-select v-model="row.contractId" placeholder="请选择" filterable style="width: 100%">
|
|
|
+ <el-option v-for="item in contractList" :label="item.code" :value="item.id"> </el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="amount" label="关联金额" min-width="150">
|
|
|
<template #default="{ row, $index }">
|
|
|
- <el-form-item
|
|
|
- :prop="'taxRefundDetailsList.' + $index + '.amount'"
|
|
|
- :rules="rulesOne.amount"
|
|
|
- :inline-message="true"
|
|
|
- >
|
|
|
- <el-input-number
|
|
|
- onmousewheel="return false;"
|
|
|
- v-model="row.amount"
|
|
|
- :precision="2"
|
|
|
- :controls="false"
|
|
|
- :min="0"
|
|
|
- style="width: 100%"
|
|
|
- />
|
|
|
+ <el-form-item :prop="'taxRefundDetailsList.' + $index + '.amount'" :rules="rulesOne.amount" :inline-message="true">
|
|
|
+ <el-input-number onmousewheel="return false;" v-model="row.amount" :precision="2" :controls="false" :min="0" style="width: 100%" />
|
|
|
</el-form-item>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="zip" label="操作" width="80">
|
|
|
<template #default="{ $index }">
|
|
|
- <el-button type="primary" link @click="handleRemove($index)"
|
|
|
- >删除</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" link @click="handleRemove($index)">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -221,12 +139,17 @@
|
|
|
</template>
|
|
|
</byForm>
|
|
|
<template #footer>
|
|
|
- <el-button @click="dialogVisibleOne = false" size="large"
|
|
|
- >取 消</el-button
|
|
|
- >
|
|
|
- <el-button type="primary" @click="submitFormOne()" size="large"
|
|
|
- >确 定</el-button
|
|
|
- >
|
|
|
+ <el-button @click="dialogVisibleOne = false" size="large">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="submitFormOne()" size="large">确 定</el-button>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <el-dialog title="打印" v-if="openPrint" v-model="openPrint" width="860">
|
|
|
+ <ContractPDF :rowData="rowData"></ContractPDF>
|
|
|
+ <template #footer>
|
|
|
+ <el-button @click="openPrint = false" size="large">取消</el-button>
|
|
|
+ <el-button v-print="printObj" size="large">打印</el-button>
|
|
|
+ <el-button type="primary" @click="clickDownload()" size="large">下载PDF</el-button>
|
|
|
</template>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -239,6 +162,7 @@ import byForm from "@/components/byForm/index";
|
|
|
import useUserStore from "@/store/modules/user";
|
|
|
import { ElMessage, ElMessageBox } from "element-plus";
|
|
|
import moment from "moment";
|
|
|
+import ContractPDF from "@/components/PDF/contractPDF.vue";
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
const accountCurrency = ref([]);
|
|
@@ -303,6 +227,13 @@ const config = computed(() => {
|
|
|
},
|
|
|
{
|
|
|
attrs: {
|
|
|
+ label: "关联销售合同",
|
|
|
+ slot: "contractCodes",
|
|
|
+ width: 160,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
label: "资金账户",
|
|
|
prop: "accountManagementName",
|
|
|
width: 200,
|
|
@@ -399,15 +330,11 @@ const config = computed(() => {
|
|
|
},
|
|
|
el: "button",
|
|
|
click() {
|
|
|
- ElMessageBox.confirm(
|
|
|
- "此操作将永久删除该数据, 是否继续?",
|
|
|
- "提示",
|
|
|
- {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
- }
|
|
|
- ).then(() => {
|
|
|
+ ElMessageBox.confirm("此操作将永久删除该数据, 是否继续?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ }).then(() => {
|
|
|
proxy
|
|
|
.post("/accountRunningWater/delete", {
|
|
|
id: row.id,
|
|
@@ -448,28 +375,23 @@ const getCurrency = () => {
|
|
|
});
|
|
|
};
|
|
|
const getAccountList = () => {
|
|
|
- return proxy
|
|
|
- .post("/accountManagement/page", { pageNum: 1, pageSize: 999 })
|
|
|
- .then((res) => {
|
|
|
- if (res.rows && res.rows.length > 0) {
|
|
|
- accountList.value = res.rows.map((item) => {
|
|
|
- return {
|
|
|
- label: item.alias,
|
|
|
- value: item.id,
|
|
|
- };
|
|
|
- });
|
|
|
- sourceList.value.pagination.accountManagementId =
|
|
|
- accountList.value[0].value;
|
|
|
- }
|
|
|
- });
|
|
|
+ return proxy.post("/accountManagement/page", { pageNum: 1, pageSize: 999 }).then((res) => {
|
|
|
+ if (res.rows && res.rows.length > 0) {
|
|
|
+ accountList.value = res.rows.map((item) => {
|
|
|
+ return {
|
|
|
+ label: item.alias,
|
|
|
+ value: item.id,
|
|
|
+ };
|
|
|
+ });
|
|
|
+ sourceList.value.pagination.accountManagementId = accountList.value[0].value;
|
|
|
+ }
|
|
|
+ });
|
|
|
};
|
|
|
const getDict = () => {
|
|
|
// 关联合同
|
|
|
- proxy
|
|
|
- .post("/contract/page", { pageNum: 1, pageSize: 9999, status: 30 })
|
|
|
- .then((res) => {
|
|
|
- contractList.value = res.rows;
|
|
|
- });
|
|
|
+ proxy.post("/contract/page", { pageNum: 1, pageSize: 9999, status: 30 }).then((res) => {
|
|
|
+ contractList.value = res.rows;
|
|
|
+ });
|
|
|
|
|
|
Promise.all([getCurrency(), getAccountList()]).then(() => {
|
|
|
getList();
|
|
@@ -478,15 +400,13 @@ const getDict = () => {
|
|
|
const getList = async (req) => {
|
|
|
sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
|
|
|
loading.value = true;
|
|
|
- proxy
|
|
|
- .post("/accountRunningWater/page1", sourceList.value.pagination)
|
|
|
- .then((res) => {
|
|
|
- sourceList.value.data = res.rows;
|
|
|
- sourceList.value.pagination.total = res.total;
|
|
|
- setTimeout(() => {
|
|
|
- loading.value = false;
|
|
|
- }, 200);
|
|
|
- });
|
|
|
+ proxy.post("/accountRunningWater/page1", sourceList.value.pagination).then((res) => {
|
|
|
+ sourceList.value.data = res.rows;
|
|
|
+ sourceList.value.pagination.total = res.total;
|
|
|
+ setTimeout(() => {
|
|
|
+ loading.value = false;
|
|
|
+ }, 200);
|
|
|
+ });
|
|
|
};
|
|
|
getDict();
|
|
|
const modalType = ref("add");
|
|
@@ -647,29 +567,19 @@ const formConfigOne = computed(() => {
|
|
|
});
|
|
|
|
|
|
const rules = ref({
|
|
|
- accountManagementId: [
|
|
|
- { required: true, message: "请选择账户", trigger: "change" },
|
|
|
- ],
|
|
|
- transactionTime: [
|
|
|
- { required: true, message: "请选择交易时间", trigger: "change" },
|
|
|
- ],
|
|
|
+ accountManagementId: [{ required: true, message: "请选择账户", trigger: "change" }],
|
|
|
+ transactionTime: [{ required: true, message: "请选择交易时间", trigger: "change" }],
|
|
|
status: [{ required: true, message: "请选择收支类型", trigger: "change" }],
|
|
|
currency: [{ required: true, message: "请选择币种", trigger: "change" }],
|
|
|
- received: [
|
|
|
- { required: true, message: "请选择合同是否到账", trigger: "change" },
|
|
|
- ],
|
|
|
+ received: [{ required: true, message: "请选择合同是否到账", trigger: "change" }],
|
|
|
amount: [{ required: true, message: "请输入金额", trigger: "blur" }],
|
|
|
// name: [{ required: true, message: "请输入账户名称", trigger: "blur" }],
|
|
|
// openingBank: [{ required: true, message: "请输入开户银行", trigger: "blur" }],
|
|
|
// accountOpening: [{ required: true, message: "请输入银行账号", trigger: "blur" }],
|
|
|
});
|
|
|
const rulesOne = ref({
|
|
|
- accountManagementId: [
|
|
|
- { required: true, message: "请选择账户", trigger: "change" },
|
|
|
- ],
|
|
|
- transactionTime: [
|
|
|
- { required: true, message: "请选择退税时间", trigger: "change" },
|
|
|
- ],
|
|
|
+ accountManagementId: [{ required: true, message: "请选择账户", trigger: "change" }],
|
|
|
+ transactionTime: [{ required: true, message: "请选择退税时间", trigger: "change" }],
|
|
|
currency: [{ required: true, message: "请选择币种", trigger: "change" }],
|
|
|
// amount: [{ required: true, message: "请输入退税金额", trigger: "blur" }],
|
|
|
contractId: [{ required: true, message: "请选择合同", trigger: "change" }],
|
|
@@ -748,10 +658,7 @@ const submitFormOne = () => {
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
- const total = submitData.taxRefundDetailsList.reduce(
|
|
|
- (sum, crr) => (sum += crr.amount),
|
|
|
- 0
|
|
|
- );
|
|
|
+ const total = submitData.taxRefundDetailsList.reduce((sum, crr) => (sum += crr.amount), 0);
|
|
|
if (total !== Number(submitData.amount)) {
|
|
|
return ElMessage({
|
|
|
message: "关联合同明细的关联金额总合必须等于退税金额",
|
|
@@ -810,6 +717,24 @@ const exportData = (res, name) => {
|
|
|
navigator.msSaveBlob(blob, fileName);
|
|
|
}
|
|
|
};
|
|
|
+const openPrint = ref(false);
|
|
|
+const rowData = ref({});
|
|
|
+const openDetails = (val) => {
|
|
|
+ rowData.value = {
|
|
|
+ code: val,
|
|
|
+ };
|
|
|
+ openPrint.value = true;
|
|
|
+};
|
|
|
+const printObj = ref({
|
|
|
+ id: "printMe",
|
|
|
+ popTitle: "",
|
|
|
+ extraCss:
|
|
|
+ "https://cdn.bootcdn.net/ajax/libs/animate.css/4.1.1/animate.compat.css, https://cdn.bootcdn.net/ajax/libs/hover.css/2.3.1/css/hover-min.css",
|
|
|
+ extraHead: '<meta http-equiv="Content-Language"content="zh-cn"/>',
|
|
|
+});
|
|
|
+const clickDownload = () => {
|
|
|
+ proxy.getPdf("外销合同PDF文件");
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|