Set quote status to Converted and show job number link on quote details

- CreateJobFromQuote now sets QuoteStatusId to CONVERTED after creating the job
- Added ConvertedToJobNumber to QuoteDto, populated in Details action
- 'View Job' button on Quote Details now shows the job number (e.g. 'View Job JOB-2505-0001')

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-06 20:47:45 -04:00
parent e3c76ce7ce
commit ff231d9dd2
3 changed files with 9 additions and 2 deletions
@@ -127,6 +127,7 @@ public class QuoteDto
// Conversion Tracking
public int? ConvertedToJobId { get; set; }
public string? ConvertedToJobNumber { get; set; }
// Customer Approval Tracking
public string? ApprovalToken { get; set; }