Browse Source

库存流水帐汇总(ERP储位)-账期 + 库存流水账汇总(WMS库位)-账期

dev_web_online
安虹睿 2 years ago
parent
commit
16a8a73afe
  1. 2
      fe/PC/src/filters/excelOrReportsOption.js
  2. 21
      fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryERP_pay.vue
  3. 21
      fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryWMS_pay.vue

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

@ -50,4 +50,6 @@ export const reportsAddress = {
inventoryBalanceReportLocationCode:reportsUrl + '202211300922434082.rdlx',//库存余额报表按库位
inventoryBalanceReportLocationErpCode:reportsUrl + '202211300922434083.rdlx',//库存余额报表按ERP库位
InventoryBookSummaryLocation:reportsUrl + '202212162112124489.rdlx',//库存流水帐汇总(库位)
InventoryBookSummaryERP_pay:reportsUrl + '库存流水帐汇总ERP.rdlx',//库存流水帐汇总(ERP储位)-账期
InventoryBookSummaryWMS_pay:reportsUrl + '库存流水账汇总库位.rdlx',//库存流水账汇总(WMS库位)-账期
}

21
fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryERP_pay.vue

@ -0,0 +1,21 @@
<template>
<!-- 库存流水帐汇总ERP储位-账期 -->
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"InventoryBookSummaryERP_pay",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.InventoryBookSummaryLocation + '?title=' + this.$route.meta.title)
}
}
}
</script>

21
fe/PC/src/views/activeReportManage/reportForm/InventoryBookSummaryWMS_pay.vue

@ -0,0 +1,21 @@
<template>
<!-- 库存流水账汇总WMS库位-账期 -->
<popUpPage :openHandle="openHandle"></popUpPage>
</template>
<script>
import popUpPage from "../popUpPage/index.vue"
import { reportsAddress } from "@/filters/excelOrReportsOption";
import { createNewTabs } from '@/utils/index'
export default {
name:"InventoryBookSummaryWMS_pay",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.InventoryBookSummaryLocation + '?title=' + this.$route.meta.title)
}
}
}
</script>
Loading…
Cancel
Save