@@ -85,7 +85,8 @@ | |||||
}; | }; | ||||
function studentCheckData(Monday, Sunday) { | function studentCheckData(Monday, Sunday) { | ||||
var studCheckList = $('.studCheckList'); | var studCheckList = $('.studCheckList'); | ||||
learun.httpget(config.webapi + "learun/adms/timetable/StuLessonInfo", {}, (data) => { | |||||
var param = { StartDate: Monday, EndDate: Sunday }; | |||||
learun.httpget(config.webapi + "learun/adms/timetable/StuLessonInfo", param, (data) => { | |||||
console.log(data); | console.log(data); | ||||
$.each(data, function (i, n) { | $.each(data, function (i, n) { | ||||
var html = ''; | var html = ''; | ||||
@@ -13,12 +13,12 @@ | |||||
<add name="CollegeMIS" connectionString="Server=112.45.152.8;Initial Catalog=NewCollegeMIS;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" /> | <add name="CollegeMIS" connectionString="Server=112.45.152.8;Initial Catalog=NewCollegeMIS;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" /> | ||||
<add name="hangfireString" connectionString="Server=112.45.152.8;Initial Catalog=HangFire;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" />--> | <add name="hangfireString" connectionString="Server=112.45.152.8;Initial Catalog=HangFire;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" />--> | ||||
<!--demo.quanjiang.com--> | <!--demo.quanjiang.com--> | ||||
<!--<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" />--> | |||||
<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
<!--<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" />--> | |||||
<!--<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_20200403test;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <!--<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_20200403test;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_20200403test;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_20200403test;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
@@ -83,7 +83,8 @@ namespace Learun.Application.WebApi.Modules | |||||
public Response GetStuLessonInfo(dynamic _) | public Response GetStuLessonInfo(dynamic _) | ||||
{ | { | ||||
var lessonInfos = stuAttendanceIBLL.GetStuLessonInfo(userInfo.account); | |||||
var param = this.GetReqData<TimeParameter>(); | |||||
var lessonInfos = stuAttendanceIBLL.GetStuLessonInfo(userInfo.account,param.StartDate,param.EndDate); | |||||
var empNos = lessonInfos.Select(a => a.EmpNo).ToList(); | var empNos = lessonInfos.Select(a => a.EmpNo).ToList(); | ||||
var lessonTerms = arrangeLessonTermIBLL.GetListByEmpNo(empNos); | var lessonTerms = arrangeLessonTermIBLL.GetListByEmpNo(empNos); | ||||
@@ -91,7 +92,7 @@ namespace Learun.Application.WebApi.Modules | |||||
{ | { | ||||
a.LessonName, | a.LessonName, | ||||
LessonDate = Convert.ToDateTime(a.LessonDate).ToString("yyyy-MM-dd"), | LessonDate = Convert.ToDateTime(a.LessonDate).ToString("yyyy-MM-dd"), | ||||
Teacher = lessonTerms.FirstOrDefault(b => b.EmpNo == a.EmpNo).EmpName, | |||||
Teacher = lessonTerms.FirstOrDefault(b => b.EmpNo == a.EmpNo)?.EmpName, | |||||
a.LessonTime, | a.LessonTime, | ||||
a.EmpNo, | a.EmpNo, | ||||
a.ClassRoomName, | a.ClassRoomName, | ||||
@@ -2,8 +2,8 @@ | |||||
<connectionStrings> | <connectionStrings> | ||||
<!--<add name="BaseDb" connectionString="Server=192.168.2.126;Initial Catalog=adms7ultimate2;User ID=sa;Password=bjqj@2015!" providerName="System.Data.SqlClient" /> | <!--<add name="BaseDb" connectionString="Server=192.168.2.126;Initial Catalog=adms7ultimate2;User ID=sa;Password=bjqj@2015!" providerName="System.Data.SqlClient" /> | ||||
<add name="CollegeMIS" connectionString="Server=192.168.2.126;Initial Catalog=CollegeMIS;User ID=sa;Password=bjqj@2015!" providerName="System.Data.SqlClient" />--> | <add name="CollegeMIS" connectionString="Server=192.168.2.126;Initial Catalog=CollegeMIS;User ID=sa;Password=bjqj@2015!" providerName="System.Data.SqlClient" />--> | ||||
<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<!--<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS_西昌;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" />--> | |||||
<!--金隅--> | <!--金隅--> | ||||
<!--<add name="BaseDb" connectionString="Server=192.168.100.225;Initial Catalog=adms7ultimate2;User ID=sa;Password=Jykj@2019" providerName="System.Data.SqlClient" /> | <!--<add name="BaseDb" connectionString="Server=192.168.100.225;Initial Catalog=adms7ultimate2;User ID=sa;Password=Jykj@2019" providerName="System.Data.SqlClient" /> | ||||
@@ -11,9 +11,9 @@ | |||||
<add name="hangfireString" connectionString="Server=192.168.100.225;Initial Catalog=Hangfire;User ID=sa;Password=Jykj@2019" providerName="System.Data.SqlClient" />--> | <add name="hangfireString" connectionString="Server=192.168.100.225;Initial Catalog=Hangfire;User ID=sa;Password=Jykj@2019" providerName="System.Data.SqlClient" />--> | ||||
<!--<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" />--> | <!--<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" />--> | ||||
<!--demo.quanjiang.com--> | <!--demo.quanjiang.com--> | ||||
<!--<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="BaseDb" connectionString="Server=123.57.209.16;Initial Catalog=adms7ultimate2;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | <add name="CollegeMIS" connectionString="Server=123.57.209.16;Initial Catalog=CollegeMIS;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | ||||
<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" />--> | |||||
<add name="hangfireString" connectionString="Server=123.57.209.16;Initial Catalog=Hangfire;User ID=sa;Password=bjqjkj@2014~2015!" providerName="System.Data.SqlClient" /> | |||||
<!--西昌--> | <!--西昌--> | ||||
<!--<add name="BaseDb" connectionString="Server=112.45.152.8;Initial Catalog=adms7ultimate2;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" /> | <!--<add name="BaseDb" connectionString="Server=112.45.152.8;Initial Catalog=adms7ultimate2;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" /> | ||||
<add name="CollegeMIS" connectionString="Server=112.45.152.8;Initial Catalog=NewCollegeMIS;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" /> | <add name="CollegeMIS" connectionString="Server=112.45.152.8;Initial Catalog=NewCollegeMIS;User ID=sa;Password=qj@2018" providerName="System.Data.SqlClient" /> | ||||
@@ -1,453 +0,0 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | |||||
<PropertyGroup> | |||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |||||
<ProductVersion> | |||||
</ProductVersion> | |||||
<SchemaVersion>2.0</SchemaVersion> | |||||
<ProjectGuid>{FA8E854B-F41C-4554-A97E-8D6E076E3117}</ProjectGuid> | |||||
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> | |||||
<OutputType>Library</OutputType> | |||||
<AppDesignerFolder>Properties</AppDesignerFolder> | |||||
<RootNamespace>Learun.Application.WebApi</RootNamespace> | |||||
<AssemblyName>Learun.Application.WebApi</AssemblyName> | |||||
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> | |||||
<UseIISExpress>true</UseIISExpress> | |||||
<IISExpressSSLPort /> | |||||
<IISExpressAnonymousAuthentication /> | |||||
<IISExpressWindowsAuthentication /> | |||||
<IISExpressUseClassicPipelineMode /> | |||||
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir> | |||||
<RestorePackages>true</RestorePackages> | |||||
<UseGlobalApplicationHostFile /> | |||||
<Use64BitIISExpress /> | |||||
<SccProjectName>Learun.Application.WebApi</SccProjectName> | |||||
<SccLocalPath>1~a7250b02-76e9-4d74-aa27-f5cdf7719296</SccLocalPath> | |||||
<SccAuxPath>http://123.57.209.16:8090/VaultService</SccAuxPath> | |||||
<SccProvider>SourceGear Vault Visual Studio 2005 Client:{1EA47954-8515-402d-82D9-B5C332120A8D}</SccProvider> | |||||
<TargetFrameworkProfile /> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |||||
<DebugSymbols>true</DebugSymbols> | |||||
<DebugType>full</DebugType> | |||||
<Optimize>false</Optimize> | |||||
<OutputPath>bin\</OutputPath> | |||||
<DefineConstants>DEBUG;TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
</PropertyGroup> | |||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |||||
<DebugType>none</DebugType> | |||||
<Optimize>true</Optimize> | |||||
<OutputPath>bin\</OutputPath> | |||||
<DefineConstants>TRACE</DefineConstants> | |||||
<ErrorReport>prompt</ErrorReport> | |||||
<WarningLevel>4</WarningLevel> | |||||
</PropertyGroup> | |||||
<ItemGroup> | |||||
<Reference Include="Antlr3.Runtime, Version=3.4.1.9004, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Microsoft.CSharp" /> | |||||
<Reference Include="Microsoft.Practices.ServiceLocation"> | |||||
<HintPath>..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Microsoft.Practices.Unity"> | |||||
<HintPath>..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Microsoft.Practices.Unity.Configuration"> | |||||
<HintPath>..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.Configuration.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Microsoft.Practices.Unity.RegistrationByConvention"> | |||||
<HintPath>..\packages\Unity.4.0.1\lib\net45\Microsoft.Practices.Unity.RegistrationByConvention.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\packages\MySql.Data.6.9.9\lib\net45\MySql.Data.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\packages\MySql.Data.Entity.6.9.9\lib\net45\MySql.Data.Entity.EF6.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Nancy"> | |||||
<HintPath>..\packages\Nancy.1.4.1\lib\net40\Nancy.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Nancy.Hosting.Aspnet"> | |||||
<HintPath>..\packages\Nancy.Hosting.Aspnet.1.4.1\lib\net40\Nancy.Hosting.Aspnet.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\packages\Oracle.ManagedDataAccess.12.1.24160719\lib\net40\Oracle.ManagedDataAccess.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\packages\Oracle.ManagedDataAccess.EntityFramework.12.1.2400\lib\net45\Oracle.ManagedDataAccess.EntityFramework.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="ServiceStack.Common, Version=3.9.70.0, Culture=neutral, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\Reference\ServiceStack.Common.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="ServiceStack.Interfaces, Version=4.0.0.0, Culture=neutral, PublicKeyToken=e06fbc6124f57c43, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\Reference\ServiceStack.Interfaces.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="ServiceStack.Redis, Version=4.5.0.0, Culture=neutral, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\Reference\ServiceStack.Redis.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="ServiceStack.Text, Version=4.5.0.0, Culture=neutral, processorArchitecture=MSIL"> | |||||
<SpecificVersion>False</SpecificVersion> | |||||
<HintPath>..\Reference\ServiceStack.Text.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Data.DataSetExtensions" /> | |||||
<Reference Include="System.Net.Http" /> | |||||
<Reference Include="System.Net.Http.Formatting, Version=5.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.4\lib\net45\System.Net.Http.Formatting.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Runtime.Serialization" /> | |||||
<Reference Include="System.ServiceModel" /> | |||||
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\netstandard1.0\System.ValueTuple.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.DynamicData" /> | |||||
<Reference Include="System.Web.Entity" /> | |||||
<Reference Include="System.Web.ApplicationServices" /> | |||||
<Reference Include="System.ComponentModel.DataAnnotations" /> | |||||
<Reference Include="System" /> | |||||
<Reference Include="System.Data" /> | |||||
<Reference Include="System.Web.Extensions" /> | |||||
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.Http, Version=5.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.4\lib\net45\System.Web.Http.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.Http.WebHost, Version=5.2.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.4\lib\net45\System.Web.Http.WebHost.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.Optimization, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath> | |||||
</Reference> | |||||
<Reference Include="System.Drawing" /> | |||||
<Reference Include="System.Web" /> | |||||
<Reference Include="System.Xml" /> | |||||
<Reference Include="System.Configuration" /> | |||||
<Reference Include="System.Web.Services" /> | |||||
<Reference Include="System.EnterpriseServices" /> | |||||
<Reference Include="System.Xml.Linq" /> | |||||
<Reference Include="WebGrease, Version=1.5.2.14234, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> | |||||
<HintPath>..\packages\WebGrease.1.5.2\lib\WebGrease.dll</HintPath> | |||||
</Reference> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.GetCustFareInfoByOutIDResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.GetEcardConsumeRecordResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.GetEcardCustInfoByOutIDResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.GetEcardDeptInfoResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.GetEcardSaveRecordResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.GetEcardTermInfoResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.GetTokenResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.LogonResponse.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.ResultDTO.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.ResultDTOOfEcardConsumeRecordDTO.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.ResultDTOOfEcardCustAllInfoDTO.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.ResultDTOOfEcardCustomerFareInfo.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.ResultDTOOfEcardDeptDTO.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.ResultDTOOfEcardSaveRecordDTO.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<Content Include="Connected Services\ServiceReference_CardRecord\Learun.Application.WebApi.ServiceReference_CardRecord.ResultDTOOfEcardTermDTO.datasource"> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Content> | |||||
<None Include="Connected Services\ServiceReference_CardRecord\SynService.disco" /> | |||||
<None Include="Connected Services\ServiceReference_CardRecord\configuration91.svcinfo" /> | |||||
<None Include="Connected Services\ServiceReference_CardRecord\configuration.svcinfo" /> | |||||
<None Include="Connected Services\ServiceReference_CardRecord\Reference.svcmap"> | |||||
<Generator>WCF Proxy Generator</Generator> | |||||
<LastGenOutput>Reference.cs</LastGenOutput> | |||||
</None> | |||||
<Content Include="Content\images\head\on-boy.jpg" /> | |||||
<Content Include="Content\images\head\on-girl.jpg" /> | |||||
<Content Include="favicon.ico" /> | |||||
<Content Include="index.html" /> | |||||
<Content Include="packages.config" /> | |||||
<None Include="Connected Services\ServiceReference_CardRecord\SynService.wsdl" /> | |||||
<None Include="Properties\PublishProfiles\FolderProfile.pubxml" /> | |||||
<None Include="Properties\PublishProfiles\FolderProfile1.pubxml" /> | |||||
<None Include="Web.Debug.config"> | |||||
<DependentUpon>Web.config</DependentUpon> | |||||
</None> | |||||
<None Include="Web.Release.config"> | |||||
<DependentUpon>Web.config</DependentUpon> | |||||
</None> | |||||
<Content Include="port.png" /> | |||||
<Content Include="XmlConfig\database.config"> | |||||
<SubType>Designer</SubType> | |||||
</Content> | |||||
<Content Include="XmlConfig\ioc.config" /> | |||||
<Content Include="XmlConfig\log4net.config" /> | |||||
<Content Include="XmlConfig\redis.config"> | |||||
<SubType>Designer</SubType> | |||||
</Content> | |||||
<Content Include="XmlConfig\system.config"> | |||||
<SubType>Designer</SubType> | |||||
</Content> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Content Include="Web.config"> | |||||
<SubType>Designer</SubType> | |||||
</Content> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Compile Include="Bootstraper.cs" /> | |||||
<Compile Include="Connected Services\ServiceReference_CardRecord\Reference.cs"> | |||||
<AutoGen>True</AutoGen> | |||||
<DesignTime>True</DesignTime> | |||||
<DependentUpon>Reference.svcmap</DependentUpon> | |||||
</Compile> | |||||
<Compile Include="Modules\BaseNoLoginApi.cs" /> | |||||
<Compile Include="Modules\ArrangeLessonTermAttemperApi.cs" /> | |||||
<Compile Include="Modules\StatisticsApi.cs" /> | |||||
<Compile Include="Modules\TeacherWorkloadApi.cs" /> | |||||
<Compile Include="Modules\DutyScheduleApi.cs" /> | |||||
<Compile Include="Modules\PersonnelManagement\ScheduleApi.cs" /> | |||||
<Compile Include="Modules\StuMailApi.cs" /> | |||||
<Compile Include="Modules\EmpInfoApi.cs" /> | |||||
<Compile Include="Modules\InventoryItemApi.cs" /> | |||||
<Compile Include="Modules\InventoryApi.cs" /> | |||||
<Compile Include="Modules\BookBorrowApi.cs" /> | |||||
<Compile Include="Modules\NewsApi.cs" /> | |||||
<Compile Include="Modules\NewWorkFlowApi.cs" /> | |||||
<Compile Include="Modules\OpenLessonPlanOfElectiveStudentApi.cs" /> | |||||
<Compile Include="Modules\StuInfoFreshApi.cs" /> | |||||
<Compile Include="Modules\Sys_ReceiveFileApi.cs" /> | |||||
<Compile Include="Modules\JournalReceiveApi.cs" /> | |||||
<Compile Include="Modules\SalarySheet.cs" /> | |||||
<Compile Include="Modules\StuAttendanceLeaveApi.cs" /> | |||||
<Compile Include="Modules\SYS_ReceiveMessageApi.cs" /> | |||||
<Compile Include="Modules\JournalApi.cs" /> | |||||
<Compile Include="Modules\StuEncourgementApi.cs" /> | |||||
<Compile Include="Modules\StuPunishmentApi.cs" /> | |||||
<Compile Include="Modules\ScoreSearch.cs" /> | |||||
<Compile Include="Modules\ArrangeExam.cs" /> | |||||
<Compile Include="Modules\TeachAttendance.cs" /> | |||||
<Compile Include="Modules\Arrangelesson.cs" /> | |||||
<Compile Include="Modules\BaseNoAuthentication.cs" /> | |||||
<Compile Include="Modules\DesktopApi.cs" /> | |||||
<Compile Include="Modules\AnnexesApi.cs" /> | |||||
<Compile Include="Modules\BaseApi.cs" /> | |||||
<Compile Include="Modules\ClientDataApi.cs" /> | |||||
<Compile Include="Modules\CodeRuleApi.cs" /> | |||||
<Compile Include="Modules\CompanyApi.cs" /> | |||||
<Compile Include="Modules\CustmerFormApi.cs" /> | |||||
<Compile Include="Modules\DataItemApi.cs" /> | |||||
<Compile Include="Modules\DataSourceApi.cs" /> | |||||
<Compile Include="Modules\DepartmentApi.cs" /> | |||||
<Compile Include="Modules\Feixing\FeixingNoAuthentication.cs" /> | |||||
<Compile Include="Modules\Feixing\FileTypeConvert.cs" /> | |||||
<Compile Include="Modules\Feixing\UserApiController.cs" /> | |||||
<Compile Include="Modules\FormApi.cs" /> | |||||
<Compile Include="Modules\FunctionApi.cs" /> | |||||
<Compile Include="Modules\IMApi.cs" /> | |||||
<Compile Include="Modules\Index.cs" /> | |||||
<Compile Include="Modules\LR_Crm\CrmCustomer.cs" /> | |||||
<Compile Include="Modules\LR_Crm\CrmOrder.cs" /> | |||||
<Compile Include="Modules\LR_Crm\Invoice.cs" /> | |||||
<Compile Include="Modules\TimeTable.cs" /> | |||||
<Compile Include="Modules\UtilityApi.cs" /> | |||||
<Compile Include="Modules\WeixinApi.cs" /> | |||||
<Compile Include="Modules\WorkFlowApi.cs" /> | |||||
<Compile Include="Program.cs" /> | |||||
<Compile Include="Properties\AssemblyInfo.cs" /> | |||||
<Compile Include="Modules\UserApi.cs" /> | |||||
<Compile Include="Until\ReqEntity.cs" /> | |||||
<Compile Include="Until\ReqPageParam.cs" /> | |||||
<Compile Include="Modules\PersonnelManagement\ActivityScheduleApi.cs" /> | |||||
<Compile Include="Modules\PersonnelManagement\ClassWorkApi.cs" /> | |||||
<Compile Include="Modules\PersonnelManagement\EmpRepairApi.cs" /> | |||||
<Compile Include="Modules\PersonnelManagement\CommunityInfoApi.cs" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<ProjectReference Include="..\Learun.Application.Organization\Learun.Application.Organization.csproj"> | |||||
<Project>{e9877a25-801b-4605-ad35-e6306916513c}</Project> | |||||
<Name>Learun.Application.Organization</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.AppMagager\Learun.Application.AppMagager.csproj"> | |||||
<Project>{8f770f8b-06b3-43da-886f-15d41cec62ee}</Project> | |||||
<Name>Learun.Application.AppMagager</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Base\Learun.Application.Base.csproj"> | |||||
<Project>{0cdd0dc8-74cf-4c71-923c-66204a8923d3}</Project> | |||||
<Name>Learun.Application.Base</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.CRM\Learun.Application.CRM.csproj"> | |||||
<Project>{81e208bc-39b6-4ca3-81f1-c847d47330d1}</Project> | |||||
<Name>Learun.Application.CRM</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Form\Learun.Application.Form.csproj"> | |||||
<Project>{9164926b-150a-47d6-b384-a41aa4a7bc5d}</Project> | |||||
<Name>Learun.Application.Form</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.IM\Learun.Application.IM.csproj"> | |||||
<Project>{db34dfc9-7227-41fa-88aa-832dbf247811}</Project> | |||||
<Name>Learun.Application.IM</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.Mapping\Learun.Application.Mapping.csproj"> | |||||
<Project>{79f8e2f1-08e7-4336-93e0-512b39f9dd54}</Project> | |||||
<Name>Learun.Application.Mapping</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.OA\Learun.Application.OA.csproj"> | |||||
<Project>{5f3fdf79-a47e-4782-a090-dd0dc2d5cdc1}</Project> | |||||
<Name>Learun.Application.OA</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.TwoDevelopment\Learun.Application.TwoDevelopment.csproj"> | |||||
<Project>{56f9a112-fd96-4809-98f4-0d7c5de0711b}</Project> | |||||
<Name>Learun.Application.TwoDevelopment</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Application.Module\Learun.Application.WorkFlow\Learun.Application.WorkFlow.csproj"> | |||||
<Project>{88d8e99d-df26-4506-83c5-51e354818bef}</Project> | |||||
<Name>Learun.Application.WorkFlow</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase.EF.Oracle\Learun.DataBase.Oracle.csproj"> | |||||
<Project>{82069f3a-ab45-4f8b-b2bf-a36b14208f41}</Project> | |||||
<Name>Learun.DataBase.Oracle</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase.EF.Sqlserver\Learun.DataBase.SqlServer.csproj"> | |||||
<Project>{890532f8-5205-4ee9-965c-84500cad24de}</Project> | |||||
<Name>Learun.DataBase.SqlServer</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Db\Learun.DataBase.MySql\Learun.DataBase.MySqlEx.csproj"> | |||||
<Project>{fe4cb79e-7f98-4683-bc4a-5173a5bc5636}</Project> | |||||
<Name>Learun.DataBase.MySqlEx</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Log\Learun.Loger.csproj"> | |||||
<Project>{d27e14dc-b68c-408d-a2e3-fdb38665ecbb}</Project> | |||||
<Name>Learun.Loger</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Util\Learun.Util.Operat\Learun.Util.Operat.csproj"> | |||||
<Project>{ad556b7a-e0d1-41bd-9d5b-18f8502e9f33}</Project> | |||||
<Name>Learun.Util.Operat</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Util\Learun.Util\Learun.Util.csproj"> | |||||
<Project>{cf8ae293-88ab-436c-9720-a8386ba5d7b7}</Project> | |||||
<Name>Learun.Util</Name> | |||||
</ProjectReference> | |||||
<ProjectReference Include="..\Learun.Framework.Module\Learun.Workflow\Learun.Workflow.Engine\Learun.Workflow.Engine.csproj"> | |||||
<Project>{1D192591-B85A-41DB-AE3A-4BF9765786C1}</Project> | |||||
<Name>Learun.Workflow.Engine</Name> | |||||
</ProjectReference> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Folder Include="App_Data\" /> | |||||
<Folder Include="Models\" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<Analyzer Include="..\packages\Microsoft.DependencyValidation.Analyzers.0.10.0\analyzers\dotnet\cs\Microsoft.DependencyValidation.Analyzers.resources.dll" /> | |||||
<Analyzer Include="..\packages\Microsoft.DependencyValidation.Analyzers.0.10.0\analyzers\dotnet\Microsoft.DependencyValidation.Analyzers.dll" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<WCFMetadata Include="Connected Services\" /> | |||||
</ItemGroup> | |||||
<ItemGroup> | |||||
<WCFMetadataStorage Include="Connected Services\ServiceReference_CardRecord\" /> | |||||
</ItemGroup> | |||||
<PropertyGroup> | |||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion> | |||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | |||||
</PropertyGroup> | |||||
<PropertyGroup> | |||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | |||||
</PropertyGroup> | |||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |||||
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" /> | |||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" /> | |||||
<ProjectExtensions> | |||||
<VisualStudio> | |||||
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> | |||||
<WebProjectProperties> | |||||
<UseIIS>True</UseIIS> | |||||
<AutoAssignPort>True</AutoAssignPort> | |||||
<DevelopmentServerPort>31173</DevelopmentServerPort> | |||||
<DevelopmentServerVPath>/</DevelopmentServerVPath> | |||||
<IISUrl>http://localhost:31173/</IISUrl> | |||||
<NTLMAuthentication>False</NTLMAuthentication> | |||||
<UseCustomServer>False</UseCustomServer> | |||||
<CustomServerUrl> | |||||
</CustomServerUrl> | |||||
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile> | |||||
</WebProjectProperties> | |||||
</FlavorProperties> | |||||
</VisualStudio> | |||||
</ProjectExtensions> | |||||
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> | |||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | |||||
<PropertyGroup> | |||||
<ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。启用“NuGet 程序包还原”可下载这些程序包。有关详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText> | |||||
</PropertyGroup> | |||||
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" /> | |||||
</Target> | |||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |||||
Other similar extension points exist, see Microsoft.Common.targets. | |||||
<Target Name="BeforeBuild"> | |||||
</Target> | |||||
<Target Name="AfterBuild"> | |||||
</Target> | |||||
--> | |||||
</Project> |
@@ -1,106 +0,0 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
有关如何配置 ASP.NET 应用程序的详细信息,请访问 | |||||
http://go.microsoft.com/fwlink/?LinkId=169433 | |||||
--> | |||||
<configuration> | |||||
<configSections> | |||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> | |||||
<section name="redisconfig" type="Learun.Cache.Redis.RedisConfigInfo,Learun.Cache.Redis" /> | |||||
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection,Microsoft.Practices.Unity.Configuration" /> | |||||
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> | |||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> | |||||
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
</configSections> | |||||
<redisconfig configSource="XmlConfig\redis.config" /> | |||||
<unity configSource="XmlConfig\ioc.config" /> | |||||
<connectionStrings configSource="XmlConfig\database.config" /> | |||||
<appSettings configSource="XmlConfig\system.config" /> | |||||
<log4net configSource="XmlConfig\log4net.config" /> | |||||
<!-- | |||||
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。 | |||||
可在 <httpRuntime> 标记上设置以下特性。 | |||||
<system.Web> | |||||
<httpRuntime targetFramework="4.5" /> | |||||
</system.Web> | |||||
--> | |||||
<system.web> | |||||
<compilation debug="true" targetFramework="4.5" /> | |||||
<httpRuntime /> | |||||
<pages controlRenderingCompatibilityVersion="4.0" /> | |||||
<httpHandlers> | |||||
<add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |||||
</httpHandlers> | |||||
</system.web> | |||||
<entityFramework> | |||||
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> | |||||
<parameters> | |||||
<parameter value="mssqllocaldb" /> | |||||
</parameters> | |||||
</defaultConnectionFactory> | |||||
<providers> | |||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> | |||||
<provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"></provider> | |||||
</providers> | |||||
</entityFramework> | |||||
<system.webServer> | |||||
<validation validateIntegratedModeConfiguration="false" /> | |||||
<httpErrors existingResponse="PassThrough" /> | |||||
<handlers> | |||||
<add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |||||
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> | |||||
<remove name="OPTIONSVerbHandler" /> | |||||
<remove name="TRACEVerbHandler" /> | |||||
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> | |||||
</handlers> | |||||
</system.webServer> | |||||
<system.data> | |||||
<DbProviderFactories> | |||||
<remove invariant="Oracle.ManagedDataAccess.Client" /> | |||||
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
<remove invariant="MySql.Data.MySqlClient" /> | |||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> | |||||
</DbProviderFactories> | |||||
</system.data> | |||||
<runtime> | |||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |||||
<dependentAssembly> | |||||
<publisherPolicy apply="no" /> | |||||
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> | |||||
</dependentAssembly> | |||||
</assemblyBinding> | |||||
</runtime> | |||||
<oracle.manageddataaccess.client> | |||||
<version number="*"> | |||||
<dataSources> | |||||
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) " /> | |||||
</dataSources> | |||||
</version> | |||||
</oracle.manageddataaccess.client> | |||||
</configuration> |
@@ -1,106 +0,0 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
有关如何配置 ASP.NET 应用程序的详细信息,请访问 | |||||
http://go.microsoft.com/fwlink/?LinkId=169433 | |||||
--> | |||||
<configuration> | |||||
<configSections> | |||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> | |||||
<section name="redisconfig" type="Learun.Cache.Redis.RedisConfigInfo,Learun.Cache.Redis" /> | |||||
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection,Microsoft.Practices.Unity.Configuration" /> | |||||
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> | |||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> | |||||
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
</configSections> | |||||
<redisconfig configSource="XmlConfig\redis.config" /> | |||||
<unity configSource="XmlConfig\ioc.config" /> | |||||
<connectionStrings configSource="XmlConfig\database.config" /> | |||||
<appSettings configSource="XmlConfig\system.config" /> | |||||
<log4net configSource="XmlConfig\log4net.config" /> | |||||
<!-- | |||||
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。 | |||||
可在 <httpRuntime> 标记上设置以下特性。 | |||||
<system.Web> | |||||
<httpRuntime targetFramework="4.5" /> | |||||
</system.Web> | |||||
--> | |||||
<system.web> | |||||
<compilation debug="true" targetFramework="4.6.1" /> | |||||
<httpRuntime /> | |||||
<pages controlRenderingCompatibilityVersion="4.0" /> | |||||
<httpHandlers> | |||||
<add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |||||
</httpHandlers> | |||||
</system.web> | |||||
<entityFramework> | |||||
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> | |||||
<parameters> | |||||
<parameter value="mssqllocaldb" /> | |||||
</parameters> | |||||
</defaultConnectionFactory> | |||||
<providers> | |||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> | |||||
<provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> | |||||
</providers> | |||||
</entityFramework> | |||||
<system.webServer> | |||||
<validation validateIntegratedModeConfiguration="false" /> | |||||
<httpErrors existingResponse="PassThrough" /> | |||||
<handlers> | |||||
<add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |||||
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> | |||||
<remove name="OPTIONSVerbHandler" /> | |||||
<remove name="TRACEVerbHandler" /> | |||||
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> | |||||
</handlers> | |||||
</system.webServer> | |||||
<system.data> | |||||
<DbProviderFactories> | |||||
<remove invariant="Oracle.ManagedDataAccess.Client" /> | |||||
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
<remove invariant="MySql.Data.MySqlClient" /> | |||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> | |||||
</DbProviderFactories> | |||||
</system.data> | |||||
<runtime> | |||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |||||
<dependentAssembly> | |||||
<publisherPolicy apply="no" /> | |||||
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> | |||||
</dependentAssembly> | |||||
</assemblyBinding> | |||||
</runtime> | |||||
<oracle.manageddataaccess.client> | |||||
<version number="*"> | |||||
<dataSources> | |||||
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) " /> | |||||
</dataSources> | |||||
</version> | |||||
</oracle.manageddataaccess.client> | |||||
</configuration> |
@@ -1,118 +0,0 @@ | |||||
<?xml version="1.0" encoding="utf-8"?> | |||||
<!-- | |||||
有关如何配置 ASP.NET 应用程序的详细信息,请访问 | |||||
http://go.microsoft.com/fwlink/?LinkId=169433 | |||||
--> | |||||
<configuration> | |||||
<configSections> | |||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> | |||||
<section name="redisconfig" type="Learun.Cache.Redis.RedisConfigInfo,Learun.Cache.Redis" /> | |||||
<section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection,Microsoft.Practices.Unity.Configuration" /> | |||||
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> | |||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> | |||||
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
</configSections> | |||||
<redisconfig configSource="XmlConfig\redis.config" /> | |||||
<unity configSource="XmlConfig\ioc.config" /> | |||||
<connectionStrings configSource="XmlConfig\database.config" /> | |||||
<appSettings configSource="XmlConfig\system.config" /> | |||||
<log4net configSource="XmlConfig\log4net.config" /> | |||||
<!-- | |||||
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。 | |||||
可在 <httpRuntime> 标记上设置以下特性。 | |||||
<system.Web> | |||||
<httpRuntime targetFramework="4.5" /> | |||||
</system.Web> | |||||
--> | |||||
<system.web> | |||||
<compilation debug="true" targetFramework="4.6.1" /> | |||||
<httpRuntime /> | |||||
<pages controlRenderingCompatibilityVersion="4.0" /> | |||||
<httpHandlers> | |||||
<add verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |||||
</httpHandlers> | |||||
</system.web> | |||||
<entityFramework> | |||||
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> | |||||
<parameters> | |||||
<parameter value="mssqllocaldb" /> | |||||
</parameters> | |||||
</defaultConnectionFactory> | |||||
<providers> | |||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> | |||||
<provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> | |||||
</providers> | |||||
</entityFramework> | |||||
<system.webServer> | |||||
<validation validateIntegratedModeConfiguration="false" /> | |||||
<httpErrors existingResponse="PassThrough" /> | |||||
<handlers> | |||||
<add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="*" /> | |||||
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> | |||||
<remove name="OPTIONSVerbHandler" /> | |||||
<remove name="TRACEVerbHandler" /> | |||||
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> | |||||
</handlers> | |||||
</system.webServer> | |||||
<system.data> | |||||
<DbProviderFactories> | |||||
<remove invariant="Oracle.ManagedDataAccess.Client" /> | |||||
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" /> | |||||
<remove invariant="MySql.Data.MySqlClient" /> | |||||
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" /> | |||||
</DbProviderFactories> | |||||
</system.data> | |||||
<runtime> | |||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |||||
<dependentAssembly> | |||||
<publisherPolicy apply="no" /> | |||||
<assemblyIdentity name="Oracle.ManagedDataAccess" publicKeyToken="89b483f429c47342" culture="neutral" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-3.1.0.0" newVersion="3.1.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" /> | |||||
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" /> | |||||
</dependentAssembly> | |||||
<dependentAssembly> | |||||
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" /> | |||||
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" /> | |||||
</dependentAssembly> | |||||
</assemblyBinding> | |||||
</runtime> | |||||
<oracle.manageddataaccess.client> | |||||
<version number="*"> | |||||
<dataSources> | |||||
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) " /> | |||||
</dataSources> | |||||
</version> | |||||
</oracle.manageddataaccess.client> | |||||
<system.serviceModel> | |||||
<bindings> | |||||
<basicHttpBinding> | |||||
<binding name="SynServiceSoap" /> | |||||
</basicHttpBinding> | |||||
</bindings> | |||||
<client> | |||||
<endpoint address="http://218.28.133.181:13282/SYN/SynService.asmx" | |||||
binding="basicHttpBinding" bindingConfiguration="SynServiceSoap" | |||||
contract="ServiceReference_CardRecord.SynServiceSoap" name="SynServiceSoap" /> | |||||
</client> | |||||
</system.serviceModel> | |||||
</configuration> |
@@ -105,7 +105,7 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
left join StuSelectLessonListOfElectivePre cp on b.Id=cp.OLPEId and cp.StuNo=@StuNo | left join StuSelectLessonListOfElectivePre cp on b.Id=cp.OLPEId and cp.StuNo=@StuNo | ||||
where not exists ( "); | where not exists ( "); | ||||
//不显示与已选课程 相同课程名称相同教师的课程 | //不显示与已选课程 相同课程名称相同教师的课程 | ||||
strSql.Append(" select * from StuSelectLessonListOfElective s where s.AcademicYearNo='" + EADateArrangeEntityAboutElective?.AcademicYearNo + "' and s.Semester='" + EADateArrangeEntityAboutElective.Semester + "' and s.StuNo=@StuNo and s.Status <>3 and s.LessonName=b.LessonName and s.EmpNo=b.EmpNo and s.OLPEId!=b.Id "); | |||||
strSql.Append(" select * from StuSelectLessonListOfElective s where s.AcademicYearNo='" + EADateArrangeEntityAboutElective?.AcademicYearNo + "' and s.Semester='" + EADateArrangeEntityAboutElective?.Semester + "' and s.StuNo=@StuNo and s.Status <>3 and s.LessonName=b.LessonName and s.EmpNo=b.EmpNo and s.OLPEId!=b.Id "); | |||||
strSql.Append(" ) "); | strSql.Append(" ) "); | ||||
strSql.Append(" and a.MajorId is not null and a.Grade is not null "); | strSql.Append(" and a.MajorId is not null and a.Grade is not null "); | ||||
strSql.Append(" AND b.AcademicYearNo='" + EADateArrangeEntityAboutElective?.AcademicYearNo + "' and b.Semester='" + EADateArrangeEntityAboutElective?.Semester + "' "); | strSql.Append(" AND b.AcademicYearNo='" + EADateArrangeEntityAboutElective?.AcademicYearNo + "' and b.Semester='" + EADateArrangeEntityAboutElective?.Semester + "' "); | ||||
@@ -130,11 +130,11 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
} | } | ||||
public List<StuAttendanceEntity> GetStuLessonInfo(string account) | |||||
public List<StuAttendanceEntity> GetStuLessonInfo(string account,string startTime,string endTime) | |||||
{ | { | ||||
try | try | ||||
{ | { | ||||
return stuAttendanceService.GetStuLessonInfo(account); | |||||
return stuAttendanceService.GetStuLessonInfo(account,startTime,endTime); | |||||
} | } | ||||
catch (Exception ex) | catch (Exception ex) | ||||
{ | { | ||||
@@ -70,7 +70,7 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration | |||||
/// <summary> | /// <summary> | ||||
/// <returns></returns> | /// <returns></returns> | ||||
void SaveEntity(string keyValue, StuAttendanceEntity entity); | void SaveEntity(string keyValue, StuAttendanceEntity entity); | ||||
List<StuAttendanceEntity> GetStuLessonInfo(string account); | |||||
List<StuAttendanceEntity> GetStuLessonInfo(string account,string startTime,string endTime); | |||||
#endregion | #endregion | ||||
} | } | ||||
@@ -237,11 +237,24 @@ and t.Status=2"); | |||||
} | } | ||||
} | } | ||||
internal List<StuAttendanceEntity> GetStuLessonInfo(string account) | |||||
internal List<StuAttendanceEntity> GetStuLessonInfo(string account,string starTime,string endTime) | |||||
{ | { | ||||
try | try | ||||
{ | { | ||||
return this.BaseRepository("CollegeMIS").FindList<StuAttendanceEntity>(a => a.StuNo == account).ToList(); | |||||
var expression = LinqExtensions.True<StuAttendanceEntity>(); | |||||
expression = expression.And(a => a.StuNo == account); | |||||
if (!string.IsNullOrEmpty(starTime)) | |||||
{ | |||||
var aTime = starTime.ToDate(); | |||||
expression = expression.And(a => a.LessonDate >= aTime); | |||||
} | |||||
if (!string.IsNullOrEmpty(endTime)) | |||||
{ | |||||
var bTime = endTime.ToDate(); | |||||
expression = expression.And(a => a.LessonDate <= bTime); | |||||
} | |||||
return this.BaseRepository("CollegeMIS").FindList<StuAttendanceEntity>(expression).ToList(); | |||||
} | } | ||||
catch (Exception ex) | catch (Exception ex) | ||||
{ | { | ||||