*/
include("session.php");
require_once('class_functions.php');
require_once('class_db.php');
require_once('class_print_list.php');
if(file_exists($_SESSION['config']['lang'].'.php'))
{
include($_SESSION['config']['lang'].'.php');
}
else
{
$_SESSION['error'] = "Language file missing...
";
}
$show = array();
$size = array();
$limit = array();
if($_SESSION['config']['corporate'] == "true" && $_SESSION['config']['replace_subject_by_society'] == "true")
{
array_push($show, _PROPRITY_P, _DATE_START_P, "N GED", _SHIPPER, _SOCIETY_P, _RECIPIENT);
array_push($size, 15, 25, 20, 50, 50, 30);
array_push($limit, 15, 15, 12, 35, 30, 20);
}
else
{
array_push($show, _PROPRITY_P, _DATE_START_P, "N GED", _SHIPPER, _OBJECT, _RECIPIENT);
array_push($size, 15, 25, 20, 50, 50, 30);
array_push($limit, 15, 15, 12, 35, 30, 20);
}
$print = new print_list();
$print->print_result_list($_SESSION['print_list']['current_request'], $show, $size, $limit, _VALID_PROCESS_PRINT." : ".$_SESSION['current_basket']['label']);
?>