This commit is contained in:
夏菊 2025-04-19 16:40:45 +08:00
parent 4746c21508
commit 2d45e8a134
1 changed files with 1 additions and 2 deletions

View File

@ -385,12 +385,11 @@ namespace BLL
/// <param name="info"></param>
public static bool SelectPersonProducePlan(ProducePlanInfo info)
{
bool result = false;
//1、根据人员获取人员基本信息
var person = PersonService.GetPersonById(info.PersonId);
if (string.IsNullOrWhiteSpace(person.WorkPostId))
{
return result;
return false;
}
//2、根据人员岗位Id查询今年入场培训计划
var lstPlan = GetPlanListByWorkPostId(info.CurrProjectId, person.WorkPostId);