Project

General

Profile

Actions

Bug #961

open

Rediseño de la minuta

Added by Raúl Barroso 16 days ago. Updated 6 days ago.

Status:
Test Internally
Priority:
High
Assignee:
Category:
-
Target version:
-
Start date:
11/25/2025
Due date:
% Done:

90%

Estimated time:

Description

La determinación de una reunión no debe tener la minuta de la reunión, sino que debe ser su propio documento

TS Admin: https://taskmanagement.seedburysquare.com/issues/960
Attorney: https://taskmanagement.seedburysquare.com/issues/962

Actions #1

Updated by Raúl Barroso 16 days ago

  • Description updated (diff)
Actions #2

Updated by Raúl Barroso 10 days ago

  • Assignee set to Raúl Barroso
Actions #3

Updated by Raúl Barroso 9 days ago

  • Subject changed from La minuta no debe verse en el expediente to Rediseño de la minuta
  • Description updated (diff)
  • Status changed from Not Started to In Progress
Actions #4

Updated by Raúl Barroso 8 days ago

  • % Done changed from 0 to 90
Actions #5

Updated by Raúl Barroso 8 days ago

-- ancillaryDocuments definition
-- Drop table
-- DROP TABLE ancillaryDocuments;
CREATE TABLE ancillaryDocuments
(
    ancillaryDocumentId int IDENTITY(1, 1) NOT NULL,
    recourseId int NOT NULL,
    recourseFilingId int NULL,
    dateCreated datetime DEFAULT getdate() NOT NULL,
    creatorId int NOT NULL,
    isDeleted bit DEFAULT 0 NOT NULL,
    deleterId int NULL,
    dateDeleted datetime NULL,
    CONSTRAINT PK_ancillary_d__6EC89661FC159B09 PRIMARY KEY (ancillaryDocumentId),
    CONSTRAINT FK_ancillary_documents_creator FOREIGN KEY (creatorId) REFERENCES persons(personId),
    CONSTRAINT FK_ancillary_documents_deleter FOREIGN KEY (deleterId) REFERENCES persons(personId),
    CONSTRAINT FK_ancillary_documents_recourses FOREIGN KEY (recourseId) REFERENCES recourses(recourseId),
    CONSTRAINT FK_ancillary_documents_recourseFilings FOREIGN KEY (recourseFilingId) REFERENCES recourseFilings(recourseFilingId)
);

-- ancillaryDocumentDetails definition
-- Drop table
-- DROP TABLE ancillaryDocumentDetails;
CREATE TABLE ancillaryDocumentDetails
(
    ancillaryDocumentDetailId int IDENTITY(1, 1) NOT NULL,
    ancillaryDocumentId int NOT NULL,
    documentTypeCode int NOT NULL,
    documentTypeDescription varchar(250) NOT NULL,
    description varchar(250) NOT NULL,
    url varchar(250) NULL,
    fileExtension varchar(5) NULL,
    fileName varchar(250) NULL,
    hash varchar(250) NULL,
    fileSize int NULL,
    filePageCount int NULL,
    dateCreated datetime DEFAULT getdate() NOT NULL,
    creatorId int NOT NULL,
    isDeleted bit DEFAULT 0 NOT NULL,
    deleterId int NULL,
    dateDeleted datetime NULL,
    CONSTRAINT PK__ancillaryDo__755D5FA72E19B83F PRIMARY KEY (ancillaryDocumentDetailId),
    CONSTRAINT FK_ancillary_document_details_creator FOREIGN KEY (creatorId) REFERENCES persons(personId),
    CONSTRAINT FK_ancillary_document_details_deleter FOREIGN KEY (deleterId) REFERENCES persons(personId),
    CONSTRAINT FK_ancillary_document_details_ancillary_document FOREIGN KEY (ancillaryDocumentId) REFERENCES ancillaryDocuments(ancillaryDocumentId),
    CONSTRAINT FK_ancillary_document_details_type FOREIGN KEY (documentTypeCode) REFERENCES catalogValues(catalogValueCode)
);

INSERT INTO catalogTypes (catalogTypeCode, catalogTypeDescription) VALUES (73, 'ancillaryDocumentType');

INSERT INTO catalogValues (catalogValueCode, catalogValueDescription, catalogTypeCode, catalogTypeDescription, isLocked, comment) VALUES (866, 'Minuta', 73, 'ancillaryDocumentType', 1, NULL);
Actions #6

Updated by Miguel Gonzalez 7 days ago

Query ejecutado en SC Dev

Actions #7

Updated by Miguel Gonzalez 6 days ago

  • Status changed from In Progress to Test Internally
Actions

Also available in: Atom PDF