Browse Source

添加库存流水帐汇总(库位)报表

dev_web_online
安虹睿 2 years ago
parent
commit
17fd6fbea4
  1. 1
      fe/PC/src/filters/excelOrReportsOption.js
  2. 24
      fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryLocation.vue

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

@ -49,4 +49,5 @@ export const reportsAddress = {
InventoryBookSummary:reportsUrl + '202212162112124488.rdlx',//库存流水帐汇总
inventoryBalanceReportLocationCode:reportsUrl + '202211300922434082.rdlx',//库存余额报表按库位
inventoryBalanceReportLocationErpCode:reportsUrl + '202211300922434083.rdlx',//库存余额报表按ERP库位
InventoryBookSummaryLocation:reportsUrl + '202211300922434083.rdlx',//库存流水帐汇总(库位)
}

24
fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryLocation.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:"InventoryBookSummaryLocation",
// data() {
// return {
// url: reportsAddress.InventoryBookSummaryLocation,
// }
// },
data() {
return {
url:null
}
},
activated () {
createNewTabs(reportsAddress.InventoryBookSummaryLocation)
}
}
</script>
Loading…
Cancel
Save