Feature: Job Queues
Also UI style, theme and element changes
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Disco.Models.Services.Jobs.JobLists
|
||||
{
|
||||
public class JobTableStatusItemModel : JobTableItemModel
|
||||
{
|
||||
public string JobMetaWarranty_ExternalReference { get; set; }
|
||||
public DateTime? JobMetaWarranty_ExternalLoggedDate { get; set; }
|
||||
public DateTime? JobMetaWarranty_ExternalCompletedDate { get; set; }
|
||||
|
||||
public DateTime? JobMetaNonWarranty_RepairerLoggedDate { get; set; }
|
||||
public DateTime? JobMetaNonWarranty_RepairerCompletedDate { get; set; }
|
||||
public DateTime? JobMetaNonWarranty_AccountingChargeAddedDate { get; set; }
|
||||
public DateTime? JobMetaNonWarranty_AccountingChargePaidDate { get; set; }
|
||||
public DateTime? JobMetaNonWarranty_AccountingChargeRequiredDate { get; set; }
|
||||
public bool? JobMetaNonWarranty_IsInsuranceClaim { get; set; }
|
||||
public DateTime? JobMetaInsurance_ClaimFormSentDate { get; set; }
|
||||
|
||||
public DateTime? WaitingForUserAction { get; set; }
|
||||
public DateTime? DeviceReadyForReturn { get; set; }
|
||||
public DateTime? DeviceHeld { get; set; }
|
||||
public DateTime? DeviceReturnedDate { get; set; }
|
||||
public string JobMetaWarranty_ExternalName { get; set; }
|
||||
public string JobMetaNonWarranty_RepairerName { get; set; }
|
||||
|
||||
public IEnumerable<JobTableStatusQueueItemModel> ActiveJobQueues { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user