Commit a4872e4c authored by 黄奎's avatar 黄奎

页面修改

parent a518fcf6
......@@ -111,6 +111,13 @@ namespace Edu.Module.Course
public List<RB_ReturnMoney_Batch_ViewModel> GetCommissionPeriodsPageList(int pageIndex, int pageSize, out long count, RB_ReturnMoney_Batch_ViewModel dmodel)
{
var list = returnMoney_BatchRepository.GetPageList(pageIndex, pageSize, out count, dmodel.CommissionType, dmodel.Month, dmodel.GroupId);
if (list != null && list.Count > 0)
{
foreach (var item in list)
{
item.TotalMoney = item.TotalEmployee + item.TotalCustomer + item.TotalInternal + item.TotalTrans;
}
}
return list;
}
......
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