From 61a0644cedf0319948d832e720745aa6498c7658 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A3=B7=E5=8F=B6?= <14103883+leaf-phos@user.noreply.gitee.com> Date: Tue, 1 Apr 2025 16:09:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/dashboard/reportProd.js | 8 + src/api/dashboard/reportUserProd.js | 9 + src/api/yh/price.js | 18 + src/api/yh/report.js | 27 +- src/api/yh/verify.js | 44 ++ .../Business/Price/PricePropertySelect.vue | 103 ++++ src/components/Business/mixins.js | 7 +- src/utils/constants.js | 46 +- src/utils/date.js | 11 + src/utils/index.js | 52 ++ src/views/dashboard/tables/ProdDailyNum.vue | 567 ++++++++++++++++++ .../dashboard/tables/UserProdDailySalary.vue | 246 ++++++++ .../components/ProdOrderProgress.vue | 12 +- src/views/yh/prodOrder/index.vue | 69 ++- src/views/yh/prodOrder/mixins.js | 13 - src/views/yh/prodOrder/view/view.vue | 2 +- .../edit-v2/components/ReportProductList.vue | 91 ++- .../components/ReportProductUserList.vue | 4 + src/views/yh/report/edit-v2/index.vue | 3 +- .../components/ReportProductOrderListEdit.vue | 34 -- src/views/yh/report/index.vue | 25 +- src/views/yh/report/view/view.vue | 71 ++- .../ReportOrderProdDescriptions.vue | 1 - .../components/ReportUserProdDescriptions.vue | 5 +- src/views/yh/reportUserProd/index.vue | 9 + src/views/yh/verify/index.vue | 282 +++++++++ 26 files changed, 1574 insertions(+), 185 deletions(-) create mode 100644 src/api/yh/verify.js create mode 100644 src/components/Business/Price/PricePropertySelect.vue create mode 100644 src/views/dashboard/tables/ProdDailyNum.vue create mode 100644 src/views/dashboard/tables/UserProdDailySalary.vue create mode 100644 src/views/yh/verify/index.vue 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + 查询 + 重置 + + + + + + + 自定义合并顺序: + + + + + + > + + + + > + + + + + + + + + + + + + + + + + + + {{ date }} + {{ getWeekDay(date) }} + + + {{ scope.row[date] | dv }} + + + + + + + {{ scope.row.totalNum | dv }} + + + + + + + + + \ 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 @@ + + + + + + + + + + + + + + + + + + + 查询 + 重置 + + + + + + + + + + + + {{ date }} + {{ getWeekDay(date) }} + + + {{ scope.row[date] | fix2 | dv }} + + + + + {{ scope.row.totalAmount | fix2 | dv }} + + + + + + + + + \ 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 @@ {{d.row[column.key]}} - - + + 跟踪号:{{d.row.erpMtoNo | dv}} + + + 返工 + + 订单编号:{{d.row.erpBillNo | dv }} + 物料编码:{{d.row.materialNumber | dv }} - - - - - - - - - - - - 数量:{{d.row.erpQty | dv}} {{d.row.unitName}} - 未入库:{{d.row.erpNoStockInQty | dv}} {{d.row.unitName}} + + + + + 数量:{{d.row.erpQty | dv}} {{d.row.unitName}} + + + 未入库:{{d.row.erpNoStockInQty | dv}} {{d.row.unitName}} + + + 基本:{{d.row.erpBaseUnitQty | dv}} + + + 基本未入库:{{d.row.erpBaseNoStockInQty | dv}} + + + 基本已审核:{{d.row.verifiedBaseNum | dv}} + + {{d.row[column.key]}} @@ -132,8 +153,6 @@ 单据日期:{{d.row.erpDate | dv}} - 下达:{{d.row.erpConveyDate | dv}} 同步:{{d.row.syncTime | dv}} @@ -223,20 +242,13 @@ export default { columns: [ {key: 'id', visible: false, label: '生产订单ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: null}, {key: 'erpId', visible: false, label: 'ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: null}, - {key: 'erpMtoNo', visible: true, label: '跟踪号', minWidth: null, sortable: true, overflow: false, align: 'center', width: "100"}, - {key: 'erpBillNo', visible: true, label: '编号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null}, - {key: 'erpStatus', visible: true, label: '状态', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"}, - {key: 'erpDocumentStatus', visible: false, label: '单据', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"}, - {key: 'erpDescription', visible: false, label: '主备注', minWidth: null, sortable: true, overflow: false, align: 'center', width: null}, - {key: 'materialNumber', visible: true, label: '物料', minWidth: null, sortable: false, overflow: false, align: 'center', width: null}, + {key: 'orderInfo', visible: true, label: '订单信息', minWidth: "150", sortable: false, overflow: false, align: 'left',width: null}, + {key: 'progress', visible: true, label: '进度', minWidth: null, sortable: true, overflow: false, align: 'left', width: "300"}, {key: 'fauxProp', visible: true, label: '辅助属性', minWidth: null, sortable: true, overflow: true, align: 'center', width: null}, {key: 'workShopName', visible: true, label: '车间', minWidth: null, sortable: true, overflow: false, align: 'center', width: "100"}, - {key: 'erpIsRework', visible: true, label: '返工', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"}, - {key: 'percentage', visible: true, label: '进度', minWidth: null, sortable: false, overflow: false, align: 'left', width: "120"}, - {key: 'erpRowId', visible: false, label: '行标识', minWidth: null, sortable: true, overflow: true, align: 'center', width: null}, {key: 'erpMemoItem', visible: true, label: '备注', minWidth: null, sortable: true, overflow: true, align: 'center', width: null}, - {key: 'time', visible: true, label: '时间', minWidth: null, sortable: false, overflow: false, align: 'left', width: "170"}, - {key: 'erpReqSrc', visible: false, label: '来源', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"}, + {key: 'erpRowId', visible: false, label: '行标识', minWidth: null, sortable: true, overflow: true, align: 'center', width: null}, + {key: 'time', visible: true, label: '时间', minWidth: null, sortable: false, overflow: false, align: 'left', width: "170"}, {key: 'erpBaseUnitQty', visible: false, label: '基本', minWidth: null, sortable: true, overflow: false, align: 'center', width: null}, {key: 'erpBaseNoStockInQty', visible: false, label: '基本未入库', minWidth: null, sortable: true, overflow: false, align: 'center', width: null}, {key: 'baseUnitName', visible: false, label: '基本单位', minWidth: null, sortable: true, overflow: false, align: 'center', width: null}, @@ -286,6 +298,7 @@ export default { productType: null, materialNo: null, erpStatusList: [], + progressRange: [], erpIsRework: null, erpBillNo: null, erpDocumentStatus: null, diff --git a/src/views/yh/prodOrder/mixins.js b/src/views/yh/prodOrder/mixins.js index e503e61..6a7fa78 100644 --- a/src/views/yh/prodOrder/mixins.js +++ b/src/views/yh/prodOrder/mixins.js @@ -1,16 +1,3 @@ -import {notNullDecimal} from "@/utils"; export const $prodOrder = { - computed: { - // 生产进度百分比 - percentage() { - return (row) => { - return notNullDecimal( - notNullDecimal(row.verifiedBaseNum) - .div(notNullDecimal(row.erpBaseUnitQty)) - .toFixed(2) - ).toNumber(); - } - } - } } diff --git a/src/views/yh/prodOrder/view/view.vue b/src/views/yh/prodOrder/view/view.vue index 3d6a49c..60c031a 100644 --- a/src/views/yh/prodOrder/view/view.vue +++ b/src/views/yh/prodOrder/view/view.vue @@ -26,7 +26,7 @@ {{detail.erpNoStockInQty | dv}} {{detail.unitName}} {{detail.syncTime | dv}} - + diff --git a/src/views/yh/report/edit-v2/components/ReportProductList.vue b/src/views/yh/report/edit-v2/components/ReportProductList.vue index eab92f0..35aebaa 100644 --- a/src/views/yh/report/edit-v2/components/ReportProductList.vue +++ b/src/views/yh/report/edit-v2/components/ReportProductList.vue @@ -42,23 +42,20 @@ - + - + - + - + - @@ -77,18 +74,10 @@ - handlePriceChange(d.row, val)" - style="width: 100%;" - :ref="`priceSelect${d.index}`" - /> + + 无单价 + {{d.row.pricePrice | fix2 | dv}} + { - // 每次调用该方法时都会使用最新的row数据来构建查询参数 - console.log("priceQuery with updated row data:", row); - return { - deptId: this.form.deptId, - statusList: PriceStatus.canUse(), - disabled: false, - eqCategory: row.priceCategory, - eqSize: row.priceSize, - eqPattern: row.pricePattern, - eqName: row.priceName, - needAllMatch: true - } + propertyQuery() { + return { + deptId: this.form.deptId, + statusList: PriceStatus.canUse(), + disabled: false, } }, totalAmount() { @@ -284,6 +266,9 @@ export default { this.showPattern = localStorage.getItem("report_show_pattern") === "true"; }, methods: { + handlePropertyChange(row) { + this.selectPrice(row); + }, // 判断良品是公式则计算出结果 handleChangeNum(row, val) { if (val != null) { @@ -375,15 +360,23 @@ export default { localStorage.setItem("report_show_pattern", val); }, // 选择工序 - selectPrice(index) { - // 获取当前行对象 - const row = this.form.productList[index]; - // 确保PriceSelect组件能获取到最新的参数 - this.$nextTick(() => { - if (this.$refs[`priceSelect${index}`]) { - this.$refs[`priceSelect${index}`].getOptionsAndSelectFirst(); + selectPrice(row) { + console.log('selectPrice', row); + // 查询并获取单价 + getSinglePrice( { + deptId: this.form.deptId, + statusList: PriceStatus.canUse(), + disabled: false, + eqCategory: row.priceCategory, + eqSize: row.priceSize, + eqPattern: row.pricePattern, + eqName: row.priceName, + needAllMatch: true + }).then(res => { + if (res.code == 200) { + this.handlePriceChange(row, res.data); } - }); + }) }, // 优化展开行处理 handleDetail(row) { @@ -418,10 +411,6 @@ export default { row.priceQuantityDenominator = val.quantityDenominator || null; row.priceCode = val.code || null; row.priceStatus = val.status || null; - // row.priceCategory = val.category; - // row.priceSize = val.size; - // row.priceName = val.name; - // row.pricePattern = val.pattern; } }, checkPriceChange(ov, nv) { @@ -545,14 +534,8 @@ export default { // 如果是修改价格相关字段,需要重新查询单价 if (isEditPrice) { - // 使用nextTick确保UI更新后再查询价格 - this.$nextTick(() => { - for (let i = 0; i < this.rows.length; i++) { - let index = this.form.productList.indexOf(this.rows[i]); - if (index != -1) { - this.selectPrice(index); - } - } + this.rows.forEach(row => { + this.selectPrice(row); }); } this.$message.success(`批量编辑成功,一共修改了${this.rows.length}行数据`); diff --git a/src/views/yh/report/edit-v2/components/ReportProductUserList.vue b/src/views/yh/report/edit-v2/components/ReportProductUserList.vue index 305d8cb..f6488a8 100644 --- a/src/views/yh/report/edit-v2/components/ReportProductUserList.vue +++ b/src/views/yh/report/edit-v2/components/ReportProductUserList.vue @@ -23,6 +23,9 @@ + + + {{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 @@ - - - - - - - - - - - - - - - - - { - let plan = notNullDecimal(row.orderErpBaseUnitQty); // 基本计划数量 - let noStock = notNullDecimal(row.orderErpBaseNoStockInQty); // ERP基本未入库数量 - let current = notNullDecimal(calcMulDecimal(row.num, this.quantity)); // 当前填入数量 * 倍数 - console.log(`plan ${plan} noStock ${noStock} current ${current} quantity ${this.quantity}`) - return new Decimal( - current.add(plan.sub(noStock)).mul(new Decimal(100)).div(plan).toFixed(2) - ).toNumber(); - } - }, /** * 订单查询条件 */ diff --git a/src/views/yh/report/index.vue b/src/views/yh/report/index.vue index 9bdab31..29014ce 100644 --- a/src/views/yh/report/index.vue +++ b/src/views/yh/report/index.vue @@ -141,6 +141,14 @@ v-has-permi="['yh:report:submit']" v-show="ReportStatus.canSubmit(scope.row.status)" >提交 + 反审核