20250930 特殊人工时处理
This commit is contained in:
parent
56c9aa33ab
commit
c49bf4fb6a
|
@ -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>
|
||||
|
|
|
@ -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>();
|
||||
|
|
Loading…
Reference in New Issue