SET @template := 'taxationInvoiceDisputeAdmin'; SET @categoryId := 2; SET @sorter := IFNULL((SELECT MAX(sorter) FROM pl_Settings WHERE idCategory = @categoryId), -1) + 1; INSERT INTO `pl_Settings` (`name`, `idCategory`, `fieldType`, `label`, `value`, `options`, `description`, `required`, `system`, `sorter`, `added`, `changed`) VALUES (CONCAT(@template, 'Header'), @categoryId, 'header', '', 'Taxation dispute from Vendor (Admin Notification)', '', '', 'n', 'n', @sorter, NOW(), NOW()), (CONCAT(@template, 'Subject'), @categoryId, 'text', 'Subject', 'Taxation #{id} dispute from {firstName} {lastName}', '', '', 'y', 'n', @sorter + 1, NOW(), NOW()), (CONCAT(@template, 'From'), @categoryId, 'text', 'From Email Address If you leave this field empty - the From Email Address will be the same as the one in General Settings.', '', '', '', 'n', 'n', @sorter + 2, NOW(), NOW()), (CONCAT(@template, 'Body'), @categoryId, 'HtmlEditor', 'Message Body', '
{firstName} {lastName} has disputed Taxation Invoice #{id}.
Click here to view more details
', '', 'Constants: {id}, {firstName} {lastName} {detailsUrl}', 'y', 'n', @sorter + 3, NOW(), NOW()); INSERT INTO `pl_SettingsOptions` (`name`, `variable`, `value`, `type`, `sorter`) VALUES (CONCAT(@template, 'Body'), 'mode', 'view', 'string', NULL);