feat(crm): 更新订单财务状态同步功能并优化权限控制
- 在ReceiveTable.vue中添加订单未付金额同步功能 - 优化report/index.vue的日期参数命名和表格显示列 - 为order/index.vue添加权限控制指令
This commit is contained in:
@@ -110,8 +110,8 @@
|
||||
<el-table-column prop="customerCode" label="客户编码" min-width="100"></el-table-column>
|
||||
<el-table-column prop="companyName" label="公司名称" min-width="150"></el-table-column>
|
||||
<el-table-column prop="contactPerson" label="联系人" min-width="80"></el-table-column>
|
||||
<el-table-column prop="customerLevel" label="客户等级" min-width="100"></el-table-column>
|
||||
<el-table-column prop="industry" label="所属行业"></el-table-column>
|
||||
<!-- <el-table-column prop="customerLevel" label="客户等级" min-width="100"></el-table-column> -->
|
||||
<!-- <el-table-column prop="industry" label="所属行业"></el-table-column> -->
|
||||
<el-table-column prop="orderAmount" label="订单金额">
|
||||
<template #default="scope">
|
||||
{{ formatAmount(scope.row.orderAmount) }}
|
||||
@@ -141,11 +141,11 @@
|
||||
{{ formatAmount(scope.row.unpaidAmount) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="createTime" label="创建时间">
|
||||
<!-- <el-table-column prop="createTime" label="创建时间">
|
||||
<template #default="scope">
|
||||
{{ scope.row.createTime ? formatDateTime(scope.row.createTime) : '-' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column> -->
|
||||
<el-table-column prop="itemCount" label="明细数量"></el-table-column>
|
||||
<el-table-column prop="objectionCount" label="异议数量"></el-table-column>
|
||||
</el-table>
|
||||
@@ -296,8 +296,8 @@ export default {
|
||||
const params = {};
|
||||
// 处理时间范围参数
|
||||
if (this.dateQuery.dateRange && this.dateQuery.dateRange.length === 2) {
|
||||
params.beginDate = this.dateQuery.dateRange[0];
|
||||
params.endDate = this.dateQuery.dateRange[1];
|
||||
params.startTime = this.dateQuery.dateRange[0];
|
||||
params.endTime = this.dateQuery.dateRange[1];
|
||||
}
|
||||
// 是否需要分页参数
|
||||
if (needPage) {
|
||||
|
||||
Reference in New Issue
Block a user