Esempio n. 1
0
function merge_workorders($wo1, $wo2)
{
    $loc = rmabs(__FILE__ . ".merge_workorders");
    $wid1 = $wo1["WID"];
    $wid2 = $wo2["WID"];
    $wo1["Description"] .= "\n\n" . $wo2["Description"];
    UpdateWorkOrder($wid1, $wo1);
    $data = GetAppendedData($wid2);
    $nd = 0;
    foreach ($data as $d) {
        if ($d["UserID"] == 0) {
            continue;
        }
        // Skip sys generated msg.
        if ($d["Removed"]) {
            continue;
        }
        // Skip deleted data.
        AppendWorkOrderData($wid1, $d["UserID"], $d["TextInfo"], $d["PicID"], false);
        $nd++;
    }
    $workers = GetAssignedWorkers($wid2);
    $nw = 0;
    foreach ($workers as $w) {
        MakeAssignment($wid1, $w["UserID"]);
        RemoveAssignment($wid2, $w["UserID"]);
        $nw++;
    }
    $userid = GetUserID();
    $userinfo = GetUserInfo($userid);
    $username = MakeFullName($userinfo);
    if (!$wo2["Closed"]) {
        ChangeWOStatus($wid2, $username, "Closed", true);
    }
    $newwostr = WIDStr($wid1, $wo1["Revision"], $wo1["IsApproved"]);
    AttachSystemNote($wid2, "This WO Merged into " . $newwostr . " by " . $username . '.');
    $oldwostr = WIDStr($wid2, $wo2["Revision"], $wo2["IsApproved"]);
    AttachSystemNote($wid1, "Data from " . $oldwostr . " merged into this one by " . $username . '.');
    $msg = 'Workorder ' . $oldwostr . ' merged into ' . $newwostr . '.  ';
    $msg .= 'Number Items Copied=' . $nd . '. ';
    $msg .= 'Number of Workers Reassigned=' . $nw . '. ';
    log_msg($loc, array($msg, "By " . $username));
    return $msg;
}
Esempio n. 2
0
        $nc++;
    }
    if (isset($_POST["Unfinish"])) {
        ChangeWOStatus($wid, $name, "Finished", false);
        $nc++;
    }
    if (isset($_POST["Unapprove"])) {
        ChangeWOStatus($wid, $name, "Approved", false);
        $nc++;
    }
    if (isset($_POST["Captain_Unapprove"])) {
        ChangeWOStatus($wid, $name, "ApprovedByCap", false);
        $nc++;
    }
    if (isset($_POST["Reopen"])) {
        ChangeWOStatus($wid, $name, "Closed", false);
        $nc++;
    }
    if ($nc == 1) {
        $wo = GetWO($wid);
        $pagetabtitle = "Epic " . $wo["WIDStr"];
        $success_msg = "Status Changed!";
        $doform = false;
        goto GenerateHtml;
    }
    DieWithMsg($loc, "Invalid number of status bits changed.  nc=" . $nc);
    goto GenerateHtml;
}
GenerateHtml:
$stylesheet = array("../css/global.css", "../css/nav.css", "../css/wo_head.css", "../css/wo_change_status.css");
include "forms/header.php";