fix(05-04): pre-select document client and add manual email entry
- PreparePanel now receives separate assignedClientId (nullable) and defaultClientId props so it can distinguish an explicitly locked client from just a default - When document already has assignedClientId: show locked read-only display; user cannot change the primary recipient - When document has no assignedClientId: default to document owner in dropdown but allow changing; option to clear and enter email manually - Added textarea for additional/CC email addresses (comma or newline separated) that is always visible for either mode - POST /api/documents/[id]/prepare now accepts and stores emailAddresses array alongside assignedClientId - Added email_addresses jsonb column to documents table via migration 0004_military_maximus.sql Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -55,6 +55,8 @@ export const documents = pgTable("documents", {
|
||||
textFillData: jsonb("text_fill_data").$type<Record<string, string>>(),
|
||||
assignedClientId: text("assigned_client_id"),
|
||||
preparedFilePath: text("prepared_file_path"),
|
||||
/** Email addresses collected at prepare time: assigned client email + any CC addresses. */
|
||||
emailAddresses: jsonb("email_addresses").$type<string[]>(),
|
||||
});
|
||||
|
||||
export const documentsRelations = relations(documents, ({ one }) => ({
|
||||
|
||||
Reference in New Issue
Block a user