From 07248d50234b812002f9a16ae5a9f45190baa675 Mon Sep 17 00:00:00 2001
From: chenrui <1187576398@qq.com>
Date: 星期一, 12 五月 2025 16:29:44 +0800
Subject: [PATCH] 开票登记前后端联调
---
src/api/salesManagement/salesLedger.js | 11 +
src/api/salesManagement/invoiceRegistration.js | 54 ++++++
src/views/salesManagement/invoiceRegistration/index.vue | 422 ++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 486 insertions(+), 1 deletions(-)
diff --git a/src/api/salesManagement/invoiceRegistration.js b/src/api/salesManagement/invoiceRegistration.js
new file mode 100644
index 0000000..cd53ccc
--- /dev/null
+++ b/src/api/salesManagement/invoiceRegistration.js
@@ -0,0 +1,54 @@
+// 閿�鍞彴璐﹂〉闈㈡帴鍙�
+import request from '@/utils/request'
+
+// 鍒嗛〉鏌ヨ
+export function invoiceRegistrationList(query) {
+ return request({
+ url: '/invoiceRegistration/listPage',
+ method: 'get',
+ params: query
+ })
+}
+// 寮�绁ㄧ櫥璁版柊澧�
+export function invoiceRegistrationSaveOrUpdate(query) {
+ return request({
+ url: '/invoiceRegistration/saveOrUpdate',
+ method: 'post',
+ data: query
+ })
+}
+// 寮�绁ㄧ櫥璁板垹闄�
+export function invoiceRegistrationDel(query) {
+ return request({
+ url: '/invoiceRegistration/del',
+ method: 'delete',
+ data: query
+ })
+}
+// 瀛愯〃鏍兼煡璇�
+export function productList(query) {
+ return request({
+ url: '/invoiceRegistration/productList',
+ method: 'get',
+ params: query
+ })
+}
+
+// 寮�绁ㄧ櫥璁拌鎯�
+export function invoiceRegistrationDetail(query) {
+ return request({
+ url: '/invoiceRegistration/detail',
+ method: 'get',
+ params: query
+ })
+}
+
+// 瀵煎嚭寮�绁ㄧ櫥璁�
+export function invoiceRegistrationExport(query) {
+ return request({
+ url: '/invoiceRegistration/export',
+ method: 'get',
+ params: query,
+ responseType: 'blob'
+ })
+}
diff --git a/src/api/salesManagement/salesLedger.js b/src/api/salesManagement/salesLedger.js
index 0a53908..dfd4243 100644
--- a/src/api/salesManagement/salesLedger.js
+++ b/src/api/salesManagement/salesLedger.js
@@ -64,4 +64,13 @@
method: 'delete',
data: query
})
-}
\ No newline at end of file
+}
+
+// 閿�鍞笉鍒嗛〉鏌ヨ
+export function ledgerListNoPage(query) {
+ return request({
+ url: '/sales/ledger/listNoPage',
+ method: 'get',
+ params: query
+ })
+}
diff --git a/src/views/salesManagement/invoiceRegistration/index.vue b/src/views/salesManagement/invoiceRegistration/index.vue
new file mode 100644
index 0000000..d20fe1d
--- /dev/null
+++ b/src/views/salesManagement/invoiceRegistration/index.vue
@@ -0,0 +1,422 @@
+<template>
+ <div class="app-container">
+ <div class="search_form">
+ <div>
+ <span class="search_title">寮�绁ㄧ櫥璁帮細</span>
+ <el-input
+ v-model="searchForm.customerName"
+ style="width: 240px"
+ placeholder="璇疯緭鍏ュ悕绉版悳绱�"
+ @change="handleQuery"
+ clearable
+ :prefix-icon="Search"
+ />
+ <el-button type="primary" @click="handleQuery" style="margin-left: 10px">鎼滅储</el-button>
+ </div>
+ <div>
+ <el-button type="primary" @click="openForm('add')">鏂板鐧昏</el-button>
+ <el-button @click="handleOut">瀵煎嚭</el-button>
+ <el-button type="danger" plain @click="handleDelete">鍒犻櫎</el-button>
+ </div>
+ </div>
+ <div class="table_list">
+ <el-table :data="tableData" border v-loading="tableLoading"
+ @selection-change="handleSelectionChange"
+ :expand-row-keys="expandedRowKeys"
+ :row-key="row => row.id"
+ show-summary
+ :summary-method="summarizeMainTable"
+ @expand-change="expandChange"
+ height="calc(100vh - 18.5em)">
+ <el-table-column align="center" type="selection" width="55" />
+ <el-table-column type="expand">
+ <template #default="props">
+ <el-table :data="props.row.children" border
+ show-summary
+ :summary-method="summarizeChildrenTable">
+ <el-table-column align="center" label="搴忓彿" type="index" width="60" />
+ <el-table-column label="浜у搧澶х被" prop="productCategory" />
+ <el-table-column label="瑙勬牸鍨嬪彿" prop="specificationModel" />
+ <el-table-column label="鍗曚綅" prop="unit" />
+ <el-table-column label="鏁伴噺" prop="quantity" />
+ <el-table-column label="绋庣巼" prop="taxRate" />
+ <el-table-column label="鍚◣鍗曚环(鍏�)" prop="taxInclusiveUnitPrice" />
+ <el-table-column label="鍚◣鎬讳环(鍏�)" prop="taxInclusiveTotalPrice" />
+ <el-table-column label="涓嶅惈绋庢�讳环(鍏�)" prop="taxExclusiveTotalPrice" />
+ <el-table-column label="鏈寮�绁ㄦ暟" prop="invoiceNum" />
+ <el-table-column label="鏈寮�绁ㄩ噾棰�(鍏�)" prop="invoiceAmount" />
+ <el-table-column label="鏈紑绁ㄦ暟(鍏�)" prop="noInvoiceNum" />
+ <el-table-column label="鏈紑绁ㄩ噾棰�(鍏�)" prop="noInvoiceAmount" />
+ </el-table>
+ </template>
+ </el-table-column>
+ <el-table-column align="center" label="搴忓彿" type="index" width="60" />
+ <el-table-column label="閿�鍞悎鍚屽彿" prop="salesContractNo" show-overflow-tooltip/>
+ <el-table-column label="瀹㈡埛鍚堝悓鍙�" prop="customerContractNo" show-overflow-tooltip/>
+ <el-table-column label="瀹㈡埛鍚嶇О" prop="customerName" show-overflow-tooltip/>
+ <el-table-column label="涓氬姟鍛�" prop="salesman" show-overflow-tooltip/>
+ <el-table-column label="椤圭洰鍚嶇О" prop="projectName" show-overflow-tooltip/>
+ <el-table-column label="鍚堝悓閲戦(鍏�)" prop="contractAmount" show-overflow-tooltip/>
+ <el-table-column fixed="right" label="鎿嶄綔" min-width="60" align="center">
+ <template #default="scope">
+ <el-button link type="primary" size="small" @click="openForm('edit', scope.row);">缂栬緫</el-button>
+ </template>
+ </el-table-column>
+ </el-table>
+ <pagination v-show="total > 0" :total="total" layout="total, sizes, prev, pager, next, jumper" :page="page.current"
+ :limit="page.size" @pagination="paginationChange" />
+ </div>
+ <el-dialog v-model="dialogFormVisible" :title="operationType === 'add' ? '鏂板寮�绁ㄧ櫥璁伴〉闈�' : '缂栬緫寮�绁ㄧ櫥璁伴〉闈�'" width="70%" @close="closeDia">
+ <el-form :model="form" label-width="140px" label-position="top" :rules="rules" ref="formRef">
+ <el-row :gutter="30">
+ <el-col :span="12">
+ <el-form-item label="閿�鍞悎鍚屽彿锛�" prop="salesLedgerId">
+ <el-select v-model="form.salesLedgerId" placeholder="璇烽�夋嫨" clearable @change="ledgerChange" :disabled="operationType === 'edit'">
+ <el-option v-for="item in ledgerList" :key="item.id" :label="item.salesContractNo" :value="item.id"/>
+ </el-select>
+ </el-form-item>
+ </el-col>
+ <el-col :span="12">
+ <el-form-item label="瀹㈡埛鍚嶇О锛�" prop="customerName">
+ <el-input v-model="form.customerName" placeholder="鑷姩濉厖" disabled></el-input>
+ </el-form-item>
+ </el-col>
+ </el-row>
+ <el-row :gutter="30">
+ <el-col :span="12">
+ <el-form-item label="涓氬姟鍛橈細" prop="salesman">
+ <el-input v-model="form.salesman" placeholder="鑷姩濉厖" disabled/>
+ </el-form-item>
+ </el-col>
+ <el-col :span="12">
+ <el-form-item label="椤圭洰鍚嶇О锛�" prop="projectName">
+ <el-input v-model="form.projectName" placeholder="鑷姩濉厖" disabled/>
+ </el-form-item>
+ </el-col>
+ </el-row>
+ <el-row>
+ <el-form-item label="浜у搧淇℃伅锛�" prop="entryDate">
+ </el-form-item>
+ </el-row>
+ <el-table :data="productData" border>
+ <el-table-column align="center" label="搴忓彿" type="index" width="60" />
+ <el-table-column label="浜у搧澶х被" prop="productCategory" />
+ <el-table-column label="瑙勬牸鍨嬪彿" prop="specificationModel" />
+ <el-table-column label="鍗曚綅" prop="unit" />
+ <el-table-column label="鏁伴噺" prop="quantity" />
+ <el-table-column label="绋庣巼" prop="taxRate" />
+ <el-table-column label="鍚◣鍗曚环(鍏�)" prop="taxInclusiveUnitPrice" />
+ <el-table-column label="鍚◣鎬讳环(鍏�)" prop="taxInclusiveTotalPrice" />
+ <el-table-column label="涓嶅惈绋庢�讳环(鍏�)" prop="taxExclusiveTotalPrice" />
+ <el-table-column label="鏈寮�绁ㄦ暟" prop="invoiceNum">
+ <template #default="scope">
+ <el-input :disabled="!scope.row.editFlag" v-model="scope.row.invoiceNum"></el-input>
+ </template>
+ </el-table-column>
+ <el-table-column label="鏈寮�绁ㄩ噾棰�(鍏�)" prop="invoiceAmount" >
+ <template #default="scope">
+ <el-input :disabled="!scope.row.editFlag" v-model="scope.row.invoiceAmount"></el-input>
+ </template>
+ </el-table-column>
+ <el-table-column label="鏈紑绁ㄦ暟(鍏�)" prop="noInvoiceNum" >
+ <template #default="scope">
+ <el-input :disabled="!scope.row.editFlag" v-model="scope.row.noInvoiceNum"></el-input>
+ </template>
+ </el-table-column>
+ <el-table-column label="鏈紑绁ㄩ噾棰�(鍏�)" prop="noInvoiceAmount" >
+ <template #default="scope">
+ <el-input :disabled="!scope.row.editFlag" v-model="scope.row.noInvoiceAmount"></el-input>
+ </template>
+ </el-table-column>
+ <el-table-column fixed="right" label="鎿嶄綔" min-width="60" align="center">
+ <template #default="scope">
+ <el-button link type="primary" size="small" @click="openProductEdit('edit', scope.row);">缂栬緫</el-button>
+ </template>
+ </el-table-column>
+ </el-table>
+ </el-form>
+ <template #footer>
+ <div class="dialog-footer">
+ <el-button type="primary" @click="submitForm">纭</el-button>
+ <el-button @click="closeDia">鍙栨秷</el-button>
+ </div>
+ </template>
+ </el-dialog>
+ </div>
+</template>
+
+<script setup>
+import pagination from '@/components/PIMTable/Pagination.vue'
+import { ref } from 'vue'
+import {Search} from "@element-plus/icons-vue";
+import {ElMessageBox } from "element-plus";
+// import {userListNoPage} from "@/api/system/user.js";
+import {
+ ledgerListNoPage,
+ getSalesLedgerWithProducts,
+} from "@/api/salesManagement/salesLedger.js";
+import {
+ invoiceRegistrationList,
+ invoiceRegistrationSaveOrUpdate,
+ invoiceRegistrationDel,
+ productList,
+ invoiceRegistrationDetail,
+ invoiceRegistrationExport
+} from "@/api/salesManagement/invoiceRegistration.js";
+const { proxy } = getCurrentInstance()
+const tableData = ref([])
+const productData = ref([])
+const selectedRows = ref([])
+const tableLoading = ref(false)
+const page = reactive({
+ current: 1,
+ size: 10,
+})
+const total = ref(0)
+const ledgerList = ref([])
+// 鐢ㄦ埛淇℃伅琛ㄥ崟寮规鏁版嵁
+const operationType = ref('')
+const dialogFormVisible = ref(false)
+const data = reactive({
+ searchForm: {
+ customerName: '',
+ },
+ form: {
+ salesLedgerId: '',
+ customerName: '',
+ salesman: '',
+ projectName: '',
+ productData: []
+ },
+ rules: {
+ salesLedgerId: [{ required: true, message: "璇烽�夋嫨", trigger: "change" }]
+ }
+})
+const { searchForm, form, rules } = toRefs(data)
+// 浜у搧琛ㄥ崟寮规鏁版嵁
+const productFormData = reactive({
+ productForm: {
+ productCategory: '',
+ specificationModel: '',
+ unit: '',
+ quantity: '',
+ taxInclusiveUnitPrice: '',
+ taxRate: '',
+ taxInclusiveTotalPrice: '',
+ taxExclusiveTotalPrice: '',
+ invoiceType: '',
+ },
+})
+const { productForm } = toRefs(productFormData)
+
+// 鏌ヨ鍒楄〃
+/** 鎼滅储鎸夐挳鎿嶄綔 */
+const handleQuery = () => {
+ page.current = 1
+ getList()
+}
+const paginationChange = ({ current, limit }) => {
+ page.current = current;
+ page.size = limit;
+ getList()
+}
+const getList = () => {
+ tableLoading.value = true
+ invoiceRegistrationList({...searchForm.value, ...page}).then(res => {
+ tableLoading.value = false
+ tableData.value = res.data.records;
+ tableData.value.map(item => {
+ item.children = []
+ })
+ total.value = res.data.total
+ })
+}
+// 琛ㄦ牸閫夋嫨鏁版嵁
+const handleSelectionChange = (selection) => {
+ selectedRows.value = selection
+}
+const expandedRowKeys = ref([])
+// 灞曞紑琛�
+const expandChange = (row, expandedRows) => {
+ if (expandedRows.length > 0) {
+ expandedRowKeys.value = []
+ try {
+ productList({invoiceRegistrationId: row.id}).then(res => {
+ const index = tableData.value.findIndex(item => item.id === row.id);
+ if (index > -1) {
+ tableData.value[index].children = res.data;
+ }
+ expandedRowKeys.value.push(row.id)
+ })
+ } catch (error) {
+ console.log(error)
+ }
+ } else {
+ expandedRowKeys.value = []
+ }
+}
+// 涓昏〃鍚堣鏂规硶
+const summarizeMainTable = (param) => {
+ const { columns, data } = param;
+ const sums = [];
+ columns.forEach((column, index) => {
+ if (index === 0) {
+ sums[index] = '鍚堣';
+ return;
+ }
+ const prop = column.property;
+ if (['contractAmount'].includes(prop)) {
+ const values = data.map(item => Number(item[prop]));
+ if (!values.every(value => isNaN(value))) {
+ sums[index] = values.reduce((acc, val) => (!isNaN(val) ? acc + val : acc), 0);
+ } else {
+ sums[index] = '';
+ }
+ } else {
+ sums[index] = '';
+ }
+ })
+ return sums;
+};
+// 瀛愯〃鍚堣鏂规硶
+const summarizeChildrenTable = (param) => {
+ const { columns, data } = param;
+ const sums = [];
+ columns.forEach((column, index) => {
+ if (index === 0) {
+ sums[index] = '鍚堣';
+ return;
+ }
+ const prop = column.property;
+ if (['taxInclusiveUnitPrice', 'taxInclusiveTotalPrice', 'taxExclusiveTotalPrice','invoiceNum','invoiceAmount','noInvoiceNum','noInvoiceAmount'].includes(prop)) {
+ const values = data.map(item => Number(item[prop]));
+ if (!values.every(value => isNaN(value))) {
+ sums[index] = values.reduce((acc, val) => (!isNaN(val) ? acc + val : acc), 0);
+ } else {
+ sums[index] = '';
+ }
+ } else {
+ sums[index] = '';
+ }
+ });
+ return sums;
+}
+// 鎵撳紑寮规
+const openForm = (type, row) => {
+ operationType.value = type
+ form.value = {}
+ productData.value = []
+ // 鏌ヨ閿�鍞悎鍚�
+ ledgerListNoPage({}).then(res => {
+ ledgerList.value = res.data;
+ })
+ if (type === 'edit') {
+ invoiceRegistrationDetail({id: row.id}).then(res => {
+ form.value = {...res.data}
+ form.value.productDtoList = res.data.productDtoList
+ productData.value = form.value.productDtoList
+ })
+ }
+ // currentId.value = row.id;
+ // getSalesLedgerWithProducts({id: row.id}).then(res => {
+ // form.value = {...res}
+ // productData.value = form.value.productData
+ // })
+ // }
+ dialogFormVisible.value = true
+}
+// 鎻愪氦琛ㄥ崟
+const submitForm = () => {
+ proxy.$refs["formRef"].validate(valid => {
+ if (valid) {
+ form.value.productDtoList = productData;
+ invoiceRegistrationSaveOrUpdate(form.value).then(res => {
+ proxy.$modal.msgSuccess("鎻愪氦鎴愬姛")
+ closeDia()
+ getList()
+ })
+ }
+ })
+}
+// 鍏抽棴寮规
+const closeDia = () => {
+ proxy.resetForm("formRef")
+ dialogFormVisible.value = false
+}
+// 鎵撳紑浜у搧寮规
+const openProductEdit = (type, row) => {
+ const index = productData.value.findIndex(item => item.id === row.id);
+ if (index > -1) {
+ productData.value[index].editFlag = !productData.value[index].editFlag
+ }
+}
+// 瀵煎嚭
+const handleOut = () => {
+ ElMessageBox.confirm(
+ '閫変腑鐨勫唴瀹瑰皢琚鍑猴紝鏄惁纭瀵煎嚭锛�',
+ '瀵煎嚭', {
+ confirmButtonText: '纭',
+ cancelButtonText: '鍙栨秷',
+ type: 'warning',
+ }
+ ).then(() => {
+ proxy.download("/invoiceRegistration/export", {}, '寮�绁ㄧ櫥璁颁俊鎭�.xlsx')
+ }).catch(() => {
+ proxy.$modal.msg("宸插彇娑�")
+ })
+}
+// 鍒犻櫎
+const handleDelete = () => {
+ let ids = []
+ if (selectedRows.value.length > 0) {
+ ids = selectedRows.value.map(item => item.id);
+ } else {
+ proxy.$modal.msgWarning('璇烽�夋嫨鏁版嵁')
+ return
+ }
+ ElMessageBox.confirm(
+ '閫変腑鐨勫唴瀹瑰皢琚垹闄わ紝鏄惁纭鍒犻櫎锛�',
+ '瀵煎嚭', {
+ confirmButtonText: '纭',
+ cancelButtonText: '鍙栨秷',
+ type: 'warning',
+ }
+ ).then(() => {
+ invoiceRegistrationDel(ids).then(res => {
+ proxy.$modal.msgSuccess("鍒犻櫎鎴愬姛")
+ getList()
+ })
+ }).catch(() => {
+ proxy.$modal.msg("宸插彇娑�")
+ })
+}
+// 閿�鍞彴璐︾瓫閫�
+const ledgerChange = (val) => {
+ if(val){
+ getSalesLedgerWithProducts({id: val}).then(res => {
+ form.value = {
+ salesLedgerId: res.id,
+ customerName: res.customerName,
+ salesman: res.salesman,
+ projectName: res.projectName,
+ productData: res.productData,
+ salesContractNo: res.salesContractNo,
+ customerId: res.customerId,
+ }
+ productData.value = form.value.productData.map(item => {
+ item.id = ""
+ item.editFlag = false
+ return item
+ })
+ })
+ }else {
+ proxy.resetForm("formRef")
+ productData.value = []
+ }
+}
+getList()
+</script>
+
+<style scoped lang="scss">
+
+</style>
--
Gitblit v1.9.3