Browse Source

添加报表页面(库存余额报表按库位、库存余额报表按ERP库位)

dev_web_online
安虹睿 2 years ago
parent
commit
cdc1b72943
  1. 2
      fe/PC/public/version.json
  2. 4
      fe/PC/src/filters/excelOrReportsOption.js
  3. 24
      fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationCode.vue
  4. 24
      fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationErpCode.vue

2
fe/PC/public/version.json

@ -1,3 +1,3 @@
{ {
"version": "1.0.12" "version": "1.0.13"
} }

4
fe/PC/src/filters/excelOrReportsOption.js

@ -47,6 +47,6 @@ export const reportsAddress = {
InventoryAgingSegmentSummary:reportsUrl + '202211300912101560.rdlx',//库存账龄分段汇总表 InventoryAgingSegmentSummary:reportsUrl + '202211300912101560.rdlx',//库存账龄分段汇总表
InventoryBookDetail:reportsUrl + '202212162111466911.rdlx',//库存流水帐明细 InventoryBookDetail:reportsUrl + '202212162111466911.rdlx',//库存流水帐明细
InventoryBookSummary:reportsUrl + '202212162112124488.rdlx',//库存流水帐汇总 InventoryBookSummary:reportsUrl + '202212162112124488.rdlx',//库存流水帐汇总
// 缺少: inventoryBalanceReportLocationCode:reportsUrl + '202211300922434082.rdlx',//库存余额报表按库位
// 安全库存 inventoryBalanceReportLocationErpCode:reportsUrl + '202211300922434083.rdlx',//库存余额报表按ERP库位
} }

24
fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationCode.vue

@ -0,0 +1,24 @@
<template>
<!-- 库存余额报表按库位 -->
<iframe :src="url" class="fullPageIframe"></iframe>
</template>
<script>
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"inventoryBalanceReportLocationCode",
// data() {
// return {
// url:reportsAddress.InventoryBlanace,
// }
// },
data() {
return {
url:null
}
},
activated () {
createNewTabs(reportsAddress.inventoryBalanceReportLocationCode)
}
}
</script>

24
fe/PC/src/views/activeReportManage/reportForm/inventoryBalanceReportLocationErpCode.vue

@ -0,0 +1,24 @@
<template>
<!-- 库存余额报表按ERP库位 -->
<iframe :src="url" class="fullPageIframe"></iframe>
</template>
<script>
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"inventoryBalanceReportLocationErpCode",
// data() {
// return {
// url:reportsAddress.InventoryBlanace,
// }
// },
data() {
return {
url:null
}
},
activated () {
createNewTabs(reportsAddress.inventoryBalanceReportLocationErpCode)
}
}
</script>
Loading…
Cancel
Save