123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866 |
- <template>
- <div class="user">
- <div class="content">
- <byTable
- :source="sourceList.data"
- :pagination="sourceList.pagination"
- :config="config"
- :loading="loading"
- highlight-current-row
- :selectConfig="selectConfig"
- :table-events="{
- select: select,
- }"
- :action-list="[]"
- @moreSearch="moreSearch"
- @get-list="getList">
- <template #amount="{ item }">
- <div style="width: 100%">
- <span>{{ item.currency }} {{ item.amount }}</span>
- </div>
- </template>
- </byTable>
- </div>
- <el-dialog title="打款" v-if="dialogVisible" v-model="dialogVisible" width="500" v-loading="loading">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="byform">
- <template #fileSlot>
- <div style="width: 100%">
- <el-upload
- v-model:fileList="fileList"
- action="https://winfaster.obs.cn-south-1.myhuaweicloud.com"
- :data="uploadData"
- multiple
- :before-upload="uploadFile"
- :on-preview="onPreviewFile">
- <el-button type="primary">文件上传</el-button>
- </el-upload>
- </div>
- </template>
- </byForm>
- <template #footer>
- <el-button @click="dialogVisible = false" size="large">取 消</el-button>
- <el-button type="primary" @click="submitForm()" v-if="!formOption.disabled" size="large" :loading="submitLoading"> 确 定 </el-button>
- </template>
- </el-dialog>
- <el-dialog title="高级检索" v-if="openSearch" v-model="openSearch" width="600" :before-close="cancelSearch">
- <byForm :formConfig="formSearchConfig" :formOption="formOptionTwo" v-model="sourceList.pagination">
- <template #departmentId>
- <div>
- <el-tree-select
- v-model="sourceList.pagination.departmentId"
- :data="deptTreeData"
- check-strictly
- :render-after-expand="false"
- node-key="deptId"
- style="width: 100%"
- :props="defaultProps"
- clearable />
- </div>
- </template>
- <template #time>
- <div style="width: 100%">
- <el-row :gutter="10">
- <el-col :span="11">
- <el-date-picker
- v-model="sourceList.pagination.beginCreateTime"
- type="datetime"
- placeholder="请选择"
- style="width: 100%"
- value-format="YYYY-MM-DD HH:mm:ss" />
- </el-col>
- <el-col :span="2" style="text-align: center">到</el-col>
- <el-col :span="11">
- <el-date-picker
- v-model="sourceList.pagination.endCreateTime"
- type="datetime"
- placeholder="请选择"
- style="width: 100%"
- value-format="YYYY-MM-DD HH:mm:ss" />
- </el-col>
- </el-row>
- </div>
- </template>
- <template #timeTwo>
- <div style="width: 100%">
- <el-row :gutter="10">
- <el-col :span="11">
- <el-date-picker
- v-model="sourceList.pagination.beginTime"
- type="datetime"
- placeholder="请选择"
- style="width: 100%"
- value-format="YYYY-MM-DD HH:mm:ss" />
- </el-col>
- <el-col :span="2" style="text-align: center">到</el-col>
- <el-col :span="11">
- <el-date-picker
- v-model="sourceList.pagination.endTime"
- type="datetime"
- placeholder="请选择"
- style="width: 100%"
- value-format="YYYY-MM-DD HH:mm:ss" />
- </el-col>
- </el-row>
- </div>
- </template>
- <template #money>
- <div style="width: 100%">
- <el-row :gutter="10">
- <el-col :span="11">
- <el-input-number
- onmousewheel="return false;"
- v-model="sourceList.pagination.startAmount"
- placeholder="请输入"
- style="width: 100%"
- :precision="2"
- :controls="false"
- :min="0" />
- </el-col>
- <el-col :span="2" style="text-align: center">到</el-col>
- <el-col :span="11">
- <el-input-number
- onmousewheel="return false;"
- v-model="sourceList.pagination.endAmount"
- placeholder="请输入"
- style="width: 100%"
- :precision="2"
- :controls="false"
- :min="0" />
- </el-col>
- </el-row>
- </div>
- </template>
- </byForm>
- <template #footer>
- <el-button @click="cancelSearch()" size="large">取 消</el-button>
- <el-button type="primary" @click="submitSearch()" size="large">确 定</el-button>
- </template>
- </el-dialog>
- <el-dialog title="打印" v-if="openPrint" v-model="openPrint" width="840px">
- <FundsPDF v-if="rowData.type != '20'" :rowData="rowData"></FundsPDF>
- <PaymentPDF v-else :rowData="rowData"></PaymentPDF>
- <template #footer>
- <el-button @click="openPrint = false" size="large">取消</el-button>
- <el-button type="primary" @click="clickDownload()" size="large">下载PDF</el-button>
- </template>
- </el-dialog>
- <el-dialog title="冲销" v-if="openCancelledOut" v-model="openCancelledOut" width="500">
- <byForm
- :formConfig="formCancelledOutConfig"
- :formOption="formOptionTwo"
- v-model="formCancelledOutData.data"
- :rules="rulesCancelledOut"
- ref="cancelledOut">
- <template #detail>
- <div style="width: 100%">
- <el-button type="primary" style="margin-left: -15px" @click="clickDetail" text>查看详情</el-button>
- </div>
- </template>
- </byForm>
- <template #footer>
- <el-button @click="openCancelledOut = false" size="large">取 消</el-button>
- <el-button type="danger" @click="submitCancelledOutForm()" size="large" :loading="submitCancelledOutLoading">冲 销</el-button>
- </template>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { ElMessage, ElMessageBox } from "element-plus";
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import { computed, ref } from "vue";
- import moment from "moment";
- import useUserStore from "@/store/modules/user";
- import FundsPDF from "@/components/PDF/fundsPDF.vue";
- import PaymentPDF from "@/components/PDF/paymentPDF.vue";
- const loading = ref(false);
- const submitLoading = ref(false);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 0,
- pageNum: 1,
- pageSize: 10,
- keyword: "",
- corporationId: "",
- departmentId: "",
- createUser: "",
- beginCreateTime: "",
- endCreateTime: "",
- beginTime: "",
- endTime: "",
- currency: "",
- startAmount: undefined,
- endAmount: undefined,
- paymentStatus: "",
- paymentRemark: "",
- type: "",
- },
- });
- let dialogVisible = ref(false);
- let rules = ref({
- productClassifyId: [{ required: true, message: "请选择物料分类", trigger: "change" }],
- type: [{ required: true, message: "请选择物料类型", trigger: "change" }],
- });
- const accountCurrency = ref([]);
- const accountList = ref([]);
- const companyData = ref([]);
- const deptTreeData = ref([]);
- const userList = ref([]);
- const fundsType = ref([]);
- const fundsPaymentMethod = ref([]);
- const { proxy } = getCurrentInstance();
- const selectConfig = computed(() => {
- return [
- {
- label: "打款状态",
- prop: "paymentStatus",
- data: paymentType.value,
- },
- ];
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "归属公司",
- prop: "corporationName",
- width: 160,
- },
- },
- {
- attrs: {
- label: "归属部门",
- prop: "deptName",
- width: 160,
- },
- },
- {
- attrs: {
- label: "付款类型",
- prop: "type",
- width: 130,
- },
- render(type) {
- if (type != "20") {
- return "请款: " + proxy.dictValueLabel(type, fundsType.value);
- } else {
- return "采购付款 - 申请";
- }
- },
- },
- {
- attrs: {
- label: "申请人",
- prop: "userName",
- width: 140,
- },
- },
- {
- attrs: {
- label: "申请时间",
- prop: "applyForTime",
- width: 160,
- },
- },
- {
- attrs: {
- label: "用款时间",
- prop: "paymentTime",
- width: 160,
- },
- },
- {
- attrs: {
- label: "金额",
- slot: "amount",
- width: 120,
- align: "right",
- },
- },
- {
- attrs: {
- label: "款项说明",
- prop: "paymentRemark",
- "min-width": 200,
- },
- },
- {
- attrs: {
- label: "打款状态",
- prop: "status",
- width: 120,
- },
- render(status) {
- return proxy.dictValueLabel(status, paymentType.value);
- },
- },
- {
- attrs: {
- label: "操作",
- width: "180",
- align: "center",
- fixed: "right",
- },
- renderHTML(row) {
- return [
- row.status == "20"
- ? {
- attrs: {
- label: "打款",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- formOption.disabled = false;
- getDtl(row);
- },
- }
- : {
- attrs: {
- label: "冲销",
- type: "danger",
- text: true,
- },
- el: "button",
- click(item) {
- ElMessageBox.confirm("冲销后,已生成的资金流水数据会被删除,且关联的数据状态会由“已打款”退回至“未打款”,并支持重新打款。是否继续?", "提示", {
- confirmButtonText: "继续",
- cancelButtonText: "取消",
- type: "warning",
- })
- .then(() => {
- rowData.value = item;
- formCancelledOutData.data = {
- accountPaymentId: item.id,
- remark: "",
- };
- openCancelledOut.value = true;
- })
- .catch(() => {});
- },
- },
- {
- attrs: {
- label: "打印",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- clickPrint(row);
- },
- },
- {
- attrs: {
- label: "查看",
- type: "primary",
- text: true,
- },
- el: "button",
- click() {
- formOption.disabled = true;
- getDtl(row);
- },
- },
- ];
- },
- },
- ];
- });
- let formData = reactive({
- data: {
- fileList: [],
- },
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- disabled: false,
- });
- const formOptionTwo = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- disabled: false,
- });
- const byform = ref(null);
- const treeListData = ref([]);
- const formConfig = computed(() => {
- return [
- {
- type: "title",
- label: "请款信息",
- },
- {
- type: "input",
- prop: "businessManagementName",
- label: "付款账户",
- disabled: true,
- },
- {
- type: "input",
- prop: "incomeAmount",
- label: "请款金额",
- disabled: true,
- },
- {
- type: "select",
- prop: "paymentMethod",
- label: "付款方式",
- disabled: true,
- data: fundsPaymentMethod.value,
- },
- {
- type: "input",
- prop: "name",
- label: "户名",
- disabled: true,
- },
- {
- type: "input",
- prop: "accountOpening",
- label: "银行账号",
- disabled: true,
- },
- {
- type: "input",
- prop: "openingBank",
- label: "开户银行",
- disabled: true,
- },
- {
- type: "input",
- prop: "interbankNumber",
- label: "联行号 / SWIFT Code",
- disabled: true,
- },
- {
- type: "input",
- prop: "paymentRemark",
- label: "摘要",
- disabled: true,
- itemType: "textarea",
- },
- {
- type: "title",
- title: "付款信息",
- },
- {
- type: "select",
- prop: "accountManagementId",
- label: "付款账户",
- required: true,
- data: accountList.value,
- },
- {
- type: "selectInput",
- label: "付款金额",
- itemWidth: 60,
- prop: "amount",
- data: accountCurrency.value,
- placeholder: "请输入",
- selectPlaceholder: "币种",
- selectProp: "currency",
- disabled: true,
- },
- {
- type: "date",
- itemType: "datetime",
- prop: "expensesTime",
- label: "打款时间",
- format: "YYYY-MM-DD HH:mm:ss",
- },
- {
- type: "input",
- prop: "remark",
- label: "摘要",
- itemType: "textarea",
- },
- {
- type: "slot",
- label: "上传附件",
- prop: "fileList",
- slotName: "fileSlot",
- },
- ];
- });
- const fileList = ref([]);
- const uploadData = ref({});
- const uploadFile = async (file) => {
- const res = await proxy.post("/fileInfo/getSing", { fileName: file.name });
- uploadData.value = res.uploadBody;
- file.id = res.id;
- file.fileName = res.fileName;
- file.fileUrl = res.fileUrl;
- return true;
- };
- const onPreviewFile = (file) => {
- window.open(file.raw.fileUrl, "_blank");
- };
- const recursive = (data) => {
- data.map((item) => {
- item.label = item.deptName;
- item.id = item.corporationId;
- if (item.children) {
- recursive(item.children);
- } else {
- item.children = [];
- }
- });
- };
- const getDict = () => {
- proxy.getDict(["account_currency", "founds_type", "funds_payment_method"]).then((res) => {
- accountCurrency.value = res.account_currency.map((item) => {
- return {
- label: item.dictValue,
- value: item.dictKey,
- };
- });
- fundsType.value = res.founds_type.map((item) => {
- return {
- label: item.dictValue,
- value: item.dictKey,
- };
- });
- fundsPaymentMethod.value = res.funds_payment_method.map((item) => {
- return {
- label: item.dictValue,
- value: item.dictKey,
- };
- });
- });
- proxy.post("/accountManagement/page", { pageNum: 1, pageSize: 9999 }).then((res) => {
- if (res.rows && res.rows.length > 0) {
- accountList.value = res.rows.map((item) => {
- return {
- label: item.alias + " (" + item.name + ")",
- value: item.id,
- };
- });
- }
- });
- proxy.post("/corporation/page", { pageNum: 1, pageSize: 9999 }).then((res) => {
- if (res.rows && res.rows.length > 0) {
- companyData.value = res.rows.map((item) => {
- return {
- label: item.name,
- value: item.id,
- };
- });
- }
- });
- proxy
- .get("/tenantDept/list", {
- pageNum: 1,
- pageSize: 9999,
- tenantId: useUserStore().user.tenantId,
- })
- .then((message) => {
- recursive(message.data);
- deptTreeData.value = [];
- let data = proxy.handleTree(message.data, "deptId");
- if (data && data.length > 0) {
- for (let i = 0; i < data.length; i++) {
- if (data[i].children && data[i].children.length > 0) {
- deptTreeData.value = deptTreeData.value.concat(data[i].children);
- }
- }
- }
- });
- proxy
- .get("/tenantUser/list", {
- pageNum: 1,
- pageSize: 10000,
- tenantId: useUserStore().user.tenantId,
- })
- .then((res) => {
- if (res.rows && res.rows.length > 0) {
- userList.value = res.rows.map((item) => {
- return {
- deptId: item.deptId,
- label: item.nickName,
- value: item.userId,
- };
- });
- }
- });
- };
- getDict();
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy.post("/accountPayment/page", sourceList.value.pagination).then((message) => {
- sourceList.value.data = message.rows;
- sourceList.value.pagination.total = message.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const paymentType = ref([
- {
- label: "已打款",
- value: 10,
- },
- {
- label: "未打款",
- value: 20,
- },
- ]);
- const selection = ref({
- data: [],
- });
- const select = (_selection, row) => {
- selection.value.data = _selection;
- };
- const submitForm = () => {
- byform.value.handleSubmit(() => {
- if (fileList.value && fileList.value.length > 0) {
- formData.data.fileList = fileList.value.map((item) => {
- return {
- id: item.raw.id,
- fileName: item.raw.fileName,
- fileUrl: item.raw.fileUrl,
- };
- });
- } else {
- formData.data.fileList = [];
- }
- submitLoading.value = true;
- proxy.post("/accountPayment/add", formData.data).then(
- () => {
- ElMessage({
- message: "打款成功",
- type: "success",
- });
- dialogVisible.value = false;
- submitLoading.value = false;
- getList();
- },
- () => {
- submitLoading.value = false;
- }
- );
- });
- };
- const getTreeList = () => {
- proxy
- .post("/productClassify/tree", {
- parentId: "",
- name: "",
- definition: "2",
- })
- .then((message) => {
- treeListData.value = message;
- formConfig.value[0].data = message;
- });
- };
- const getDtl = (row) => {
- proxy.post("/accountPayment/detail", { id: row.id }).then((res) => {
- formData.data = res;
- formData.data.expensesTime = moment().format("yyyy-MM-DD HH:mm:ss");
- proxy.post("/fileInfo/getList", { businessIdList: [row.id] }).then((fileObj) => {
- formData.data.fileList = fileObj[row.id] || [];
- if (formData.data.fileList && formData.data.fileList.length > 0) {
- fileList.value = formData.data.fileList.map((item) => {
- return {
- raw: item,
- name: item.fileName,
- url: item.fileUrl,
- };
- });
- } else {
- fileList.value = [];
- }
- });
- dialogVisible.value = true;
- });
- };
- getTreeList();
- getList();
- const openSearch = ref(false);
- const formSearchConfig = computed(() => {
- return [
- {
- type: "select",
- prop: "corporationId",
- label: "归属公司",
- data: companyData.value,
- clearable: true,
- },
- {
- type: "slot",
- slotName: "departmentId",
- label: "归属部门",
- },
- {
- type: "select",
- prop: "createUser",
- label: "请款人",
- data: userList.value,
- clearable: true,
- },
- {
- type: "select",
- prop: "type",
- label: "付款类型",
- data: fundsType.value,
- clearable: true,
- },
- {
- type: "slot",
- slotName: "time",
- label: "请款时间",
- },
- {
- type: "slot",
- slotName: "timeTwo",
- label: "用款时间",
- },
- {
- type: "select",
- prop: "currency",
- label: "币种",
- data: accountCurrency.value,
- clearable: true,
- },
- {
- type: "slot",
- slotName: "money",
- label: "交易金额",
- },
- {
- type: "select",
- prop: "paymentStatus",
- label: "打款状态",
- data: paymentType.value,
- clearable: true,
- },
- {
- type: "input",
- itemType: "textarea",
- prop: "paymentRemark",
- label: "款项说明",
- },
- ];
- });
- let copySearch = ref({});
- const moreSearch = () => {
- copySearch.value = proxy.deepClone(sourceList.value.pagination);
- openSearch.value = true;
- };
- const cancelSearch = () => {
- sourceList.value.pagination = copySearch.value;
- openSearch.value = false;
- };
- const submitSearch = () => {
- if (
- sourceList.value.pagination.startAmount &&
- sourceList.value.pagination.endAmount &&
- Number(sourceList.value.pagination.startAmount) > Number(sourceList.value.pagination.endAmount)
- ) {
- return ElMessage("交易金额输入错误");
- }
- if (
- sourceList.value.pagination.beginCreateTime &&
- sourceList.value.pagination.endCreateTime &&
- sourceList.value.pagination.beginCreateTime > sourceList.value.pagination.endCreateTime
- ) {
- return ElMessage("开始时间不能大于结束时间");
- }
- if (
- sourceList.value.pagination.beginTime &&
- sourceList.value.pagination.endTime &&
- sourceList.value.pagination.beginTime > sourceList.value.pagination.endTime
- ) {
- return ElMessage("开始时间不能大于结束时间");
- }
- openSearch.value = false;
- sourceList.value.pagination.keyword = "";
- sourceList.value.pagination.pageNum = 1;
- getList();
- };
- const openPrint = ref(false);
- const rowData = ref({});
- const clickPrint = (row) => {
- rowData.value = {
- id: row.businessId,
- type: row.type,
- };
- openPrint.value = true;
- };
- const clickDownload = () => {
- if (rowData.value.type != "20") {
- proxy.getPdf("请款PDF文件");
- } else {
- proxy.getPdf("采购付款PDF文件");
- }
- };
- let formCancelledOutData = reactive({
- data: {},
- });
- const cancelledOut = ref(null);
- const formCancelledOutConfig = computed(() => {
- return [
- {
- type: "slot",
- label: "打款明细",
- slotName: "detail",
- },
- {
- type: "input",
- itemType: "textarea",
- prop: "remark",
- label: "冲销原因",
- },
- ];
- });
- let rulesCancelledOut = ref({
- remark: [{ required: true, message: "请输入冲销原因", trigger: "blur" }],
- });
- const openCancelledOut = ref(false);
- const submitCancelledOutLoading = ref(false);
- const submitCancelledOutForm = () => {
- cancelledOut.value.handleSubmit(() => {
- submitCancelledOutLoading.value = true;
- proxy.post("/writeOffRecords/add", formCancelledOutData.data).then(
- () => {
- ElMessage({
- message: "冲销完成",
- type: "success",
- });
- openCancelledOut.value = false;
- submitCancelledOutLoading.value = false;
- getList();
- },
- () => {
- submitCancelledOutLoading.value = false;
- }
- );
- });
- };
- const clickDetail = () => {
- formOption.disabled = true;
- getDtl(rowData.value);
- };
- </script>
- <style lang="scss" scoped>
- .user {
- padding: 20px;
- }
- ::v-deep(.el-input-number .el-input__inner) {
- text-align: left;
- }
- </style>
|