Davide Bongiardo Posted January 20, 2016 Share Posted January 20, 2016 Ciao, a tutti, sono alla mia prima esperienza su prestashop versione 1.6.1.2, e ho riscontrato una difficoltà per quanto riguarda l'azzeramento del numero delle fatture. Per testare il layout delle fatture ne ho emessa qualcuna e ora vorrei azzerare il tutto. Ho letto che potrei modificare il file order.php sostituendo $sql .= '(SELECT new_number FROM (SELECT (MAX(`number`) + 1) AS new_number FROM `'._DB_PREFIX_.'order_invoice`'.(Configuration::get('PS_INVOICE_RESET') ? ' WHERE DATE_FORMAT(`date_add`, "%Y") = '.(int)date('Y') : '').') AS result)'; con il seguente: $sql .= '(SELECT new_number FROM (SELECT (MAX(`number`) + 1) AS new_number FROM `'._DB_PREFIX_.'order_invoice` WHERE date_add>="'.date("Y", time()).'-01-01 00:00:00") AS result)'; qualcuno potrebbe confermarmi che è la soluzione corretta? Grazie mille a chiunque vorrà aiutarmi. Link to comment Share on other sites More sharing options...
Giorgio M. Posted January 20, 2016 Share Posted January 20, 2016 Usa il modulo "ottimizzatore di PrestaShop" che ti permette di cancellare clienti e fatture. Se poi sei interessato all'azzeramento della fatturazione ad inizio anno aggiorna alla versione 1.6.1.3 o 1.6.1.4 che implementano questa nuova funzione Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now