You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
432 B
22 lines
432 B
<?php
|
|
|
|
/**
|
|
* 发起流程
|
|
*/
|
|
error_reporting(E_ALL);
|
|
ini_set("display_errors", "on");
|
|
require_once "./wf_common.php";
|
|
require_once "../database.php";
|
|
#系统ID
|
|
$system_id = 'psm';
|
|
#流程ID
|
|
$flow_id = 'psm01';
|
|
|
|
#表单号 $form_id;
|
|
$form_id = "";
|
|
$wf = new WorkFlow($system_id, $flow_id, $form_id);
|
|
$wf->initWorkFlow(ID);
|
|
|
|
//加载视图
|
|
|
|
echo '<a href="https://www.masada.com.tw/wms/sign/list.php">查看全部待签</a>';
|
|
|