Commit 3ca6cba1 authored by Mac's avatar Mac

新增班级收支统计

parent cb55f1f0
...@@ -203,5 +203,16 @@ export function setSellCommissionSendEmployee(data) { ...@@ -203,5 +203,16 @@ export function setSellCommissionSendEmployee(data) {
} }
// 获取月度班级收支统计
export function getAllClassNowMonthStatistics(data) {
return request({
url: '/finance/GetAllClassNowMonthStatistics',
method: 'post',
data
});
}
...@@ -238,9 +238,10 @@ ...@@ -238,9 +238,10 @@
}); });
}, },
gourlteacher2(path,row,item) { gourlteacher2(path,row,item) {
let StudentName = encodeURI(row.StudentName)
this.OpenNewUrl('/financial/'+path, { this.OpenNewUrl('/financial/'+path, {
ClassId: this.ClassId, ClassId: this.ClassId,
StudentName:row.StudentName, StudentName:StudentName,
datetype:'2', datetype:'2',
StartMonth:item.Month, StartMonth:item.Month,
EndMonth:item.Month, EndMonth:item.Month,
......
...@@ -1425,7 +1425,7 @@ ...@@ -1425,7 +1425,7 @@
} }
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
if (this.$route.query.BranchId) { if (this.$route.query.BranchId) {
this.msg.SchoolId = this.$route.query.BranchId != undefined ? this.$route.query.BranchId : ''; this.msg.SchoolId = this.$route.query.BranchId != undefined ? Number( this.$route.query.BranchId ): '';
} else { } else {
if (userInfo.School_Id > 0) { if (userInfo.School_Id > 0) {
......
This diff is collapsed.
...@@ -243,7 +243,7 @@ ...@@ -243,7 +243,7 @@
this.msg.ClassId = Number(this.$route.query.ClassId) this.msg.ClassId = Number(this.$route.query.ClassId)
} }
if(this.$route.query && this.$route.query.StudentName){ if(this.$route.query && this.$route.query.StudentName){
this.msg.StudentName = this.$route.query.StudentName this.msg.StudentName = decodeURI(this.$route.query.StudentName)
} }
}, },
......
...@@ -238,9 +238,10 @@ ...@@ -238,9 +238,10 @@
}); });
}, },
gourlteacher2(path,row,item) { gourlteacher2(path,row,item) {
let StudentName = encodeURI(row.StudentName)
this.OpenNewUrl('/financial/'+path, { this.OpenNewUrl('/financial/'+path, {
ClassId: this.ClassId, ClassId: this.ClassId,
StudentName:row.StudentName, StudentName:StudentName,
datetype:'2', datetype:'2',
StartMonth:item.Month, StartMonth:item.Month,
EndMonth:item.Month, EndMonth:item.Month,
......
...@@ -537,6 +537,11 @@ const routes = [{ ...@@ -537,6 +537,11 @@ const routes = [{
component: () => component: () =>
import("pages/financial/financalDocument/BasicDocuments.vue") import("pages/financial/financalDocument/BasicDocuments.vue")
}, },
{
path: "/financial/reportform/RecPayQueryTeam", //财务报表 月度班级收支统计
component: () =>
import("pages/financial/reportform/RecPayQueryTeam.vue")
},
{ {
path: "/administration/document", //行政公告 path: "/administration/document", //行政公告
component: () => component: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment