#define _CRT_SECURE_NO_WARNINGS #include "epm_handler_common.h" int ML_ItemChildIsRelease(EPM_action_message_t msg) { printf("=========================判断文件夹下对象的子级是否冻结 Start===================\n"); auto startTime = std::chrono::high_resolution_clock::now(); int ifail = ITK_ok; int attachments_num = 0; tag_t rootTask = NULLTAG, *attachments = NULLTAG; //获取任务对象 EPM_ask_root_task(msg.task, &rootTask); //获取任务目标对象 EPM_ask_attachments(rootTask, EPM_target_attachment, &attachments_num, &attachments); char *argflag = NULL, *argvalue = NULL, *arg = NULL; char arg1value[1024] = "", arg2value[1024] = "", arg3value[1024] = ""; //获取参数 int arg_cnt = TC_number_of_arguments(msg.arguments); printf("参数个数为:%d\n", arg_cnt); if (arg_cnt > 0) { for (int i = 0; i itemTypeValues; if (strstr(arg1value, ",") != NULL) { int vectorValueCount = 0; char ** vectorValueChar = new char *[64]; split(arg1value, ",", vectorValueChar, &vectorValueCount); for (int i = 0; i < vectorValueCount; i++) { itemTypeValues.push_back(vectorValueChar[i]); } } else { itemTypeValues.push_back(arg1value); } vector referencedValues; if (strstr(arg2value, ",") != NULL) { int vectorValueCount = 0; char ** vectorValueChar = new char *[64]; split(arg2value, ",", vectorValueChar, &vectorValueCount); for (int i = 0; i < vectorValueCount; i++) { referencedValues.push_back(vectorValueChar[i]); } } else { referencedValues.push_back(arg2value); } vector checkItemTypeValues; if (strstr(arg3value, ",") != NULL) { int vectorValueCount = 0; char ** vectorValueChar = new char *[64]; split(arg3value, ",", vectorValueChar, &vectorValueCount); for (int i = 0; i < vectorValueCount; i++) { checkItemTypeValues.push_back(vectorValueChar[i]); } } else { checkItemTypeValues.push_back(arg3value); } POM_AM__set_application_bypass(true); char resultString[100000] = ""; for (int i = 0; i < attachments_num; i++) { char *itemType = NULL; AOM_ask_value_string(attachments[i], "object_type", &itemType); printf("type_class : %s \r\n", itemType); //过滤掉非文件夹的对象 if (!count(itemTypeValues, itemType)) { DOFREE(itemType); continue; } //判断文件下的对象是否发布 //AOM_ask_value_tags(attachments[i], arg2value, &num, &tags); for (auto referencedValue : referencedValues) { int num = 0; tag_t * tags = NULLTAG; AOM_ask_value_tags(attachments[i], referencedValue, &num, &tags); if (num <= 0) { ///ifail = 2; if (strcmp(arg1value, "Folder") == 0) { strcat(resultString, "没有提交交付物,无法完成任务!"); strcat(resultString, "\n"); } else { strcat(resultString, referencedValue); strcat(resultString, "关系下不包含任何对象!"); strcat(resultString, "\n"); } } else { for (int j = 0; j < num; j++) { char *objectType = NULL; AOM_ask_value_string(tags[j], "object_type", &objectType); printf("objectType : %s \r\n", objectType); if (strcmp(arg3value, "") != 0) { if (!count(checkItemTypeValues, objectType)) { DOFREE(objectType); continue; } } tag_t revisions = tags[j]; if (strstr(objectType, "Revision") == NULL) { ITEM_ask_latest_rev(tags[j], &revisions); } char * status = NULL; AOM_ask_value_string(revisions, "ml8_Status", &status); printf("ml8_Status : %s \r\n", status); //if (strcmp(status, "冻结") == 0) //if (strcmp(status, "冻结") == 0 || strcmp(status, "FreezePart") == 0)//20230928添加BOM时限制添加冻结、限用物料处理步骤 if (strcmp(status, "ObsoletePart") == 0 || strcmp(status, "FreezePart") == 0)//20250116海外要求增加废止状态 { char * objectString = NULL; AOM_ask_value_string(revisions, "object_string", &objectString); //判断子项是否为冻结 int viewNum = 0; tag_t * viewTag = NULL_TAG; //判断是否包含BOM视图 AOM_ask_value_tags(revisions, "structure_revisions", &viewNum, &viewTag); if (viewNum <= 0) { DOFREE(objectString); DOFREE(objectType); DOFREE(viewTag); continue; } //创建BOMWindow tag_t top_line = NULLTAG, window = NULLTAG; BOM_create_window(&window); //设置顶层BOM BOM_set_window_top_line(window, NULLTAG, revisions, NULLTAG, &top_line); int count; tag_t *children_line = NULLTAG; BOM_line_ask_all_child_lines(top_line, &count, &children_line); for (int k = 0; k < count; k++) { tag_t childRevisions = NULLTAG; AOM_ask_value_tag(children_line[k], "bl_line_object", &childRevisions); char * childObjectType = NULL; AOM_ask_value_string(childRevisions, "object_type", &childObjectType); printf("childObjectType : %s \r\n", childObjectType); tag_t item = NULLTAG; ITEM_ask_item_of_rev(childRevisions, &item); if (strcmp(childObjectType, "ML8_PartRevision") == 0 || strcmp(childObjectType, "ML8_RawMateriaRevision") == 0) { char * childStatus = NULL; AOM_ask_value_string(item, "ml8_Status", &childStatus); printf("childStatus : %s \r\n", childStatus); //if (strcmp(childStatus, "冻结") == 0) //if (strcmp(childStatus, "冻结") == 0 || strcmp(childStatus, "FreezePart") == 0)//20230928添加BOM时限制添加冻结、限用物料处理步骤 if (strcmp(childStatus, "ObsoletePart") == 0 || strcmp(childStatus, "FreezePart") == 0)//20250116海外要求增加废止状态 { char *itemString = NULL; AOM_ask_value_string(childRevisions, "object_string", &itemString); strcat(resultString, "物料ID为:"); strcat(resultString, objectString); strcat(resultString, "的子级ID:"); strcat(resultString, itemString); strcat(resultString, "\n"); ifail = 1; } DOFREE(childStatus); } DOFREE(childObjectType); } BOM_close_window(window); DOFREE(children_line); DOFREE(viewTag); DOFREE(objectString); } DOFREE(objectType); } } DOFREE(tags); } DOFREE(itemType); } POM_AM__set_application_bypass(false); itemTypeValues.clear(); vector().swap(itemTypeValues); referencedValues.clear(); vector().swap(referencedValues); checkItemTypeValues.clear(); vector().swap(checkItemTypeValues); DOFREE(attachments); if (ifail == 1) { strcat(resultString, "状态为冻结!"); EMH_store_error_s1(EMH_severity_user_error, EMH_USER_error_base, resultString); } /*else if (ifail == 2) { ifail = 1; EMH_store_error_s1(EMH_severity_user_error, EMH_USER_error_base, resultString); }*/ auto stopTime = std::chrono::high_resolution_clock::now(); auto duration = std::chrono::duration_cast(stopTime - startTime); //std::cout << "ML_ItemChildIsRelease用时:" << duration.count() / 1000 << std::endl; string usetime = "ML_ItemChildIsRelease用时:"; usetime.append(std::to_string(duration.count() / 1000)); WriteLog(true, usetime.c_str()); printf("=========================判断文件夹下对象的子级是否发布 End===================\n"); return ifail; }