Audit edit view, Audit Status Date format issue fixed. Email template for CorrectiveActionClosed changed

This commit is contained in:
ouellette 2023-01-10 20:52:36 -07:00
parent 0895d6a50b
commit d6984179b5
5 changed files with 5 additions and 8 deletions

Binary file not shown.

View File

@ -1,12 +1,7 @@
<font size="2" face="verdana">
<font size="2" face="verdana">
*****Please DO NOT reply to this email*****
<br/><br/>
Corrective Action {0} has been closed
<br/><br/>
{1}/CorrectiveAction/Edit?issueID={2}
<br/><br/>
Thank you for your effort
<br/><br/>

View File

@ -115,8 +115,9 @@
<label class="control-label pull-right">Audit Date:</label>
</div>
<div class="col-sm-9">
@(Html.Kendo().DatePickerFor(model => model.AuditDate.Value)
@(Html.Kendo().DatePickerFor(model => model.AuditDate)
.Name("txtAuditDate")
.HtmlAttributes(new { @type = "text" })
)
</div>
</div>

View File

@ -118,6 +118,7 @@
<div class="col-sm-9">
@(Html.Kendo().DatePickerFor(model => model.AuditDate)
.Name("txtAuditDate")
.HtmlAttributes(new { @type = "text", Readonly = "Readonly" })
)
</div>
</div>