20250930 特殊人工时处理

This commit is contained in:
毕文静 2025-09-30 09:49:16 +08:00
parent 56c9aa33ab
commit c49bf4fb6a
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@
<Items>
<f:CheckBoxList ID="checkPhase" Label="Phase" runat="server" LabelWidth="120px">
<Items>
<f:CheckItem Text="Study/Concept Planning" Value="Study/Concept Planning" Selected="true" />
<f:CheckItem Text="Study/Concept Planning" Value="Study/Concept Planning" />
<f:CheckItem Text="Execution" Value="Execution" />
</Items>
<Listeners>

View File

@ -38,7 +38,7 @@ namespace FineUIPro.Web.ManHours
}
var plans = BLL.ResourcePlanService.GetResourcePlanByEProjectId(eProjectId);
if (plans.Count < 2 && plans.FirstOrDefault().Phase == "Study/Concept Planning")
if (plans.Count>0 && plans.Count < 2 && plans.FirstOrDefault().Phase == "Study/Concept Planning")
{
checkPhase.Items.Clear();
List<string> lists = new List<string>();