. */ /** * \file htdocs/core/ajax/productonoff.php * \brief File to set tosell and tobuy for product */ if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Disables token renewal if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1'); if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); require '../../main.inc.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/genericobject.class.php'; $action=GETPOST('action','alpha'); $id=GETPOST('id', 'int'); $value=GETPOST('value', 'int'); $object = new GenericObject($db); /* * View */ top_httphead(); print ''."\n"; // Registering new values if (! empty($action) && ! empty($id) && $user->rights->produit->creer) { if ($action == 'setstatus') $object->setValueFrom('tosell', $value, 'product', $id); else if ($action == 'setstatus_buy') $object->setValueFrom('tobuy', $value, 'product', $id); }