Ejemplo n.º 1
0
$id = GETPOST('id', 'int');
$ref = GETPOST('ref', 'alpha');
$action = GETPOST('action', 'alpha');
// Security check
if ($user->societe_id) {
    $socid = $user->societe_id;
}
$result = restrictedArea($user, 'expedition', $id, '');
$object = new Expedition($db);
if ($id > 0 || !empty($ref)) {
    $object->fetch($id, $ref);
    $object->fetch_thirdparty();
    if (!empty($object->origin)) {
        $typeobject = $object->origin;
        $origin = $object->origin;
        $object->fetch_origin();
    }
    // Linked documents
    if ($typeobject == 'commande' && $object->{$typeobject}->id && !empty($conf->commande->enabled)) {
        $objectsrc = new Commande($db);
        $objectsrc->fetch($object->{$typeobject}->id);
    }
    if ($typeobject == 'propal' && $object->{$typeobject}->id && !empty($conf->propal->enabled)) {
        $objectsrc = new Propal($db);
        $objectsrc->fetch($object->{$typeobject}->id);
    }
}
/*
 * Actions
 */
if ($action == 'addcontact' && $user->rights->expedition->creer) {