diff --git a/src/api/dashboard/reportProd.js b/src/api/dashboard/reportProd.js index 29d843d..3d230ad 100644 --- a/src/api/dashboard/reportProd.js +++ b/src/api/dashboard/reportProd.js @@ -8,3 +8,11 @@ export function getReportProdSum(query) { params: query }) } +// 工序每日产量统计 +export function getDailyProd(query) { + return request({ + url: '/dashboard/reportProd/dailyProd', + method: 'get', + params: query + }) +} diff --git a/src/api/dashboard/reportUserProd.js b/src/api/dashboard/reportUserProd.js index 3711fd8..7c81daa 100644 --- a/src/api/dashboard/reportUserProd.js +++ b/src/api/dashboard/reportUserProd.js @@ -8,3 +8,12 @@ export function getReportUserProdSum(query) { params: query }) } + +// 员工工资统计 +export function getReportUserProdDailySalary(query) { + return request({ + url: '/dashboard/reportUserProd/dailySalary', + method: 'get', + params: query + }) +} diff --git a/src/api/yh/price.js b/src/api/yh/price.js index 1475b2e..2dc153a 100644 --- a/src/api/yh/price.js +++ b/src/api/yh/price.js @@ -107,3 +107,21 @@ export function enablePrice(priceId) { method: 'put' }) } + +// 查询属性值 +export function getPriceProperty(query) { + return request({ + url: '/yh/price/property', + method: 'get', + params: query + }) +} + +// 查询单条单价 +export function getSinglePrice(query) { + return request({ + url: '/yh/price/single', + method: 'get', + params: query + }) +} diff --git a/src/api/yh/report.js b/src/api/yh/report.js index 47a9067..417b6b1 100644 --- a/src/api/yh/report.js +++ b/src/api/yh/report.js @@ -50,7 +50,7 @@ export function delReport(reportId) { }) } -// 审核报表 +// 主管审核报表 export function verifyReport(reportId, pass, verifyRemark) { return request({ url: '/yh/report/verify', @@ -63,6 +63,31 @@ export function verifyReport(reportId, pass, verifyRemark) { }) } +// 财务审核报表 +export function financeVerifyReport(reportId, pass, verifyRemark) { + return request({ + url: '/yh/report/financeVerify', + method: 'put', + data: { + reportId, + pass, + verifyRemark + } + }) +} + +// 反审核报表 +export function unVerifyReport(reportId) { + return request({ + url: '/yh/report/unVerify', + method: 'put', + params: { + reportId + } + }) +} + + // 取消提交 export function cancelReport(reportId) { return request({ diff --git a/src/api/yh/verify.js b/src/api/yh/verify.js new file mode 100644 index 0000000..4874fe9 --- /dev/null +++ b/src/api/yh/verify.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询审核记录列表 +export function listVerify(query) { + return request({ + url: '/yh/verify/list', + method: 'get', + params: query + }) +} + +// 查询审核记录详细 +export function getVerify(id) { + return request({ + url: '/yh/verify/' + id, + method: 'get' + }) +} + +// 新增审核记录 +export function addVerify(data) { + return request({ + url: '/yh/verify', + method: 'post', + data: data + }) +} + +// 修改审核记录 +export function updateVerify(data) { + return request({ + url: '/yh/verify', + method: 'put', + data: data + }) +} + +// 删除审核记录 +export function delVerify(id) { + return request({ + url: '/yh/verify/' + id, + method: 'delete' + }) +} diff --git a/src/components/Business/Price/PricePropertySelect.vue b/src/components/Business/Price/PricePropertySelect.vue new file mode 100644 index 0000000..103a341 --- /dev/null +++ b/src/components/Business/Price/PricePropertySelect.vue @@ -0,0 +1,103 @@ + + + diff --git a/src/components/Business/mixins.js b/src/components/Business/mixins.js index d89287b..fe59bfa 100644 --- a/src/components/Business/mixins.js +++ b/src/components/Business/mixins.js @@ -1,4 +1,4 @@ -import {isDeepEqual} from "@/utils"; +import { isDeepEqual } from "@/utils"; export const $businessInput = { @@ -136,10 +136,11 @@ export const $businessInput = { value = selected[this.prop]; } this.$emit('submit', selected); - if (!isDeepEqual(this.value, value)) { + let hasChange = !isDeepEqual(this.value, value); + this.inputValue(value); + if (hasChange) { this.$emit('change', selected); } - this.inputValue(value); this.closeDialog(); }, closeDialog() { diff --git a/src/utils/constants.js b/src/utils/constants.js index 3c89409..30426a3 100644 --- a/src/utils/constants.js +++ b/src/utils/constants.js @@ -1,5 +1,5 @@ // 视图 -import { getLastDate, getLastDateTimeEnd, getLastDateTimeStart, getLastMonth, getLastMonthTimeEnd } from "@/utils/index"; +import { getLastDateStr, getLastDateTimeEnd, getLastDateTimeStart, getLastMonthEndStr, getLastMonthStartStr } from "@/utils/index"; export const views = { } @@ -52,10 +52,11 @@ export const IncomeMode = { // 报表状态 export const ReportStatus = { - WAIT_SUBMIT: "1", // 未提交 - WAIT_VERIFY: "2", // 待审核 + WAIT_SUBMIT: "1", // 待提交 + WAIT_VERIFY: "2", // 主管审核中 PASS: "3", // 已通过 REJECT: "4", // 未通过 + WAIT_FINANCE_VERIFY: "5", // 财务审核中 // 允许编辑 canEdit(status) { return [this.WAIT_SUBMIT, this.REJECT].includes(status); @@ -68,17 +69,25 @@ export const ReportStatus = { canCancel(status) { return [this.WAIT_VERIFY].includes(status); }, - // 允许审核 + // 允许主管审核 canVerify(status) { return [this.WAIT_VERIFY].includes(status); }, + // 允许财务审核 + canFinanceVerify(status) { + return [this.WAIT_FINANCE_VERIFY].includes(status); + }, // 允许删除 canDel(status) { return [this.WAIT_SUBMIT, this.REJECT].includes(status); }, - // 是否已审核过的状态 - isVerified(status) { - return [this.PASS, this.REJECT].includes(status); + // 允许重置审核员 + canResetVerify(status) { + return [this.REJECT].includes(status); + }, + // 允许反审核 + canUnVerify(status) { + return [this.WAIT_FINANCE_VERIFY, this.PASS].includes(status); } } @@ -126,24 +135,24 @@ export const DatePickerOptions = { // 默认 DEFAULT: { shortcuts: [{ - text: '最近一周', + text: '最近7天', onClick(picker) { - const end = getLastDate(0); - const start = getLastDate(6); + const end = getLastDateStr(0); + const start = getLastDateStr(6); picker.$emit('pick', [start, end]); } }, { - text: '最近一个月', + text: '本月', onClick(picker) { - const end = getLastDate(0); - const start = getLastMonth(1); + const end = getLastDateStr(0); + const start = getLastMonthStartStr(0); picker.$emit('pick', [start, end]); } }, { - text: '最近三个月', + text: '上月', onClick(picker) { - const end = getLastDate(0); - const start = getLastMonth(3); + const end = getLastMonthEndStr(1); + const start = getLastMonthStartStr(1); picker.$emit('pick', [start, end]); } }] @@ -187,3 +196,8 @@ export const DatePickerOptions = { } } } + +// 审核业务类型 +export const VerifyBstType = { + REPORT: "1", // 报表 +} diff --git a/src/utils/date.js b/src/utils/date.js index 1bb0a0c..83ae3bc 100644 --- a/src/utils/date.js +++ b/src/utils/date.js @@ -46,3 +46,14 @@ export function calcSecond(start, end) { let endDate = toDate(end); return Math.floor((endDate.getTime() - startDate.getTime()) / 1000); } + + +// 获取星期几 +export function getWeekDay(dateStr) { + if (!dateStr) { + return '' + } + const date = new Date(dateStr) + const weekDays = ['周日', '周一', '周二', '周三', '周四', '周五', '周六'] + return weekDays[date.getDay()] +} \ No newline at end of file diff --git a/src/utils/index.js b/src/utils/index.js index 0cafd69..cc37e1c 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -520,6 +520,58 @@ export function getLastDateTimeEnd(n) { return new Date(getLastDateTimeEndStr(n)); } +// 获取前N个月的开始日期 +export function getLastMonthStart(n) { + const date = new Date(); + const year = date.getFullYear(); + const month = date.getMonth(); + + // 设置为目标月份的1号 + date.setMonth(month - n); + date.setDate(1); + + // 如果月份不对,说明超出范围需要调整 + if (date.getMonth() !== (month - n + 12) % 12) { + date.setFullYear(year - 1); + date.setMonth(month - n + 12); + date.setDate(1); + } + + return date; +} + +// 获取前N个月的开始日期字符串 +export function getLastMonthStartStr(n) { + let date = getLastMonthStart(n); + return parseTime(date, "{y}-{m}-{d}"); +} + +// 获取前N个月的结束日期 +export function getLastMonthEnd(n) { + const date = new Date(); + const year = date.getFullYear(); + const month = date.getMonth(); + + // 设置为目标月份的下个月1号 + date.setMonth(month - n + 1); + date.setDate(0); + + // 如果月份不对,说明超出范围需要调整 + if (date.getMonth() !== (month - n + 1 + 12) % 12) { + date.setFullYear(year - 1); + date.setMonth(month - n + 1 + 12); + date.setDate(0); + } + + return date; +} + +// 获取前N个月的结束日期字符串 +export function getLastMonthEndStr(n) { + let date = getLastMonthEnd(n); + return parseTime(date, "{y}-{m}-{d}"); +} + // 展示分数 export function formatFraction(numerator, denominator) { if (denominator === 1) { diff --git a/src/views/dashboard/tables/ProdDailyNum.vue b/src/views/dashboard/tables/ProdDailyNum.vue new file mode 100644 index 0000000..1b43616 --- /dev/null +++ b/src/views/dashboard/tables/ProdDailyNum.vue @@ -0,0 +1,567 @@ + + + + + \ No newline at end of file diff --git a/src/views/dashboard/tables/UserProdDailySalary.vue b/src/views/dashboard/tables/UserProdDailySalary.vue new file mode 100644 index 0000000..dcaa5f4 --- /dev/null +++ b/src/views/dashboard/tables/UserProdDailySalary.vue @@ -0,0 +1,246 @@ + + + + + \ No newline at end of file diff --git a/src/views/yh/prodOrder/components/ProdOrderProgress.vue b/src/views/yh/prodOrder/components/ProdOrderProgress.vue index ec19822..54fc66e 100644 --- a/src/views/yh/prodOrder/components/ProdOrderProgress.vue +++ b/src/views/yh/prodOrder/components/ProdOrderProgress.vue @@ -1,11 +1,9 @@ @@ -32,6 +30,14 @@ export default { type: String, default: "80px", } + }, + computed: { + formatPercentage() { + if (this.percentage == null || !isNaN(this.percentage)) { + return 0; + } + return this.percentage.toFixed(2); + } } } diff --git a/src/views/yh/prodOrder/index.vue b/src/views/yh/prodOrder/index.vue index 1116f2a..c15ffd3 100644 --- a/src/views/yh/prodOrder/index.vue +++ b/src/views/yh/prodOrder/index.vue @@ -40,6 +40,15 @@ + + + + + - + + + + 搜索 重置 @@ -109,22 +118,34 @@ - + + + {{totalAmount(d.row) | fix1 | dv}} @@ -201,6 +204,7 @@ export default { let list = userList.map(item => ({ userId: item.userId, num: null, + confiscate: false, // vo userName: item.nickName, userNo: item.userNo, diff --git a/src/views/yh/report/edit-v2/index.vue b/src/views/yh/report/edit-v2/index.vue index eeb31bc..8a7304a 100644 --- a/src/views/yh/report/edit-v2/index.vue +++ b/src/views/yh/report/edit-v2/index.vue @@ -59,9 +59,8 @@ import FormCol from "@/components/FormCol/index.vue"; import DeptTreeSelect from "@/components/Business/Dept/DeptTreeSelect.vue"; import {addReport, getReport, updateReport} from "@/api/yh/report"; import EditHeader from "@/components/EditHeader/index.vue"; -import {isEmpty, notNullDecimal} from "@/utils"; +import {notNullDecimal} from "@/utils"; import {mapGetters} from "vuex"; -import Decimal from "decimal.js"; import {DatePickerOptions} from "@/utils/constants"; import ReportProductList from '@/views/yh/report/edit-v2/components/ReportProductList.vue'; import { parseTime } from '@/utils/ruoyi.js'; diff --git a/src/views/yh/report/edit/components/ReportProductOrderListEdit.vue b/src/views/yh/report/edit/components/ReportProductOrderListEdit.vue index 43194a0..148643b 100644 --- a/src/views/yh/report/edit/components/ReportProductOrderListEdit.vue +++ b/src/views/yh/report/edit/components/ReportProductOrderListEdit.vue @@ -15,28 +15,6 @@ - - - - - - - - - - - - - - - - -