コード例 #1
0
ファイル: request.data.php プロジェクト: jafarkhani/rtfund
function StartWarrentyFlow()
{
    $RequestID = $_REQUEST["RequestID"];
    $result = WFM_FlowRows::StartFlow(FLOWID, $RequestID);
    echo Response::createObjectiveResponse($result, "");
    die;
}
コード例 #2
0
ファイル: wfm.data.php プロジェクト: jafarkhani/rtfund
function StartFlow()
{
    $FlowID = $_REQUEST["FlowID"];
    $ObjectID = $_REQUEST["ObjectID"];
    $result = WFM_FlowRows::StartFlow($FlowID, $ObjectID);
    echo Response::createObjectiveResponse($result, "");
    die;
}
コード例 #3
0
ファイル: request.data.php プロジェクト: jafarkhani/rtfund
function StartFlow()
{
    $PartID = $_REQUEST["PartID"];
    $result = WFM_FlowRows::StartFlow(1, $PartID);
    echo Response::createObjectiveResponse($result, "");
    die;
}