通達OA2015版工作流外掛程式和列表控制項資料解析

2021-07-15 03:26:57 字數 2087 閱讀 2081

通達oa工作流外掛程式和列表控制項資料解析:

<?

include_once("inc/auth.inc.php");

include_once("inc/utility_org.php" );

$html_page_title = _("工作流外掛程式測試");

include_once("inc/header.inc.php");

/** author: 孫忠海

* 15645091570

*///$flow_id=341;

//$run_id=69222;

//$sql="select * from flow_data_".$flow_id." where run_id=".$run_id;

//$cur_sql=exequery(td::conn(),$sql);

?>

<?

echo $_session["login_user_id"]."

";$query="select * from x_hr_code where parent_no='gangweizhiwu' order by code_no asc";

$cursor=exequery(td::conn(),$query);

while($row=mysql_fetch_array($cursor))

echo "";

$query="select * from x_hr_code where parent_no='gangweidengji' order by code_no asc";

$cursor=exequery(td::conn(),$query);

while($row=mysql_fetch_array($cursor))

echo "";

$query="select * from x_hr_code where parent_no='gangji' order by code_no asc";

$cursor=exequery(td::conn(),$query);

while($row=mysql_fetch_array($cursor))

echo "";

$query2="select data_57 from flow_data_316 where run_id=44436 limit 1";

$cursor2=exequery(td::conn(),$query2);

while($row2=mysql_fetch_array($cursor2))

echo $mingxi."

"; $mingxi=str_replace("\r",",",$mingxi);//\r是回車 占用兩個字元,資料表data_3中儲存的是回車,而不是空格,將回車替換為「,」逗號;

echo $mingxi."";

$mingxi=substr($mingxi,0,-2);//去掉最後的兩個字元,包括逗號

echo $mingxi."

"; $arr=explode(",",$mingxi);//使用,逗號拆分,將列表中的每條記錄分開`

print_r($arr);//

echo "

"; $count=count($arr);//有多少條記錄

echo $count."";

for($i=0;$i<$count;$i++)

if($gangweidengji!="")

if($gangji!="")

if($bianhao!="")

} function get_code_no( $code_name, $parent_no )

$query = "select code_no from x_hr_code where parent_no='".$parent_no."' and code_name='$code_name'";

$cursor = exequery( td::conn( ), $query );

while ( $row = mysql_fetch_array( $cursor ) )

return $code_no;

} ?>

通達OA工作流主要表的資料結構

flow run prcs 流程執行明細 欄位名稱 型別中文 說明run id 數值流水號 關鍵字段 每發起乙個工作流,即建立乙個全域性唯一的流水號 prcs id 數值執行步驟序號 user id 字元步驟執行人 工作流設定中的流程編號 proc time 日期步驟開始時間 deliver tim...

通達OA工作流主要表的資料結構

flow run prcs 流程執行明細表 欄位名稱 型別中文 說明run id 數值流水號 關鍵字段 每發起乙個工作流,即建立乙個全域性唯一的流水號 prcs id 數值執行步驟序號 user id 字元步驟執行人 工作流設定中的流程編號 proc time 日期步驟開始時間 deliver ti...

通達OA開發 按財務要求定製列印工作流表單

近期應用的公出派遣工作流,是我們應用的第一次涉及到資金方面的工作流。在這個工作流應用過程中遇到了很多問題,其中最主要的就是需要簽章,並且按照財務原有的單證樣式進行列印。表單和簽章製作都沒問題,但是要把它們列印出來跟原有的單證效果一樣還真有點難度,首先是製作的表單 已簽章 列印出來大小不好控制,而且位...