86ed7bc665
- Updated the `Lot`, `Organization`, and `OrganizationAddress` models to enhance data mapping for tender details. - Revised the `TenderData` model to include additional fields reflecting the API response structure. - Improved UI components across desktop, mobile, and tablet views by commenting out unused sections for future use. - Added new string constants for lot details in the tender information section. - Enhanced unit tests to cover new model fields and ensure resilience to partial API payloads.
77 lines
3.7 KiB
Dart
77 lines
3.7 KiB
Dart
class TenderDetailsStrings {
|
||
TenderDetailsStrings._();
|
||
|
||
static const String tenderDetailTitle = 'Tender Detail';
|
||
static const String tenderStatusOpen = 'Open';
|
||
static const String tenderIdLabel = 'ID';
|
||
static const String tenderDeadlineLabel = 'Deadline';
|
||
static const String tenderApprovalText = 'For approval';
|
||
static const String tenderSubmissionText = 'For submission';
|
||
static const String tenderClientLabel = 'Client';
|
||
static const String tenderDeliveryLocationsLabel = 'Delivery Locations';
|
||
static const String tenderReferenceNumberLabel = 'Reference Number';
|
||
static const String tenderLocationLabel = 'Locations';
|
||
static const String tenderPdfDocument = 'PDF , Document';
|
||
static const String tenderMatchProfile = 'Match with your profile';
|
||
static const String tenderIncompleteResume = 'Incomplete Resume Information';
|
||
static const String tenderNoExperience =
|
||
'No experience in e-platform development';
|
||
static const String tenderSubmitButton = 'Submit';
|
||
static const String tenderAcceptButton = 'Accept';
|
||
static const String tenderRejectButton = 'Reject';
|
||
static const String tenderClientExample =
|
||
'Procurement Notice Procurement Notice';
|
||
static const String estimatedValue = 'Estimated Value ';
|
||
static const String duration = 'Duration';
|
||
static const String tenderSubmittedSuccessfully =
|
||
'tender submitted successfully!';
|
||
static const String tenderRejectedSuccessfully =
|
||
'tender rejected successfully!';
|
||
static const String tenderUnrejectedSuccessfully =
|
||
'tender unrejected successfully!';
|
||
static const String tenderUnsubmittedSuccessfully =
|
||
'tender unsubmitted successfully!';
|
||
static const String tenderNoData = 'No tender details available';
|
||
static const String meetingTime = 'Meeting Time';
|
||
static const String apply = 'Apply';
|
||
static const String pleaseReplyBy = 'If you’d like to join, Please Reply by ';
|
||
static const String lastDayToPrepareProposal =
|
||
'Last day to prepare proposal is ';
|
||
static const String meetingTimeSuccessfullySet =
|
||
'meeting time successfully set';
|
||
static const String requestSuccessfullyRegistered =
|
||
'Your request has been successfully registered.';
|
||
static const String confirmAndClose = 'Confirm and close';
|
||
// Toast copy shown after the user confirms the Accept/submission modal
|
||
// (see tender_detail_action.dart).
|
||
static const String submissionReceived =
|
||
'Thank you. We have received your submission and will be in touch with you shortly.';
|
||
|
||
// Field labels for the tender-details info section (one per backend field
|
||
// rendered there).
|
||
// Tender detail field labels
|
||
static const String noticeTypeCode = 'Notice Type';
|
||
static const String formType = 'Form Type';
|
||
static const String noticeLanguageCode = 'Notice Language';
|
||
static const String issueDate = 'Issue Date';
|
||
static const String issueTime = 'Issue Time';
|
||
static const String procedureCode = 'Procedure';
|
||
static const String durationLabel = 'Duration';
|
||
static const String publicationDate = 'Publication Date';
|
||
static const String tenderDeadlineDate = 'Tender Deadline';
|
||
static const String submissionDeadline = 'Submission Deadline';
|
||
static const String applicationDeadline = 'Application Deadline';
|
||
static const String countryCode = 'Country';
|
||
static const String buyerName = 'Buyer';
|
||
static const String companyId = 'Company ID';
|
||
static const String buyerCity = 'City';
|
||
static const String buyerCountry = 'Buyer Country';
|
||
static const String officialLanguages = 'Official Languages';
|
||
static const String status = 'Status';
|
||
static const String tenderId = 'Tender ID';
|
||
static const String lots = 'Lots';
|
||
static const String lotId = 'Lot ID';
|
||
static const String lotTitle = 'Title';
|
||
static const String lotDescription = 'Description';
|
||
}
|