Files
ventas_php/modules/materiales.php

16 lines
382 B
PHP
Executable File

<?php
$empresa->AuthUser();
if($Usr['type'] != 'admin' && $Usr['type'] != 'direccion' && $Usr['type'] != 'compras' && $Usr['type'] != 'almacen' && $Usr['type'] != 'centralizador'){
header('Location: '.WEB_ROOT);
exit;
}
$p = intval($_GET["p"] ?? 0);
$material->SetPage($p);
$materiales = $material->Enumerate();
$smarty->assign('materiales', $materiales);
?>