I was trying to delete some invoices that i created (before i changed the EURO to USD) and accidently deleted the contents of the isp_fakt_artikel table instead of the isp_fakt_rechnung table. Is there a whay to populate that table again?
Execute the following SQL statements in your database: Code: INSERT INTO isp_fakt_artikel (doc_id, doctype_id, artikelnummer, artikeltyp, artikelbezeichnung, verrechnung, artikeleinheit, artikelpreis, abpackung, beschreibung, artikelgroup, steuersatz, weitere_artikeleinheit, weitere_abpackung, weitere_artikelpreis) VALUES (2, 1026, 'de0001', 'Domain', 'Domain .tld', '0', 'Stück', '0', 1, '', '', '19%', NULL, NULL, NULL); INSERT INTO isp_fakt_artikel (doc_id, doctype_id, artikelnummer, artikeltyp, artikelbezeichnung, verrechnung, artikeleinheit, artikelpreis, abpackung, beschreibung, artikelgroup, steuersatz, weitere_artikeleinheit, weitere_abpackung, weitere_artikelpreis) VALUES (3, 1026, 'wp0001', 'Web', 'Web Package 1', '12', 'Stück', '0', 1, 'Demo Web-Package', '', '19%', NULL, NULL, NULL); INSERT INTO isp_fakt_artikel (doc_id, doctype_id, artikelnummer, artikeltyp, artikelbezeichnung, verrechnung, artikeleinheit, artikelpreis, abpackung, beschreibung, artikelgroup, steuersatz, weitere_artikeleinheit, weitere_abpackung, weitere_artikelpreis) VALUES (4, 1026, 'SV0001', 'Dienstleistung', 'Service Vertrag Basis', '0', 'Stück', '0', 1, '', '', '19%', NULL, NULL, NULL); INSERT INTO isp_fakt_artikel (doc_id, doctype_id, artikelnummer, artikeltyp, artikelbezeichnung, verrechnung, artikeleinheit, artikelpreis, abpackung, beschreibung, artikelgroup, steuersatz, weitere_artikeleinheit, weitere_abpackung, weitere_artikelpreis) VALUES (5, 1026, 'TF17782', 'Traffic', 'Traffic 5 GB', '1', 'GB', '0', 5, '', '', '19%', 'GB', 1, '0'); INSERT INTO isp_fakt_artikel (doc_id, doctype_id, artikelnummer, artikeltyp, artikelbezeichnung, verrechnung, artikeleinheit, artikelpreis, abpackung, beschreibung, artikelgroup, steuersatz, weitere_artikeleinheit, weitere_abpackung, weitere_artikelpreis) VALUES (6, 1026, 'EM0001', 'Email', 'Email Adresse', '1', 'Stück', '0', 1, 'Demo Email Acoount', '', '19%', NULL, NULL, NULL);