mirror of
https://github.com/itflow-org/itflow
synced 2026-09-01 12:25:11 +00:00
Send Email and Mark Sent modals for invoices and quotes (db 2.7.7)
Send Email opens a contact picker instead of hardcoding the primary contact; Mark Sent asks how it went out and takes a note. Both log recipients / method / note to the document history. Handlers moved GET -> POST. Fixes two pre-existing bugs in the email path: archived contacts were still receiving billing copies, and every copy was addressed to the primary contact by name.
This commit is contained in:
4
db.sql
4
db.sql
@@ -1369,7 +1369,7 @@ DROP TABLE IF EXISTS `history`;
|
||||
CREATE TABLE `history` (
|
||||
`history_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`history_status` varchar(200) NOT NULL,
|
||||
`history_description` varchar(200) NOT NULL,
|
||||
`history_description` text NOT NULL,
|
||||
`history_created_at` datetime NOT NULL DEFAULT current_timestamp(),
|
||||
`history_invoice_id` int(11) NOT NULL DEFAULT 0,
|
||||
`history_recurring_invoice_id` int(11) NOT NULL DEFAULT 0,
|
||||
@@ -3247,4 +3247,4 @@ CREATE TABLE `vendors` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2026-08-28 0:13:03
|
||||
-- Dump completed on 2026-08-28 13:31:14
|
||||
|
||||
Reference in New Issue
Block a user