Browse Source

【nev-pc】报表挂载开发

dev_pc_nev
安虹睿 3 months ago
parent
commit
52ee9fe8a1
  1. 8
      fe/PC/src/filters/excelOrReportsOption.js
  2. 21
      fe/PC/src/views/activeReportManage/reportForm/InventoryBalanceAg.vue
  3. 21
      fe/PC/src/views/activeReportManage/reportForm/dailyReconciliation.vue
  4. 21
      fe/PC/src/views/activeReportManage/reportForm/putInDetails.vue
  5. 21
      fe/PC/src/views/activeReportManage/reportForm/putOutDetails.vue
  6. 21
      fe/PC/src/views/activeReportManage/reportForm/putaway.vue
  7. 21
      fe/PC/src/views/activeReportManage/reportForm/returnAfterListing.vue
  8. 21
      fe/PC/src/views/activeReportManage/reportForm/returnBeforeListing.vue

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

@ -96,6 +96,14 @@ export const reportsAddress = {
inspection:reportsUrl + 'inspection',//质检报表
openingBalance:reportsUrl + 'openingBalance',//开账信息查询报表
ItemStoreRelationReport:reportsUrl + 'ItemStoreRelation',//库位零件关系查询报表
// 0307新增
dailyReconciliation:reportsUrl + 'dailyReconciliation',//系统库存每日对账表
returnBeforeListing:reportsUrl + 'returnBeforeListing',//上架前退货
returnAfterListing:reportsUrl + 'returnAfterListing',//上架后退货
putaway:reportsUrl + 'putaway',//采购上架
putInDetails:reportsUrl + 'putInDetails',//入库明细
putOutDetails:reportsUrl + 'putOutDetails',//出库明细
InventoryBalanceAg:reportsUrl + 'InventoryBalance',//库存余额
// InventoryBookDetail:reportsUrl + '202212162111466911.rdlx',//库存流水帐明细
// InventoryBookSummary:reportsUrl + '202212162112124488.rdlx',//库存流水帐汇总

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

@ -0,0 +1,21 @@
<template>
<!-- 库存余额 -->
<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:"InventoryBalanceAg",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.InventoryBalanceAg + '?title=' + this.$route.meta.title)
}
}
}
</script>

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

@ -0,0 +1,21 @@
<template>
<!-- 系统库存每日对账表 -->
<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:"dailyReconciliation",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.dailyReconciliation + '?title=' + this.$route.meta.title)
}
}
}
</script>

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

@ -0,0 +1,21 @@
<template>
<!-- 入库明细 -->
<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:"putInDetails",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.putInDetails + '?title=' + this.$route.meta.title)
}
}
}
</script>

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

@ -0,0 +1,21 @@
<template>
<!-- 入库明细 -->
<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:"putOutDetails",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.putOutDetails + '?title=' + this.$route.meta.title)
}
}
}
</script>

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

@ -0,0 +1,21 @@
<template>
<!-- 采购上架报表 -->
<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:"putaway",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.putaway + '?title=' + this.$route.meta.title)
}
}
}
</script>

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

@ -0,0 +1,21 @@
<template>
<!-- 上架后退货 -->
<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:"returnAfterListing",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.returnAfterListing + '?title=' + this.$route.meta.title)
}
}
}
</script>

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

@ -0,0 +1,21 @@
<template>
<!-- 上架前退货 -->
<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:"returnBeforeListing",
components:{popUpPage},
mounted () {
this.openHandle()
},
methods:{
openHandle(){
createNewTabs(reportsAddress.returnBeforeListing + '?title=' + this.$route.meta.title)
}
}
}
</script>
Loading…
Cancel
Save