This commit is contained in:
Kenneth Jannette
2024-03-05 19:39:39 -06:00
parent 8a53afbaaf
commit a9552625c1
2 changed files with 71 additions and 6 deletions

View File

@@ -15,6 +15,7 @@ import {
rogInstructions,
rogDefinitions,
foundationRogs,
standardProd,
} from "../../Constants/Copy/reqEditCopy.js";
import { db } from "../../firebase";
import {
@@ -356,12 +357,21 @@ const RequestEditPage = () => {
<div>{req?.text}</div>
</div>
))}
<div
className="docedit-report-container"
onClick={() => handleConfirmReport()}
>
<div className="docedit-report-link">Report an issue</div>
</div>
</div>
<div className="doc-editing-sub-wrapper">
<div className="pleading-header">REQUESTS FOR PRODUCTION</div>
{standardProd?.map((req, i) => (
<div className="request-text-up-row">
<div className="request-text-number-col">{`${i + 1}.`}</div>
<div>{req?.text}</div>
</div>
))}
</div>
<div
className="docedit-report-container"
onClick={() => handleConfirmReport()}
>
<div className="docedit-report-link">Report an issue</div>
</div>
</div>
</>

View File

@@ -99,3 +99,58 @@ export const foundationRogs = [
text: "If you are aware of any other case or proceeding involving the incident identified in Plaintiff's Complaint including, but not limited to, civil, criminal or administrative actions, identify the case or action by tribunal, case number, docket number or citation number, the date of any hearing, and indicate any pleas in the case(s) and the disposition of the matter(s).",
},
];
export const standardProd = [
{
id: "e0863692-c5da-4516-b85c-233a7f811a34",
text: "All documents identified, directly or indirectly, in your answers to Interrogatories.",
},
{
id: "0d648f06-b6f9-4264-bcf2-c3111fe3f976",
text: "All written reports of all expert witnesses with whom you or your attorneys have consulted, including, of course, those persons you expect to call as an expert witness at trial.",
},
{
id: "8c8573de-1a5c-4828-ba99-d51f610136a5",
text: "All documents upon which any expert witness upi intend to call at trial relied upon in formulating an opinion about the subject matter of this action.",
},
{
id: "63ab0999-c877-4ebc-9094-6d343294411d",
text: "The most recent curriculum vitae of each expert whom you expect to call as an expert witness at trial.",
},
{
id: "5b3ac105-c026-4f37-b335-2ab83adb6658",
text: "All notes, correspondence, bills, invoices, diagrams, photographs, or other documents prepared or reviewed by each person whom you expect to call as an expertwitness at trial.",
},
{
id: "eb382a63-1c0b-4a78-9bba-d67380bb6367",
text: "All invoices generated by expert witnesses generated for performing all expert witness services to you, including but not limited to, fees for the medical examination, the records review, the pretrial preparation, any telephone conference, any trial testimony anticipated and any other fee paid for expert fees.",
},
{
id: "a07bbc03-2f14-4837-965b-67ee261f25e4",
text: "Any and all written, recorded, or signed statements of any party, including the plaintiff, defendant, witnesses, investigators, or agent, representative or employee of the parties concerning the subject matter of this action.",
},
{
id: "495b094d-36f2-4a83-971e-54b1b5312515",
text: "All documents, photographs, videotapes or audio tapes, recordings in any medium, diagnostic images, diagrams, records, surveys or other graphic representations of information concerning the subject matter of this action.",
},
{
id: "cdcc44cf-13b2-4011-adb5-ed435156a0f8",
text: "Any documents which afforded, descirbed or pertained to liability insurance coverage for the occurrences which are the subject matter of the complaint.",
},
{
id: "7b85bf1d-ce31-4cb5-baac-b678f3afb418",
text: "Any documents identified in any other parties answers to Interrogatories in your possession, if any.",
},
{
id: "5b2033f9-2d14-49d4-848a-8c3630bb78d8",
text: "Any documents received pursuant to a subpoena request in this case.",
},
{
id: "fe9ce1d8-265f-4ebc-9856-99715cbb23ee",
text: "Any document prepared during the regular course of business as a result of the occurrence complained of in the complaint.",
},
{
id: "0012041e-8618-4864-b084-9c354261731a",
text: "Copies of any treaties, standards in the industry, legal authority, rule, case, statute, or code that will be relied upon in the defense of this case.",
},
];