77
This commit is contained in:
@@ -171,8 +171,8 @@
|
||||
<f:RenderField ColumnID="Requisitioner" DataField="Requisitioner" Width="200px" SortField="Requisitioner"
|
||||
FieldType="String" HeaderText="Requisitioner" HeaderTextAlign="Center">
|
||||
</f:RenderField>
|
||||
<f:TemplateField ColumnID="ViolationDegree" Width="110px" HeaderText="违章程度"
|
||||
HeaderTextAlign="Center" TextAlign="Center" SortField="ViolationDegree">
|
||||
<f:TemplateField ColumnID="ShowViolationDegree" Width="110px" HeaderText="违章程度"
|
||||
HeaderTextAlign="Center" TextAlign="Center" SortField="ShowViolationDegree">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="Label3" runat="server" Text='<%# ConvertViolationDegree(Eval("ViolationDegree")) %>'></asp:Label>
|
||||
</ItemTemplate>
|
||||
@@ -226,7 +226,7 @@
|
||||
|
||||
// 用户EHSS
|
||||
if (columnName == "Score3" && value > parseFloat(maxScore1)) {
|
||||
F.alert("最大只能评" + maxScore1 + "星");
|
||||
F.alert(hidMsg + "最大只能评" + maxScore1 + "星");
|
||||
var html = F.rateHtml(0, {
|
||||
allowClear: true,
|
||||
allowHalf: true,
|
||||
@@ -237,7 +237,7 @@
|
||||
|
||||
// 部门安全监管
|
||||
else if (columnName == "Score1" && value > parseFloat(maxScore2)) {
|
||||
F.alert("最大只能评" + maxScore2 + "星");
|
||||
F.alert(hidMsg + "最大只能评" + maxScore2 + "星");
|
||||
var html = F.rateHtml(0, {
|
||||
allowClear: true,
|
||||
allowHalf: true,
|
||||
|
||||
@@ -823,6 +823,22 @@ namespace FineUIPro.Web.Evaluation
|
||||
scoreJournalList.Add(scoreJournal);
|
||||
}
|
||||
Funs.DB.Score_JournalEvaluation.InsertAllOnSubmit(scoreJournalList);
|
||||
|
||||
// 回写违章捐款(用户)
|
||||
var PunishList= from x in pjSESReport where x.ViolationDegree!=null select x;
|
||||
if (PunishList.Count() > 0)
|
||||
{
|
||||
foreach (var p in PunishList)
|
||||
{
|
||||
var punish = Funs.DB.EMC_Punishment.FirstOrDefault(x => x.FO_NO == p.FO_NO && x.ViolationRelatedSes == p.SES_No);
|
||||
if (punish != null)
|
||||
{
|
||||
punish.IsUserEvaluated = true;
|
||||
Funs.DB.SubmitChanges();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//部门
|
||||
@@ -938,6 +954,21 @@ namespace FineUIPro.Web.Evaluation
|
||||
}
|
||||
Funs.DB.Score_JournalEvaluation.InsertAllOnSubmit(scoreJournalList);
|
||||
}
|
||||
|
||||
// 回写违章捐款(部门)
|
||||
var PunishList = from x in pjSESReport where x.ViolationDegree != null select x;
|
||||
if (PunishList.Count() > 0)
|
||||
{
|
||||
foreach (var p in PunishList)
|
||||
{
|
||||
var punish = Funs.DB.EMC_Punishment.FirstOrDefault(x => x.FO_NO == p.FO_NO && x.ViolationRelatedSes == p.SES_No);
|
||||
if (punish != null)
|
||||
{
|
||||
punish.IsDepEvaluated = true;
|
||||
Funs.DB.SubmitChanges();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1428,7 +1459,7 @@ namespace FineUIPro.Web.Evaluation
|
||||
{
|
||||
var row = e.DataItem as Model.FC_SESReportView;
|
||||
|
||||
if (!string.IsNullOrEmpty(row.ViolationDegree))
|
||||
if (!string.IsNullOrEmpty(row.ShowViolationDegree))
|
||||
{
|
||||
e.RowCssClass = "color2";
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ProjectFiles</ProjectView>
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<UseIISExpress>true</UseIISExpress>
|
||||
<Use64BitIISExpress>
|
||||
</Use64BitIISExpress>
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
<add path="res.axd" verb="GET" type="FineUIPro.ResourceHandler, FineUIPro" validate="false"/>
|
||||
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
|
||||
</httpHandlers>
|
||||
<compilation debug="false" targetFramework="4.6.1">
|
||||
<compilation debug="true" targetFramework="4.6.1">
|
||||
<buildProviders>
|
||||
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
|
||||
</buildProviders>
|
||||
|
||||
+53
-11
@@ -9763,7 +9763,9 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _CreateDate;
|
||||
|
||||
private System.Nullable<bool> _IsEvaluated;
|
||||
private System.Nullable<bool> _IsUserEvaluated;
|
||||
|
||||
private System.Nullable<bool> _IsDepEvaluated;
|
||||
|
||||
private EntityRef<Base_Depart> _Base_Depart;
|
||||
|
||||
@@ -9813,8 +9815,10 @@ namespace Model
|
||||
partial void OnRelatedSesMailIsSendChanged();
|
||||
partial void OnCreateDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCreateDateChanged();
|
||||
partial void OnIsEvaluatedChanging(System.Nullable<bool> value);
|
||||
partial void OnIsEvaluatedChanged();
|
||||
partial void OnIsUserEvaluatedChanging(System.Nullable<bool> value);
|
||||
partial void OnIsUserEvaluatedChanged();
|
||||
partial void OnIsDepEvaluatedChanging(System.Nullable<bool> value);
|
||||
partial void OnIsDepEvaluatedChanged();
|
||||
#endregion
|
||||
|
||||
public EMC_Punishment()
|
||||
@@ -10232,22 +10236,42 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsEvaluated", DbType="Bit")]
|
||||
public System.Nullable<bool> IsEvaluated
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUserEvaluated", DbType="Bit")]
|
||||
public System.Nullable<bool> IsUserEvaluated
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsEvaluated;
|
||||
return this._IsUserEvaluated;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsEvaluated != value))
|
||||
if ((this._IsUserEvaluated != value))
|
||||
{
|
||||
this.OnIsEvaluatedChanging(value);
|
||||
this.OnIsUserEvaluatedChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsEvaluated = value;
|
||||
this.SendPropertyChanged("IsEvaluated");
|
||||
this.OnIsEvaluatedChanged();
|
||||
this._IsUserEvaluated = value;
|
||||
this.SendPropertyChanged("IsUserEvaluated");
|
||||
this.OnIsUserEvaluatedChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsDepEvaluated", DbType="Bit")]
|
||||
public System.Nullable<bool> IsDepEvaluated
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsDepEvaluated;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsDepEvaluated != value))
|
||||
{
|
||||
this.OnIsDepEvaluatedChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsDepEvaluated = value;
|
||||
this.SendPropertyChanged("IsDepEvaluated");
|
||||
this.OnIsDepEvaluatedChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -18710,6 +18734,8 @@ namespace Model
|
||||
|
||||
private string _ViolationDegree;
|
||||
|
||||
private string _ShowViolationDegree;
|
||||
|
||||
public FC_SESReportView()
|
||||
{
|
||||
}
|
||||
@@ -19033,6 +19059,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ShowViolationDegree", DbType="NChar(1)")]
|
||||
public string ShowViolationDegree
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ShowViolationDegree;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ShowViolationDegree != value))
|
||||
{
|
||||
this._ShowViolationDegree = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.FC_SignedContracts")]
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<IISExpressWindowsAuthentication />
|
||||
<IISExpressUseClassicPipelineMode />
|
||||
<UseGlobalApplicationHostFile />
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
||||
Reference in New Issue
Block a user