Compare commits
No commits in common. '972dfc025f2b80495793489450490aef842eb51e' and '92d37adde551c122d9b89d18c3ff060980c1ddd7' have entirely different histories.
972dfc025f
...
92d37adde5
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,25 +0,0 @@
|
|||||||
#include<iostream>
|
|
||||||
#include<stdarg.h>
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
const int BUF_SIZE = 4096;
|
|
||||||
//实现输出类
|
|
||||||
class LogInfo {
|
|
||||||
public:
|
|
||||||
LogInfo() { };
|
|
||||||
~LogInfo() { };
|
|
||||||
|
|
||||||
|
|
||||||
void logInfo(char *szFormat, ...) {
|
|
||||||
char szBuf[BUF_SIZE] = { };
|
|
||||||
va_list args; //第一步
|
|
||||||
va_start(args, szFormat); //第二步
|
|
||||||
_vsnprintf(szBuf, BUF_SIZE, szFormat, args); //第三步
|
|
||||||
va_end(args); //第四步
|
|
||||||
|
|
||||||
//在这是实现输出方式
|
|
||||||
std::cout << szBuf << endl;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
@ -1,89 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int bs_bom_transmit_check(EPM_rule_message_t msg)
|
|
||||||
{
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
int att_cnt;
|
|
||||||
|
|
||||||
//获得参数列表
|
|
||||||
TC_argument_list_t * arguments = msg.arguments;
|
|
||||||
//获取参数数目
|
|
||||||
int arg_cnt = TC_number_of_arguments(arguments);
|
|
||||||
map<string, string> arg_map;
|
|
||||||
//遍历参数列表
|
|
||||||
for (auto i = 0; i < arg_cnt; i++)
|
|
||||||
{
|
|
||||||
char *temp_key, *temp_val;
|
|
||||||
ITK_ask_argument_named_value(TC_next_argument(arguments), &temp_key, &temp_val);
|
|
||||||
//参数以键值对的形式传递到arg_map
|
|
||||||
if (temp_val)
|
|
||||||
arg_map[temp_key] = temp_val;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//获得根节点
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
//获得根任务下的组件
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
//判断参数是否符合要求
|
|
||||||
int taskNum = 0, BOMNum = 0;
|
|
||||||
for (int i = 0; i < att_cnt; i++)
|
|
||||||
{
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision"))
|
|
||||||
{
|
|
||||||
taskNum = taskNum + 1;
|
|
||||||
|
|
||||||
int form_att;
|
|
||||||
tag_t *forms;
|
|
||||||
AOM_ask_value_tags(attachments[i], "IMAN_master_form_rev", &form_att, &forms);
|
|
||||||
|
|
||||||
//遍历参数
|
|
||||||
for (auto j = arg_map.begin(); j != arg_map.end(); j++)
|
|
||||||
{
|
|
||||||
//设置属性
|
|
||||||
ITKCALL(AOM_set_value_string(forms[0], j->first.c_str(), j->second.c_str()));
|
|
||||||
}
|
|
||||||
//保存
|
|
||||||
AOM_save(forms[0]);
|
|
||||||
|
|
||||||
//拿到指定参数判断参数值
|
|
||||||
if (form_att == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
char *cglx, *tscg;
|
|
||||||
AOM_ask_value_string(forms[0], "jd2_cglx", &cglx);
|
|
||||||
AOM_ask_value_string(forms[0], "jd2_tscg", &tscg);
|
|
||||||
cout << "jd2_cglx" << cglx << endl;
|
|
||||||
cout << "jd2_tscg" << tscg << endl;
|
|
||||||
if (((strcmp(cglx, "E") == 0) && (strcmp(tscg, "") == 0)) || ((strcmp(cglx, "E") == 0) && (strcmp(tscg, "50") == 0)))
|
|
||||||
{
|
|
||||||
//判断是否有 BOM 版本视图 structure_revisions 如果存在则可以发起流程
|
|
||||||
int structure_att;
|
|
||||||
tag_t *structures;
|
|
||||||
AOM_ask_value_tags(attachments[i], "structure_revisions", &structure_att, &structures);
|
|
||||||
if (structures != NULL)
|
|
||||||
{
|
|
||||||
BOMNum = BOMNum + 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//POM_AM__set_application_bypass(false);
|
|
||||||
//return EMH_store_error_s1(EMH_severity_error, EMH_IDGENERATION_ERROR_BASE, "This material cannot initiate a process");
|
|
||||||
BOMNum = BOMNum + 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
if (taskNum == BOMNum) {
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EPM_go;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EMH_store_error_s1(EMH_severity_error, EMH_IDGENERATION_ERROR_BASE, "该物料类型需要包含BOM视图");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,54 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int check_release_issus(EPM_rule_message_t msg) {
|
|
||||||
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, * attachments;
|
|
||||||
int att_cnt;
|
|
||||||
//获得根节点
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
//获得根任务下的组件
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
|
|
||||||
//判断参数是否符合要求
|
|
||||||
char* object_string;
|
|
||||||
std::string names = "";
|
|
||||||
int bjNum = 0;
|
|
||||||
//遍历任务组件
|
|
||||||
for (int i = 0; i < att_cnt; i++) {
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision")) {
|
|
||||||
//判断版本属性 release_status_list (是否发布)
|
|
||||||
int release_att;
|
|
||||||
tag_t* release;
|
|
||||||
AOM_ask_value_tags(attachments[i], "release_status_list", &release_att, &release);
|
|
||||||
cout << "release_att:" << release_att << endl;
|
|
||||||
cout << "release:" << release << endl;
|
|
||||||
if (release_att >= 1) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
//如果date_released没有,打一个标记,并记录所有没有的对象
|
|
||||||
bjNum = -1;
|
|
||||||
AOM_ask_value_string(attachments[i], "object_string", &object_string);
|
|
||||||
names.append(object_string);
|
|
||||||
names.append(";");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bjNum == -1) {
|
|
||||||
std::string massage = "物料/图纸当前版本未发布!";
|
|
||||||
names.append(massage);
|
|
||||||
const char* p = names.c_str();
|
|
||||||
cout << "Exception:" << p << endl;
|
|
||||||
|
|
||||||
EMH_store_error_s1(EMH_severity_error, EMH_IDGENERATION_ERROR_BASE, p);
|
|
||||||
return EPM_nogo;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EPM_go;
|
|
||||||
|
|
||||||
}
|
|
@ -1,130 +0,0 @@
|
|||||||
#include "epm_handler_common.h"
|
|
||||||
#include <tc\tc_macros.h>
|
|
||||||
#include <tc\emh.h>
|
|
||||||
#include <tc\preferences.h>
|
|
||||||
#include <property\propdesc.h>
|
|
||||||
#include <epm\epm.h>
|
|
||||||
#include <epm\epm_toolkit_tc_utils.h>
|
|
||||||
#include <tccore\item.h>
|
|
||||||
#include <tccore\grmtype.h>
|
|
||||||
#include <tccore\grm.h>
|
|
||||||
#include <tccore\imantype.h>
|
|
||||||
#include <sa\am.h>
|
|
||||||
#include <sa\sa.h>
|
|
||||||
#include <tccore\aom.h>
|
|
||||||
#include <tccore\aom_prop.h>
|
|
||||||
#include <property\prop_errors.h>
|
|
||||||
#include <tccore\workspaceobject.h>
|
|
||||||
#include <qry\qry.h>
|
|
||||||
#include <bom\bom_attr.h>
|
|
||||||
#include <bom\bom.h>
|
|
||||||
#include <epm\signoff.h>
|
|
||||||
#include <pom\pom\pom.h>
|
|
||||||
#include <pom\pom\pom_errors.h>
|
|
||||||
#include <fclasses\tc_date.h>
|
|
||||||
#include <epm\cr.h>
|
|
||||||
#include <cfm\cfm.h>
|
|
||||||
#include <sa\am.h>
|
|
||||||
#include "tc/envelope.h"
|
|
||||||
#include <stdio.h>
|
|
||||||
#include "ae/dataset.h"
|
|
||||||
#include <ctype.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <string>
|
|
||||||
#include <iostream>
|
|
||||||
#include <iterator>
|
|
||||||
#include <map>
|
|
||||||
#include <vector>
|
|
||||||
#include "ce/ce.h"
|
|
||||||
#include <time.h>
|
|
||||||
#include <windows.h>
|
|
||||||
#include <iostream>
|
|
||||||
#include <sql.h>
|
|
||||||
#include <sqlext.h>
|
|
||||||
#include "string"
|
|
||||||
#include "sstream"
|
|
||||||
#include <sa/tcfile.h>
|
|
||||||
#include <tccore/aom.h>
|
|
||||||
#include <sa/tcfile_cache.h>
|
|
||||||
#include <form/form.h>
|
|
||||||
#include "ctime"
|
|
||||||
#include "tchar.h"
|
|
||||||
#include <iostream>
|
|
||||||
#include <string>
|
|
||||||
#include <fstream>
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
extern "C" int POM_AM__set_application_bypass(logical bypass);
|
|
||||||
|
|
||||||
int is_begin_with(const char * str1, char *str2) {
|
|
||||||
if (str1 == NULL || str2 == NULL)
|
|
||||||
return -1;
|
|
||||||
int len1 = strlen(str1);
|
|
||||||
int len2 = strlen(str2);
|
|
||||||
if ((len1 < len2) || (len1 == 0 || len2 == 0))
|
|
||||||
return -1;
|
|
||||||
char *p = str2;
|
|
||||||
int i = 0;
|
|
||||||
while (*p != '\0') {
|
|
||||||
if (*p != str1[i])
|
|
||||||
return 0;
|
|
||||||
p++;
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool isTypeOf(tag_t objtag, const char * type_name) {
|
|
||||||
tag_t type = NULLTAG;
|
|
||||||
TCTYPE_ask_object_type(objtag, &type);
|
|
||||||
tag_t item_type = NULLTAG;
|
|
||||||
TCTYPE_find_type(type_name, "", &item_type);
|
|
||||||
bool is_type = false;
|
|
||||||
if (item_type != NULLTAG) {
|
|
||||||
logical isok = FALSE;
|
|
||||||
TCTYPE_is_type_of(type, item_type, &isok);
|
|
||||||
if (isok) {
|
|
||||||
is_type = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return is_type;
|
|
||||||
}
|
|
||||||
|
|
||||||
int jd_check_99_bomyt(EPM_rule_message_t msg) {
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
|
|
||||||
int ifail = EPM_nogo, att_cnt;
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
|
|
||||||
for (int i = 0;i < att_cnt;i++) {
|
|
||||||
char *name;
|
|
||||||
AOM_ask_value_string(attachments[i], "object_string", &name);
|
|
||||||
printf("name=====>%s\n", name);
|
|
||||||
if (is_begin_with(name, "99")) {
|
|
||||||
tag_t *forms;
|
|
||||||
int form_cnt;
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision")) {
|
|
||||||
AOM_ask_value_tags(attachments[i], "IMAN_master_form_rev", &form_cnt, &forms);
|
|
||||||
} else if (isTypeOf(attachments[i], "Item")) {
|
|
||||||
tag_t *revs;
|
|
||||||
int rev_cnt;
|
|
||||||
AOM_ask_value_tags(attachments[i], "revision_list", &rev_cnt, &revs);
|
|
||||||
AOM_ask_value_tags(revs[rev_cnt - 1], "IMAN_master_form_rev", &form_cnt, &forms);
|
|
||||||
}
|
|
||||||
if (form_cnt > 0) {
|
|
||||||
char *prop;
|
|
||||||
AOM_ask_value_string(forms[0], "jd2_BOMyt", &prop);
|
|
||||||
if (tc_strcmp(prop, "5") == 0) {
|
|
||||||
ifail = EPM_go;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
ifail = EPM_go;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return ifail;
|
|
||||||
}
|
|
@ -1,74 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
#include <boost/algorithm/string/predicate.hpp>
|
|
||||||
#include <boost/lexical_cast.hpp>
|
|
||||||
|
|
||||||
|
|
||||||
void checkCGLX(tag_t bomline, bool *flag, vector<string> *res) {
|
|
||||||
int child_cnt;
|
|
||||||
tag_t *childrens;
|
|
||||||
ITKCALL(BOM_line_ask_child_lines(bomline, &child_cnt, &childrens));
|
|
||||||
if (child_cnt == 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
for (int i = 0;i < child_cnt;i++) {
|
|
||||||
char *cglx, *item_id, *rev_id;
|
|
||||||
tag_t rev, *form;
|
|
||||||
int form_cnt;
|
|
||||||
AOM_ask_value_string(childrens[i], "bl_item_item_id", &item_id);
|
|
||||||
AOM_ask_value_string(childrens[i], "bl_rev_item_revision_id",
|
|
||||||
&rev_id);
|
|
||||||
ITEM_find_rev(item_id, rev_id, &rev);
|
|
||||||
AOM_ask_value_tags(rev, "IMAN_master_form_rev", &form_cnt, &form);
|
|
||||||
AOM_ask_value_string(form[0], "jd2_cglx", &cglx);
|
|
||||||
cout << "check item_id:" << item_id << endl;
|
|
||||||
cout << "cglx:" << cglx << endl;
|
|
||||||
*flag = *flag&&tc_strlen(cglx) > 0;
|
|
||||||
if (tc_strlen(cglx) == 0) {
|
|
||||||
char *rev_name;
|
|
||||||
AOM_ask_value_string(rev, "object_string", &rev_name);
|
|
||||||
(*res).push_back(rev_name);
|
|
||||||
}
|
|
||||||
checkCGLX(childrens[i], flag, res);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int jd_check_99_cglx(EPM_rule_message_t msg) {
|
|
||||||
int att_cnt;
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
|
|
||||||
for (int i = 0;i < att_cnt;i++) {
|
|
||||||
char *item_id;
|
|
||||||
AOM_ask_value_string(attachments[i], "item_id", &item_id);
|
|
||||||
cout << "item_id:" << item_id << endl;
|
|
||||||
if (!isTypeOf(attachments[i], "ItemRevision") || !boost::starts_with(item_id, "99")) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
tag_t window, top_line, item, *childrens;
|
|
||||||
int child_cnt;
|
|
||||||
ITKCALL(ITEM_ask_item_of_rev(attachments[i], &item));
|
|
||||||
ITKCALL(BOM_create_window(&window));
|
|
||||||
ITKCALL(BOM_set_window_top_line(window, item, attachments[i], NULLTAG, &top_line));
|
|
||||||
ITKCALL(BOM_line_ask_child_lines(top_line, &child_cnt, &childrens));
|
|
||||||
if (child_cnt == 0) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
bool flag = true;
|
|
||||||
vector<string> res;
|
|
||||||
checkCGLX(top_line, &flag, &res);
|
|
||||||
ITKCALL(BOM_close_window(window));
|
|
||||||
cout << "flag:" << boolalpha << flag << endl;
|
|
||||||
if (!flag) {
|
|
||||||
|
|
||||||
string msg = "包含以下未填写采购类型的物料,请检查\n";
|
|
||||||
for (int ii = 0;ii < res.size();ii++) {
|
|
||||||
msg.append(res[ii]);
|
|
||||||
msg.append("\n");
|
|
||||||
}
|
|
||||||
return EMH_store_error_s1(EMH_severity_error, EMH_AE_error_base, msg.c_str());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return EPM_go;
|
|
||||||
|
|
||||||
}
|
|
@ -1,88 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int jd_check_ID_wllx(EPM_rule_message_t msg) {
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
int att_cnt;
|
|
||||||
//获得根节点
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
//获得根任务下的组件
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
//判断参数是否符合要求
|
|
||||||
bool isTransit = true;
|
|
||||||
std::string names = "ID:{";
|
|
||||||
for (int i = 0; i < att_cnt; i++) {
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision")) {
|
|
||||||
int form_att;
|
|
||||||
tag_t *forms;
|
|
||||||
AOM_ask_value_tags(attachments[i], "IMAN_master_form_rev", &form_att, &forms);
|
|
||||||
|
|
||||||
char *item_id;
|
|
||||||
//获取当前对象的 object_string
|
|
||||||
AOM_ask_value_string(attachments[i], "item_id", &item_id);
|
|
||||||
//转换截取后判断是否以什么开头 是则不能发起流程
|
|
||||||
std::string taskName = item_id;
|
|
||||||
string str = taskName.substr(0, 1);
|
|
||||||
const char *p = str.c_str();
|
|
||||||
char *wllx;
|
|
||||||
AOM_ask_value_string(forms[0], "jd2_wllx", &wllx);
|
|
||||||
if ((strcmp(p, "1") == 0) || (strcmp(p, "2") == 0)) {
|
|
||||||
if (strcmp(wllx, "ZR01") != 0) {
|
|
||||||
isTransit = false;
|
|
||||||
names.append(taskName).append(";");
|
|
||||||
}
|
|
||||||
} else if (strcmp(p, "3") == 0) {
|
|
||||||
if (strcmp(wllx, "ZH01") != 0) {
|
|
||||||
isTransit = false;
|
|
||||||
names.append(taskName).append(";");
|
|
||||||
}
|
|
||||||
} else if (strcmp(p, "4") == 0) {
|
|
||||||
char *lxs[10] = { "ZF01" ,"ZF02" ,"ZF03" ,"ZF04" ,"ZF05" ,"ZF06" ,"ZF07","ZF09","ZF10"};
|
|
||||||
char **lx = lxs;
|
|
||||||
bool isTrue = false;
|
|
||||||
for (int i = 0; lx && lx[i]; i++) {
|
|
||||||
if (strcmp(wllx, lx[i]) == 0) {
|
|
||||||
isTrue = true;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!isTrue) {
|
|
||||||
isTransit = false;
|
|
||||||
names.append(taskName).append(";");
|
|
||||||
}
|
|
||||||
} else if (strcmp(p, "Y") == 0) {
|
|
||||||
if (strcmp(wllx, "ZY01") != 0) {
|
|
||||||
isTransit = false;
|
|
||||||
names.append(taskName).append(";");
|
|
||||||
}
|
|
||||||
} else if (strcmp(p, "9") == 0) {
|
|
||||||
str = taskName.substr(0, 2);
|
|
||||||
p = str.c_str();
|
|
||||||
if (strcmp(p, "99") == 0) {
|
|
||||||
if (strcmp(wllx, "ZZ01") != 0) {
|
|
||||||
isTransit = false;
|
|
||||||
names.append(taskName).append(";");
|
|
||||||
}
|
|
||||||
} else if (strcmp(p, "98") == 0) {
|
|
||||||
if (strcmp(wllx, "ZC01") != 0) {
|
|
||||||
isTransit = false;
|
|
||||||
names.append(taskName).append(";");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
names.append("}");
|
|
||||||
if (!isTransit) {
|
|
||||||
std::string massage = "与物料类型不一致";
|
|
||||||
names.append(massage);
|
|
||||||
const char *p = names.c_str();
|
|
||||||
cout << "Exception:" << p << endl;
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EMH_store_error_s1(EMH_severity_error, EMH_IDGENERATION_ERROR_BASE, p);
|
|
||||||
}
|
|
||||||
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EPM_go;
|
|
||||||
}
|
|
@ -1,32 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int jd_check_bom_99(EPM_rule_message_t msg) {
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
int att_cnt;
|
|
||||||
//获得根节点
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
//获得根任务下的组件
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
//判断参数是否符合要求
|
|
||||||
for (int i = 0; i < att_cnt; i++) {
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision")) {
|
|
||||||
char *object_string;
|
|
||||||
//获取当前对象的 object_string
|
|
||||||
AOM_ask_value_string(attachments[i], "object_string", &object_string);
|
|
||||||
//转换截取后判断是否以 99 开头 是则不能发起流程
|
|
||||||
string taskName = object_string;
|
|
||||||
string str = taskName.substr(0, 2);
|
|
||||||
const char *p = str.c_str();
|
|
||||||
if (strcmp(p, "99") == 0) {
|
|
||||||
cout << "Exception:" << "散件与整机请分开发流程" << endl;
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EMH_store_error_s1(EMH_severity_error, EMH_IDGENERATION_ERROR_BASE, "散件与整机请分开发流程");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EPM_go;
|
|
||||||
|
|
||||||
}
|
|
@ -1,55 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int jd_check_bom_use(EPM_rule_message_t msg) {
|
|
||||||
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
int att_cnt;
|
|
||||||
//获得根节点
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
//获得根任务下的组件
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
//判断参数是否符合要求
|
|
||||||
char *object_string;
|
|
||||||
std::string names = "";
|
|
||||||
int BOMytNum = 0;
|
|
||||||
for (int i = 0; i < att_cnt; i++) {
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision")) {
|
|
||||||
//获取版本表单
|
|
||||||
int form_att;
|
|
||||||
tag_t *forms;
|
|
||||||
AOM_ask_value_tags(attachments[i], "IMAN_master_form_rev", &form_att, &forms);
|
|
||||||
//拿到指定参数判断参数值
|
|
||||||
if (form_att == 0) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
//判断版本表单属性 jd2_BOMyt 是否为空
|
|
||||||
char *BOMyt;
|
|
||||||
AOM_ask_value_string(forms[0], "jd2_BOMyt", &BOMyt);
|
|
||||||
if ((strcmp(BOMyt, "") != 0) && BOMyt != NULL) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
//如果存在 BOM用途没填写的,打一个标记,并记录所有没有填写的对象
|
|
||||||
BOMytNum = -1;
|
|
||||||
AOM_ask_value_string(attachments[i], "object_string", &object_string);
|
|
||||||
names.append(object_string);
|
|
||||||
names.append(";");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (BOMytNum == -1) {
|
|
||||||
std::string massage = "BOM用途未填写,不予许发起流程";
|
|
||||||
names.append(massage);
|
|
||||||
const char *p = names.c_str();
|
|
||||||
cout << "Exception:" << p << endl;
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EMH_store_error_s1(EMH_severity_error, EMH_IDGENERATION_ERROR_BASE, p);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EPM_go;
|
|
||||||
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int jd_get_target(EPM_action_message_t msg) {
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
int att_cnt;
|
|
||||||
stringstream ss;
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
|
|
||||||
for (int i = 0; i < att_cnt; i++) {
|
|
||||||
char *item_id, *item_revision_id;
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision")) {
|
|
||||||
AOM_ask_value_string(attachments[i], "item_id", &item_id);
|
|
||||||
AOM_ask_value_string(attachments[i], "item_revision_id", &item_revision_id);
|
|
||||||
ss << item_id;
|
|
||||||
ss << "/";
|
|
||||||
ss << item_revision_id;
|
|
||||||
ss << ",";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
string temp = ss.str().substr(0, ss.str().length() - 1);
|
|
||||||
cout << temp.c_str() << endl;
|
|
||||||
AOM_set_value_string(root_task, "object_desc", temp.c_str());
|
|
||||||
AOM_save(root_task);
|
|
||||||
//char **p = (char **)malloc(sizeof(char *));
|
|
||||||
//p[0] = (char *)malloc(sizeof(char) * 2000);
|
|
||||||
//p[0] = (char *)temp.c_str();
|
|
||||||
//ITKCALL(PREF_set_char_values("jd2_task_target", 1, p));
|
|
||||||
//free(p);
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
//ofstream out;
|
|
||||||
//stringstream file_location;
|
|
||||||
//file_location << getenv("temp");
|
|
||||||
//file_location << "\\";
|
|
||||||
//file_location << "jd2_task_target.txt";
|
|
||||||
//out.open(file_location.str().c_str(), ios::out | ios::trunc);
|
|
||||||
//out << temp.c_str() << endl;
|
|
||||||
//out.close();
|
|
||||||
return 0;
|
|
||||||
}
|
|
@ -1,43 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int jd_get_target2(EPM_action_message_t msg) {
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, *attachments;
|
|
||||||
int att_cnt;
|
|
||||||
stringstream ss;
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
|
|
||||||
for (int i = 0; i < att_cnt; i++) {
|
|
||||||
char *item_id, *item_revision_id;
|
|
||||||
if (isTypeOf(attachments[i], "ItemRevision")) {
|
|
||||||
char *uid;
|
|
||||||
ITK__convert_tag_to_uid(attachments[i], &uid);
|
|
||||||
ss << uid;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
cout << ss.str().c_str() << endl;
|
|
||||||
//string temp = ss.str().c_str();
|
|
||||||
//AOM_lock(root_task);
|
|
||||||
//AOM_set_value_string(root_task, "jd2_task_target", temp.c_str());
|
|
||||||
//AOM_save(root_task);
|
|
||||||
//AOM_unlock(root_task);
|
|
||||||
//char **p = (char **)MEM_alloc(sizeof(char *));
|
|
||||||
//p[0] = (char *)MEM_alloc(sizeof(char) * 50);
|
|
||||||
//p[0] = (char *)ss.str().c_str();
|
|
||||||
//ITKCALL(PREF_set_char_values("jd2_task_target2", 1, p));
|
|
||||||
//MEM_free(p);
|
|
||||||
AOM_set_value_string(root_task, "object_desc", ss.str().c_str());
|
|
||||||
AOM_save(root_task);
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
//ofstream out;
|
|
||||||
//stringstream file_location;
|
|
||||||
//file_location << getenv("temp");
|
|
||||||
//file_location << "\\";
|
|
||||||
//file_location << "jd2_task_target2.txt";
|
|
||||||
//out.open(file_location.str().c_str(), ios::out | ios::trunc);
|
|
||||||
//out << temp.c_str() << endl;
|
|
||||||
//out.close();
|
|
||||||
return 0;
|
|
||||||
}
|
|
@ -1,48 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int jd_rev_release(EPM_rule_message_t msg)
|
|
||||||
{
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task, *attachments, *boms, *xjxxds;
|
|
||||||
int att_cnt, bom_cnt, xjxxd_cnt;
|
|
||||||
char *object_string;
|
|
||||||
//获得根任务
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
//获得根任务下的组件
|
|
||||||
EPM_ask_attachments(root_task, EPM_target_attachment, &att_cnt, &attachments);
|
|
||||||
for (int i = 0; i < att_cnt; i++)
|
|
||||||
{
|
|
||||||
AOM_ask_value_tags(attachments[i], "JD2_BGH", &xjxxd_cnt, &xjxxds);
|
|
||||||
//AOM_ask_value_tags(attachments[i], "FTH4xjxxdgx", &xjxxd_cnt, &xjxxds);
|
|
||||||
for (int i = 0; i < xjxxd_cnt; i++)
|
|
||||||
{
|
|
||||||
//零组件版本
|
|
||||||
if (isTypeOf(xjxxds[i], "ItemRevision"))
|
|
||||||
{
|
|
||||||
vector<tag_t> tags1(1, xjxxds[i]);
|
|
||||||
vector<int> types1(1, EPM_target_attachment);
|
|
||||||
EPM_add_attachments(root_task, 1, &tags1[0], &types1[0]);
|
|
||||||
AOM_ask_value_tags(xjxxds[i], "structure_revisions", &bom_cnt, &boms);
|
|
||||||
if (bom_cnt > 0)
|
|
||||||
{
|
|
||||||
//bom视图版本
|
|
||||||
for (int i = 0; i < bom_cnt; i++)
|
|
||||||
{
|
|
||||||
vector<tag_t> tags2(1, boms[i]);
|
|
||||||
vector<int> types2(1, EPM_target_attachment);
|
|
||||||
EPM_add_attachments(root_task, 1, &tags2[0], &types2[0]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//版本表单
|
|
||||||
if (isTypeOf(xjxxds[i], "Form"))
|
|
||||||
{
|
|
||||||
vector<tag_t> tags3(1, xjxxds[i]);
|
|
||||||
vector<int> types3(1, EPM_target_attachment);
|
|
||||||
EPM_add_attachments(root_task, 1, &tags3[0], &types3[0]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return EPM_go;
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
#include "util.h"
|
|
||||||
|
|
||||||
int jd_splicing_task(EPM_action_message_t msg) {
|
|
||||||
POM_AM__set_application_bypass(true);
|
|
||||||
tag_t root_task;
|
|
||||||
EPM_ask_root_task(msg.task, &root_task);
|
|
||||||
char* task_name;
|
|
||||||
AOM_ask_value_string(root_task, "object_name", &task_name);
|
|
||||||
cout << "task_name:" << task_name << endl;
|
|
||||||
tag_t job;
|
|
||||||
EPM_ask_job(msg.task, &job);
|
|
||||||
char* job_name;
|
|
||||||
AOM_ask_value_string(job, "object_name", &job_name);
|
|
||||||
cout << "job_name:" << job_name << endl;
|
|
||||||
string new_name = string(job_name).append(" ").append(task_name);
|
|
||||||
cout << "new_name:" << new_name.c_str() << endl;
|
|
||||||
AOM_lock(job);
|
|
||||||
AOM_set_value_string(job, "object_name", new_name.c_str());
|
|
||||||
AOM_save(job);
|
|
||||||
AOM_unlock(job);
|
|
||||||
POM_AM__set_application_bypass(false);
|
|
||||||
return ITK_ok;
|
|
||||||
}
|
|
@ -1,7 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="boost" version="1.72.0.0" targetFramework="native" />
|
|
||||||
<package id="clibxl" version="3.8.8.2" targetFramework="native" />
|
|
||||||
<package id="javasdk" version="8.0.0" targetFramework="native" />
|
<package id="javasdk" version="8.0.0" targetFramework="native" />
|
||||||
<package id="teamcenter" version="12.0.0" targetFramework="native" />
|
<package id="teamcenter" version="12.0.0" targetFramework="native" />
|
||||||
</packages>
|
</packages>
|
@ -0,0 +1,4 @@
|
|||||||
|
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.00.24210.0
|
||||||
|
|
||||||
|
; Generated by VC++ for Common Language Runtime
|
||||||
|
.file "C:\Users\lyf\AppData\Local\Temp\.NETFramework,Version=v4.0.AssemblyAttributes.cpp"
|
@ -1,48 +1,34 @@
|
|||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\vc142.pdb
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\vc140.pdb
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_send_mail.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\util.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_prop_relate.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\jd_signoff.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_get_target2.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\jd_schedule_joint.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_get_target.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\jd_complate_first_task.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_ckeck_bom_use.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\jd_clear_field.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_check_bom_99.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\jd_batch_process.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_check_99_cglx.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\jd_add_attachments.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_auto_revise.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_custom_main.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\csendmail.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\epm_register_handler.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\check_release_issus.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_wl_check.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_wl_check.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_test_release_check.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_test_release_check.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_sign_cad.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_sign_cad.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_signoff.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_signoff.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_sap.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_sap.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_file_transfer.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_file_transfer.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_bypass.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_bypass.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_bom_save_check.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_bom_transmit_check.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\bs_bom_check.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_bom_save_check.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\.netframework,version=v4.0.assemblyattributes.obj
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_bom_check.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\.netframework,version=v4.0.assemblyattributes.asm
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\.netframework,version=v4.0.assemblyattributes.obj
|
e:\work\vs_workspace\jditk\x64\release\bs.dll
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_rev_release.obj
|
e:\work\vs_workspace\jditk\x64\release\hezon_itk.pdb
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_check_id_wllx.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\metagen.write.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\util.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.vcxprojresolveassemblyreference.cache
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\sample_confirmation_sheet.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\cl.command.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_splicing_task.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\cl.read.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_check_wlms_len.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\cl.write.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_signoff.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\link.command.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_send_mail2.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\link.read.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_schedule_joint.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\link.write.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_clear_field.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\metagen.read.1.tlog
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_check_99_bomyt.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\declib.dll.metagen
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_batch_process.obj
|
e:\work\vs_workspace\jditk\hezon_itk\x64\release\hezon_itk.tlog\tzres.dll.bi
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\jd_add_attachments.obj
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\bs_custom_main.obj
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\epm_register_handler.obj
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\x64\release\bs.dll
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\x64\release\hezon_itk.pdb
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\metagen.write.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\cl.command.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\cl.read.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\cl.write.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\link.command.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\link.read.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\link.write.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\metagen.read.1.tlog
|
|
||||||
e:\itk_workspace\itk\吉德\itk\itk\hezon_itk\x64\release\hezon_itk.tlog\declib.dll.metagen
|
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
#v4.0:v110:false
|
||||||
|
Release|x64|C:\Users\Administrator\Documents\c++\HEZON_ITK\|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,583 @@
|
|||||||
|
ImageRuntimeVersion: v4.0.30319
|
||||||
|
Assembly declib, Version=1.0.*, Culture=固定语言(固定国家/地区):
|
||||||
|
hash=SHA1, flags=PublicKey
|
||||||
|
Assembly mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||||
|
hash=None, flags=None
|
||||||
|
Assembly System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||||
|
hash=None, flags=None
|
||||||
|
Assembly System.Web.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a:
|
||||||
|
hash=None, flags=None
|
||||||
|
Assembly System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||||
|
hash=None, flags=None
|
||||||
|
Assembly System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||||
|
hash=None, flags=None
|
||||||
|
Assembly Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a:
|
||||||
|
hash=None, flags=None
|
||||||
|
Class SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqService: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit
|
||||||
|
:System.Web.Services.Protocols.SoapHttpClientProtocol
|
||||||
|
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Void .ctor(System.String): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Events:
|
||||||
|
SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompleted:
|
||||||
|
Methods:
|
||||||
|
add_SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompleted(SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
remove_SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompleted(SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_Req(ZMMS003[]&, ZMMT004[]&): PrivateScope, Public, HideBySig
|
||||||
|
BeginSI_PLM001_PLM2ERP_SOAP2Proxy_Syn_Req(ZMMS003[], ZMMT004[], AsyncCallback, Object): PrivateScope, Public, HideBySig
|
||||||
|
EndSI_PLM001_PLM2ERP_SOAP2Proxy_Syn_Req(IAsyncResult, ZMMS003[]&(Out), ZMMT004[]&(Out)): PrivateScope, Public, HideBySig
|
||||||
|
SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqAsync(ZMMS003[], ZMMT004[]): PrivateScope, Public, HideBySig
|
||||||
|
SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqAsync(ZMMS003[], ZMMT004[], Object): PrivateScope, Public, HideBySig
|
||||||
|
CancelAsync(Object): PrivateScope, Public, HideBySig
|
||||||
|
Class ZMMS003: AutoLayout, AnsiClass, Class, Public, Serializable, BeforeFieldInit
|
||||||
|
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Void .ctor(System.Collections.Generic.Dictionary`2[System.String,System.String]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Properties:
|
||||||
|
System.String MBRSH 'get set' :
|
||||||
|
System.String MTART 'get set' :
|
||||||
|
System.String MATNR 'get set' :
|
||||||
|
System.String MAKTX 'get set' :
|
||||||
|
System.String MEINS 'get set' :
|
||||||
|
System.String MATKL 'get set' :
|
||||||
|
System.String SPART 'get set' :
|
||||||
|
System.String PRDHA 'get set' :
|
||||||
|
System.String EXTWG 'get set' :
|
||||||
|
System.String MSTAE 'get set' :
|
||||||
|
System.Decimal VOLUM 'get set' :
|
||||||
|
Boolean VOLUMSpecified 'get set' :
|
||||||
|
System.String VOLEH 'get set' :
|
||||||
|
System.String BISMT 'get set' :
|
||||||
|
System.String FERTH 'get set' :
|
||||||
|
System.String WRKST 'get set' :
|
||||||
|
System.String GROES 'get set' :
|
||||||
|
System.String ZEINR 'get set' :
|
||||||
|
System.Decimal BRGEW 'get set' :
|
||||||
|
Boolean BRGEWSpecified 'get set' :
|
||||||
|
System.Decimal NTGEW 'get set' :
|
||||||
|
Boolean NTGEWSpecified 'get set' :
|
||||||
|
System.String GEWEI 'get set' :
|
||||||
|
System.String KLART 'get set' :
|
||||||
|
System.String CLASS 'get set' :
|
||||||
|
System.String D001 'get set' :
|
||||||
|
System.String D002 'get set' :
|
||||||
|
System.String D003 'get set' :
|
||||||
|
System.String D004 'get set' :
|
||||||
|
System.String D005 'get set' :
|
||||||
|
System.String D006 'get set' :
|
||||||
|
System.String D007 'get set' :
|
||||||
|
System.String D008 'get set' :
|
||||||
|
System.String D009 'get set' :
|
||||||
|
System.String D010 'get set' :
|
||||||
|
System.String D011 'get set' :
|
||||||
|
System.String D012 'get set' :
|
||||||
|
System.String D013 'get set' :
|
||||||
|
System.String D014 'get set' :
|
||||||
|
System.String D015 'get set' :
|
||||||
|
System.String D016 'get set' :
|
||||||
|
System.String D017 'get set' :
|
||||||
|
System.String D018 'get set' :
|
||||||
|
System.String D019 'get set' :
|
||||||
|
System.String D020 'get set' :
|
||||||
|
System.String D021 'get set' :
|
||||||
|
System.String D022 'get set' :
|
||||||
|
System.String D023 'get set' :
|
||||||
|
System.String D024 'get set' :
|
||||||
|
System.String D025 'get set' :
|
||||||
|
System.String D026 'get set' :
|
||||||
|
System.String D027 'get set' :
|
||||||
|
System.String D028 'get set' :
|
||||||
|
System.String D029 'get set' :
|
||||||
|
System.String D030 'get set' :
|
||||||
|
System.String D031 'get set' :
|
||||||
|
System.String D032 'get set' :
|
||||||
|
System.String D033 'get set' :
|
||||||
|
System.String D034 'get set' :
|
||||||
|
System.String D035 'get set' :
|
||||||
|
System.String D036 'get set' :
|
||||||
|
System.String D037 'get set' :
|
||||||
|
System.String D038 'get set' :
|
||||||
|
System.String D039 'get set' :
|
||||||
|
System.String D040 'get set' :
|
||||||
|
System.String D041 'get set' :
|
||||||
|
System.String D042 'get set' :
|
||||||
|
System.String D043 'get set' :
|
||||||
|
System.String D044 'get set' :
|
||||||
|
System.String D045 'get set' :
|
||||||
|
System.String D046 'get set' :
|
||||||
|
System.String D047 'get set' :
|
||||||
|
System.String D048 'get set' :
|
||||||
|
System.String D049 'get set' :
|
||||||
|
System.String D050 'get set' :
|
||||||
|
System.String D051 'get set' :
|
||||||
|
System.String D052 'get set' :
|
||||||
|
System.String D053 'get set' :
|
||||||
|
System.String D054 'get set' :
|
||||||
|
System.String D055 'get set' :
|
||||||
|
System.String D056 'get set' :
|
||||||
|
System.String D057 'get set' :
|
||||||
|
System.String D058 'get set' :
|
||||||
|
System.String D059 'get set' :
|
||||||
|
System.String D060 'get set' :
|
||||||
|
System.String D061 'get set' :
|
||||||
|
System.String D062 'get set' :
|
||||||
|
System.String D063 'get set' :
|
||||||
|
System.String D064 'get set' :
|
||||||
|
System.String D065 'get set' :
|
||||||
|
System.String D066 'get set' :
|
||||||
|
System.String D067 'get set' :
|
||||||
|
System.String D068 'get set' :
|
||||||
|
System.String D069 'get set' :
|
||||||
|
System.String D070 'get set' :
|
||||||
|
System.String D071 'get set' :
|
||||||
|
System.String D072 'get set' :
|
||||||
|
System.String STATUS 'get set' :
|
||||||
|
Methods:
|
||||||
|
get_D060(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D060(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D061(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D061(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D062(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D062(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D063(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D063(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D064(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D064(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D065(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D065(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D066(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D066(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D067(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D067(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D068(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D068(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D069(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D069(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D070(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D070(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D071(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D071(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D072(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D072(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_STATUS(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_STATUS(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D017(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D018(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D018(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D019(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D019(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D020(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D020(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D021(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D021(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D022(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D022(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D023(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D023(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D024(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D024(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D025(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D025(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D026(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D026(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D027(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D027(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D028(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D028(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D029(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D029(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D030(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D030(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D031(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D031(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D032(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D032(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D033(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D033(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D034(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D034(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D035(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D035(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D036(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D036(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D037(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D037(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D038(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D038(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D039(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D039(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D040(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D040(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D041(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D041(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D042(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D042(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D043(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D043(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D044(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D044(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D045(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D045(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D046(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D046(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D047(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D047(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D048(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D048(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D049(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D049(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D050(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D050(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D051(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D051(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D052(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D052(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D053(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D053(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D054(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D054(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D055(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D055(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D056(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D056(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D057(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D057(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D058(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D058(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D059(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D059(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MBRSH(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MBRSH(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MTART(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MTART(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MATNR(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MATNR(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MAKTX(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MAKTX(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MEINS(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MEINS(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MATKL(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MATKL(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_SPART(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_SPART(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_PRDHA(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_PRDHA(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_EXTWG(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_EXTWG(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MSTAE(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MSTAE(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_VOLUM(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_VOLUM(Decimal): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_VOLUMSpecified(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_VOLUMSpecified(Boolean): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_VOLEH(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_VOLEH(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_BISMT(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_BISMT(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_FERTH(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_FERTH(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_WRKST(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_WRKST(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_GROES(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_GROES(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_ZEINR(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_ZEINR(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_BRGEW(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_BRGEW(Decimal): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_BRGEWSpecified(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_BRGEWSpecified(Boolean): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_NTGEW(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_NTGEW(Decimal): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_NTGEWSpecified(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_NTGEWSpecified(Boolean): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_GEWEI(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_GEWEI(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_KLART(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_KLART(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_CLASS(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_CLASS(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D001(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D001(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D002(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D002(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D003(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D003(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D004(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D004(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D005(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D005(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D006(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D006(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D007(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D007(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D008(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D008(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D009(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D009(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D010(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D010(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D011(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D011(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D012(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D012(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D013(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D013(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D014(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D014(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D015(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D015(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D016(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_D016(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_D017(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
Class ZMMT004: AutoLayout, AnsiClass, Class, Public, Serializable, BeforeFieldInit
|
||||||
|
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Properties:
|
||||||
|
System.String MANDT 'get set' :
|
||||||
|
System.String MATNR 'get set' :
|
||||||
|
System.String ZSTATUS 'get set' :
|
||||||
|
System.String MESSAGE 'get set' :
|
||||||
|
Methods:
|
||||||
|
get_MANDT(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MANDT(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MATNR(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MATNR(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_ZSTATUS(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_ZSTATUS(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MESSAGE(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MESSAGE(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
Class SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler: AutoLayout, AnsiClass, Class, Public, Sealed
|
||||||
|
:System.MulticastDelegate
|
||||||
|
Void .ctor(System.Object, IntPtr): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Methods:
|
||||||
|
Invoke(Object, SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventArgs): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask
|
||||||
|
BeginInvoke(Object, SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventArgs, AsyncCallback, Object): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask
|
||||||
|
EndInvoke(IAsyncResult): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask
|
||||||
|
Class SI_PLM001_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit
|
||||||
|
:System.ComponentModel.AsyncCompletedEventArgs
|
||||||
|
Properties:
|
||||||
|
ZMMS003[] IT_DATA 'get ' :
|
||||||
|
ZMMT004[] IT_RETURN 'get ' :
|
||||||
|
Methods:
|
||||||
|
get_IT_DATA(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_IT_RETURN(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
Class SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqService: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit
|
||||||
|
:System.Web.Services.Protocols.SoapHttpClientProtocol
|
||||||
|
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Void .ctor(System.String): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Events:
|
||||||
|
SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompleted:
|
||||||
|
Methods:
|
||||||
|
add_SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompleted(SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
remove_SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompleted(SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_Req(ZPPS001[]&, ZPPT001[]&): PrivateScope, Public, HideBySig
|
||||||
|
BeginSI_PLM002_PLM2ERP_SOAP2Proxy_Syn_Req(ZPPS001[], ZPPT001[], AsyncCallback, Object): PrivateScope, Public, HideBySig
|
||||||
|
EndSI_PLM002_PLM2ERP_SOAP2Proxy_Syn_Req(IAsyncResult, ZPPS001[]&(Out), ZPPT001[]&(Out)): PrivateScope, Public, HideBySig
|
||||||
|
SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqAsync(ZPPS001[], ZPPT001[]): PrivateScope, Public, HideBySig
|
||||||
|
SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqAsync(ZPPS001[], ZPPT001[], Object): PrivateScope, Public, HideBySig
|
||||||
|
CancelAsync(Object): PrivateScope, Public, HideBySig
|
||||||
|
Class ZPPS001: AutoLayout, AnsiClass, Class, Public, Serializable, BeforeFieldInit
|
||||||
|
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Void .ctor(System.Collections.Generic.Dictionary`2[System.String,System.String]): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Properties:
|
||||||
|
System.String MATNR 'get set' :
|
||||||
|
System.String WERKS 'get set' :
|
||||||
|
System.String STLAN 'get set' :
|
||||||
|
System.Decimal BMENG 'get set' :
|
||||||
|
Boolean BMENGSpecified 'get set' :
|
||||||
|
System.String STLST 'get set' :
|
||||||
|
System.String POSNR 'get set' :
|
||||||
|
System.String POSTP 'get set' :
|
||||||
|
System.String IDNRK 'get set' :
|
||||||
|
System.Decimal MENGE 'get set' :
|
||||||
|
Boolean MENGESpecified 'get set' :
|
||||||
|
System.String MEINS 'get set' :
|
||||||
|
System.Decimal AUSCH 'get set' :
|
||||||
|
Boolean AUSCHSpecified 'get set' :
|
||||||
|
Methods:
|
||||||
|
get_MATNR(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MATNR(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_WERKS(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_WERKS(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_STLAN(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_STLAN(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_BMENG(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_BMENG(Decimal): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_BMENGSpecified(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_BMENGSpecified(Boolean): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_STLST(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_STLST(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_POSNR(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_POSNR(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_POSTP(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_POSTP(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_IDNRK(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_IDNRK(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MENGE(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MENGE(Decimal): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MENGESpecified(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MENGESpecified(Boolean): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MEINS(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MEINS(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_AUSCH(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_AUSCH(Decimal): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_AUSCHSpecified(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_AUSCHSpecified(Boolean): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
Class ZPPT001: AutoLayout, AnsiClass, Class, Public, Serializable, BeforeFieldInit
|
||||||
|
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Properties:
|
||||||
|
System.String MANDT 'get set' :
|
||||||
|
System.String MATNR 'get set' :
|
||||||
|
System.String TYPE 'get set' :
|
||||||
|
System.String ID 'get set' :
|
||||||
|
System.String NUMBER1 'get set' :
|
||||||
|
System.String MESSAGE 'get set' :
|
||||||
|
Methods:
|
||||||
|
get_MANDT(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MANDT(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MATNR(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MATNR(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_TYPE(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_TYPE(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_ID(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_ID(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_NUMBER1(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_NUMBER1(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_MESSAGE(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
set_MESSAGE(String): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
Class SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventHandler: AutoLayout, AnsiClass, Class, Public, Sealed
|
||||||
|
:System.MulticastDelegate
|
||||||
|
Void .ctor(System.Object, IntPtr): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Methods:
|
||||||
|
Invoke(Object, SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventArgs): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask
|
||||||
|
BeginInvoke(Object, SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventArgs, AsyncCallback, Object): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask
|
||||||
|
EndInvoke(IAsyncResult): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask
|
||||||
|
Class SI_PLM002_PLM2ERP_SOAP2Proxy_Syn_ReqCompletedEventArgs: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit
|
||||||
|
:System.ComponentModel.AsyncCompletedEventArgs
|
||||||
|
Properties:
|
||||||
|
ZPPS001[] IT_DATA 'get ' :
|
||||||
|
ZPPT001[] IT_RETURN 'get ' :
|
||||||
|
Methods:
|
||||||
|
get_IT_DATA(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
get_IT_RETURN(): PrivateScope, Public, HideBySig, SpecialName
|
||||||
|
Class Testdll.Testclass: AutoLayout, AnsiClass, Class, Public, BeforeFieldInit
|
||||||
|
Void .ctor(): PrivateScope, Public, HideBySig, SpecialName, RTSpecialName
|
||||||
|
Methods:
|
||||||
|
test(): PrivateScope, Public, Static, HideBySig
|
||||||
|
GetToken(String, String): PrivateScope, Public, HideBySig
|
||||||
|
Send(String, String, String): PrivateScope, Public, HideBySig
|
||||||
|
send_material(String, String, String, Dictionary`2): PrivateScope, Public, HideBySig
|
||||||
|
send_bom(String, String, String, List`1): PrivateScope, Public, HideBySig
|
||||||
|
signCad(String, String, Dictionary`2, String&(Out)): PrivateScope, Public, Static, HideBySig
|
||||||
|
signCad(String, String, Dictionary`2): PrivateScope, Public, Static, HideBySig
|
||||||
|
Encrypt(String, String): PrivateScope, Public, HideBySig
|
||||||
|
Decrypt(String, String): PrivateScope, Public, HideBySig
|
||||||
|
Interface Autodesk.AutoCAD.Interop.AcadApplication: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.IAcadApplication
|
||||||
|
Autodesk.AutoCAD.Interop._DAcadApplicationEvents_Event
|
||||||
|
Interface Autodesk.AutoCAD.Interop.AcadDocument: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.IAcadDocument
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadDatabase
|
||||||
|
Autodesk.AutoCAD.Interop._DAcadDocumentEvents_Event
|
||||||
|
Interface Autodesk.AutoCAD.Interop.AcadDocuments: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.IAcadDocuments
|
||||||
|
System.Collections.IEnumerable
|
||||||
|
Interface Autodesk.AutoCAD.Interop.IAcadApplication: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Properties:
|
||||||
|
Boolean Visible 'get set' :
|
||||||
|
Autodesk.AutoCAD.Interop.AcadDocuments Documents 'get ' :
|
||||||
|
Methods:
|
||||||
|
get_Visible(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
set_Visible(Boolean(In)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
Quit(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
get_Documents(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
Interface Autodesk.AutoCAD.Interop.IAcadDocument: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadDatabase
|
||||||
|
Properties:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.AcadModelSpace ModelSpace 'get ' :
|
||||||
|
Methods:
|
||||||
|
get_ModelSpace(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
SaveAs(String(In, HasFieldMarshal), Object(In, Optional, HasFieldMarshal), Object(In, Optional, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
Close(Object(In, Optional, HasFieldMarshal), Object(In, Optional, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
Interface Autodesk.AutoCAD.Interop.IAcadDocuments: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
System.Collections.IEnumerable
|
||||||
|
Methods:
|
||||||
|
Item(Object(In, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
Open(String(In, HasFieldMarshal), Object(In, Optional, HasFieldMarshal), Object(In, Optional, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
Interface Autodesk.AutoCAD.Interop._DAcadApplicationEvents: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interface Autodesk.AutoCAD.Interop._DAcadApplicationEvents_Event: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interface Autodesk.AutoCAD.Interop._DAcadDocumentEvents: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interface Autodesk.AutoCAD.Interop._DAcadDocumentEvents_Event: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.AcadAttributeReference: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadAttributeReference
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadEntity
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObjectEvents_Event
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.AcadBlockReference: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadBlockReference
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadEntity
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObjectEvents_Event
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.AcadEntity: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadEntity
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObjectEvents_Event
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.AcadModelSpace: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadModelSpace
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadBlock
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
System.Collections.IEnumerable
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObjectEvents_Event
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadAttributeReference: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadEntity
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
Properties:
|
||||||
|
System.String TagString 'get set' :
|
||||||
|
System.String TextString 'get set' :
|
||||||
|
Methods:
|
||||||
|
get_TagString(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
set_TagString(String(In, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
get_TextString(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
set_TextString(String(In, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadBlock: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
System.Collections.IEnumerable
|
||||||
|
Methods:
|
||||||
|
Item(Object(In, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadBlockReference: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadEntity
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
Properties:
|
||||||
|
System.String Name 'get set' :
|
||||||
|
Methods:
|
||||||
|
get_Name(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
set_Name(String(In, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
GetAttributes(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadDatabase: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadEntity: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
Properties:
|
||||||
|
System.String EntityName 'get ' :
|
||||||
|
Methods:
|
||||||
|
get_EntityName(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract, SpecialName
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadModelSpace: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interfaces:
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadBlock
|
||||||
|
Autodesk.AutoCAD.Interop.Common.IAcadObject
|
||||||
|
System.Collections.IEnumerable
|
||||||
|
Methods:
|
||||||
|
Item(Object(In, HasFieldMarshal)): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
GetEnumerator(): PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask, Abstract
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadObject: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadObjectEvents: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
||||||
|
Interface Autodesk.AutoCAD.Interop.Common.IAcadObjectEvents_Event: AutoLayout, AnsiClass, Class, Public, ClassSemanticsMask, Abstract, Import
|
@ -1,2 +1,2 @@
|
|||||||
PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:TargetPlatformVersion=10.0.19041.0:TargetFrameworkVersion=v4.0::EnableManagedIncrementalBuild=true:
|
#TargetFrameworkVersion=v4.0:PlatformToolSet=v140:EnableManagedIncrementalBuild=true:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=8.1
|
||||||
Release|x64|E:\ITK_WorkSpace\ITK\吉德\jd_check_jz\itk\|
|
Release|x64|E:\work\vs_workspace\jditk\|
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,7 @@
|
|||||||
|
ImageRuntimeVersion: v4.0.30319
|
||||||
|
Assembly bs, Version=0.0.*, Culture=固定语言(固定国家/地区):
|
||||||
|
hash=SHA1, flags=PublicKey
|
||||||
|
Assembly mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089:
|
||||||
|
hash=None, flags=None
|
||||||
|
Assembly declib, Version=1.0.*, Culture=固定语言(固定国家/地区):
|
||||||
|
hash=None, flags=None
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue