Trak Posted May 26, 2020 Share Posted May 26, 2020 I have the setting that an adres does not change when a customer changes its details, thats how it should be. However as an admin sometimes I want to correct an adres, but how to do that? 0 Quote Link to comment Share on other sites More sharing options...
Kian Posted May 26, 2020 Share Posted May 26, 2020 I suppose you're using Setup > General Settings > Invoices > Store Client Data Snapshot. If so, you have to manually edit mod_invoicedata table from database like follows. The boring part is that the table doesn't have any index hence you can't edit "address1" on the fly with double-click. You'll need to... UPDATE `mod_invoicedata` SET `clientsdetails` = '{blabla}' WHERE `invoiceid` = '{invoice_id}' 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.