2215 lines
97 KiB
C#
2215 lines
97 KiB
C#
using Disco.Models.Repository;
|
|
using Disco.Models.Services.Jobs;
|
|
using Disco.Models.Services.Jobs.JobLists;
|
|
using Disco.Services;
|
|
using Disco.Services.Authorization;
|
|
using Disco.Services.Exporting;
|
|
using Disco.Services.Interop;
|
|
using Disco.Services.Jobs;
|
|
using Disco.Services.Jobs.JobLists;
|
|
using Disco.Services.Jobs.Statistics;
|
|
using Disco.Services.Users;
|
|
using Disco.Services.Web;
|
|
using Disco.Web.Extensions;
|
|
using Disco.Web.Models.Job;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data.Entity;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Caching;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Disco.Web.Areas.API.Controllers
|
|
{
|
|
public partial class JobController : AuthorizedDatabaseController
|
|
{
|
|
|
|
#region Property Constants
|
|
const string pExpectedClosedDate = "expectedcloseddate";
|
|
const string pDeviceHeldLocation = "deviceheldlocation";
|
|
const string pFlags = "flags";
|
|
|
|
const string pNonWarrantyAccountingChargeRequired = "nonwarrantyaccountingchargerequired";
|
|
const string pNonWarrantyAccountingChargeAdded = "nonwarrantyaccountingchargeadded";
|
|
const string pNonWarrantyAccountingChargePaid = "nonwarrantyaccountingchargepaid";
|
|
const string pNonWarrantyPurchaseOrderRaised = "nonwarrantypurchaseorderraised";
|
|
const string pNonWarrantyPurchaseOrderReference = "nonwarrantypurchaseorderreference";
|
|
const string pNonWarrantyPurchaseOrderSent = "nonwarrantypurchaseordersent";
|
|
const string pNonWarrantyInvoiceReceived = "nonwarrantyinvoicereceived";
|
|
const string pNonWarrantyRepairerName = "nonwarrantyrepairername";
|
|
const string pNonWarrantyRepairerLoggedDate = "nonwarrantyrepairerloggeddate";
|
|
const string pNonWarrantyRepairerReference = "nonwarrantyrepairerreference";
|
|
const string pNonWarrantyRepairerCompletedDate = "nonwarrantyrepairercompleteddate";
|
|
const string pNonWarrantyIsInsuranceClaim = "nonwarrantyinsuranceisinsuranceclaim";
|
|
|
|
const string pInsuranceLossOrDamageDate = "insurancelossordamagedate";
|
|
const string pInsuranceEventLocation = "insuranceeventlocation";
|
|
const string pInsuranceDescription = "insurancedescription";
|
|
const string pInsuranceThirdPartyCaused = "insurancethirdpartycaused";
|
|
const string pInsuranceThirdPartyCausedName = "insurancethirdpartycausedname";
|
|
const string pInsuranceThirdPartyCausedWhy = "insurancethirdpartycausedwhy";
|
|
const string pInsuranceWitnessesNamesAddresses = "insurancewitnessesnamesaddresses";
|
|
const string pInsuranceBurglaryTheftMethodOfEntry = "insuranceburglarytheftmethodofentry";
|
|
const string pInsurancePropertyLastSeenDate = "insurancepropertylastseendate";
|
|
const string pInsurancePoliceNotified = "insurancepolicenotified";
|
|
const string pInsurancePoliceNotifiedStation = "insurancepolicenotifiedstation";
|
|
const string pInsurancePoliceNotifiedDate = "insurancepolicenotifieddate";
|
|
const string pInsurancePoliceNotifiedCrimeReportNo = "insurancepolicenotifiedcrimereportno";
|
|
const string pInsuranceRecoverReduceAction = "insurancerecoverreduceaction";
|
|
const string pInsuranceOtherInterestedParties = "insuranceotherinterestedparties";
|
|
const string pInsuranceDateOfPurchase = "insurancedateofpurchase";
|
|
const string pInsuranceClaimFormSentDate = "insuranceclaimformsentdate";
|
|
const string pInsuranceClaimFormSentUserId = "insuranceclaimformsentuserid";
|
|
|
|
const string pWarrantyExternalName = "warrantyexternalname";
|
|
const string pWarrantyExternalLoggedDate = "warrantyexternalloggeddate";
|
|
const string pWarrantyExternalReference = "warrantyexternalreference";
|
|
const string pWarrantyExternalCompletedDate = "warrantyexternalcompleteddate";
|
|
|
|
const string pJobDetailsTabResources = "jobDetailTab-Resources";
|
|
const string pJobDetailsTabComponents = "jobDetailTab-Components";
|
|
const string pJobDetailsTabNonWarrantyFinance = "jobDetailTab-NonWarrantyFinance";
|
|
const string pJobDetailsTabNonWarrantyRepairs = "jobDetailTab-NonWarrantyRepairs";
|
|
const string pJobDetailsTabNonWarrantyInsurance = "jobDetailTab-NonWarrantyInsurance";
|
|
const string pJobDetailsTabWarranty = "jobDetailTab-Warranty";
|
|
const string pJobDetailsTabFlags = "jobDetailTab-Flags";
|
|
|
|
#endregion
|
|
|
|
public virtual ActionResult Update(int id, string key, string value = null, Nullable<bool> redirect = null)
|
|
{
|
|
try
|
|
{
|
|
if (id < 0)
|
|
throw new ArgumentOutOfRangeException("id");
|
|
if (string.IsNullOrEmpty(key))
|
|
throw new ArgumentNullException("key");
|
|
|
|
var authToken = UserService.CurrentAuthorization;
|
|
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
var job = Database.Jobs.Find(id);
|
|
|
|
object resultData = null;
|
|
string resultUrlFragment = null;
|
|
|
|
if (job != null)
|
|
{
|
|
switch (key.ToLower())
|
|
{
|
|
case pExpectedClosedDate:
|
|
Authorization.Require(Claims.Job.Properties.ExpectedClosedDate);
|
|
UpdateExpectedClosedDate(job, value);
|
|
break;
|
|
case pDeviceHeldLocation:
|
|
Authorization.Require(Claims.Job.Properties.DeviceHeldLocation);
|
|
UpdateDeviceHeldLocation(job, value);
|
|
break;
|
|
case pFlags:
|
|
Authorization.Require(Claims.Job.Properties.Flags);
|
|
UpdateFlags(job, value);
|
|
resultUrlFragment = pJobDetailsTabFlags;
|
|
break;
|
|
case pNonWarrantyAccountingChargeRequired:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.AccountingChargeRequired);
|
|
resultData = UpdateNonWarrantyAccountingChargeRequired(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyFinance;
|
|
break;
|
|
case pNonWarrantyAccountingChargeAdded:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.AccountingChargeAdded);
|
|
resultData = UpdateNonWarrantyAccountingChargeAdded(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyFinance;
|
|
break;
|
|
case pNonWarrantyAccountingChargePaid:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.AccountingChargePaid);
|
|
resultData = UpdateNonWarrantyAccountingChargePaid(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyFinance;
|
|
break;
|
|
case pNonWarrantyPurchaseOrderRaised:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.PurchaseOrderRaised);
|
|
resultData = UpdateNonWarrantyPurchaseOrderRaised(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyFinance;
|
|
break;
|
|
case pNonWarrantyPurchaseOrderReference:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.PurchaseOrderReference);
|
|
UpdateNonWarrantyPurchaseOrderReference(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyFinance;
|
|
break;
|
|
case pNonWarrantyPurchaseOrderSent:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.PurchaseOrderSent);
|
|
resultData = UpdateNonWarrantyPurchaseOrderSent(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyFinance;
|
|
break;
|
|
case pNonWarrantyInvoiceReceived:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InvoiceReceived);
|
|
resultData = UpdateNonWarrantyInvoiceReceived(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyFinance;
|
|
break;
|
|
case pNonWarrantyRepairerName:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.RepairerName);
|
|
UpdateNonWarrantyRepairerName(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyRepairs;
|
|
break;
|
|
case pNonWarrantyRepairerLoggedDate:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.RepairerLoggedDate);
|
|
UpdateNonWarrantyRepairerLoggedDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyRepairs;
|
|
break;
|
|
case pNonWarrantyRepairerReference:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.RepairerReference);
|
|
UpdateNonWarrantyRepairerReference(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyRepairs;
|
|
break;
|
|
case pNonWarrantyRepairerCompletedDate:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.RepairerCompletedDate);
|
|
UpdateNonWarrantyRepairerCompletedDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyRepairs;
|
|
break;
|
|
case pNonWarrantyIsInsuranceClaim:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.IsInsuranceClaim);
|
|
UpdateNonWarrantyIsInsuranceClaim(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceLossOrDamageDate:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceLossOrDamageDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceEventLocation:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceEventLocation(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceDescription:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceDescription(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceThirdPartyCaused:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceThirdPartyCaused(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceThirdPartyCausedName:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceThirdPartyCausedName(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceThirdPartyCausedWhy:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceThirdPartyCausedWhy(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceWitnessesNamesAddresses:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceWitnessesNamesAddresses(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceBurglaryTheftMethodOfEntry:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceBurglaryTheftMethodOfEntry(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsurancePropertyLastSeenDate:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsurancePropertyLastSeenDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsurancePoliceNotified:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsurancePoliceNotified(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsurancePoliceNotifiedStation:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsurancePoliceNotifiedStation(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsurancePoliceNotifiedDate:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsurancePoliceNotifiedDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsurancePoliceNotifiedCrimeReportNo:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsurancePoliceNotifiedCrimeReportNo(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceRecoverReduceAction:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceRecoverReduceAction(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceOtherInterestedParties:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceOtherInterestedParties(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceDateOfPurchase:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails);
|
|
UpdateInsuranceDateOfPurchase(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pInsuranceClaimFormSentDate:
|
|
Authorization.Require(Claims.Job.Properties.NonWarrantyProperties.InsuranceClaimFormSent);
|
|
resultData = UpdateInsuranceClaimFormSentDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabNonWarrantyInsurance;
|
|
break;
|
|
case pWarrantyExternalName:
|
|
Authorization.Require(Claims.Job.Properties.WarrantyProperties.ExternalName);
|
|
UpdateWarrantyExternalName(job, value);
|
|
resultUrlFragment = pJobDetailsTabWarranty;
|
|
break;
|
|
case pWarrantyExternalLoggedDate:
|
|
Authorization.Require(Claims.Job.Properties.WarrantyProperties.ExternalLoggedDate);
|
|
UpdateWarrantyExternalLoggedDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabWarranty;
|
|
break;
|
|
case pWarrantyExternalReference:
|
|
Authorization.Require(Claims.Job.Properties.WarrantyProperties.ExternalReference);
|
|
UpdateWarrantyExternalReference(job, value);
|
|
resultUrlFragment = pJobDetailsTabWarranty;
|
|
break;
|
|
case pWarrantyExternalCompletedDate:
|
|
Authorization.Require(Claims.Job.Properties.WarrantyProperties.ExternalCompletedDate);
|
|
UpdateWarrantyExternalCompletedDate(job, value);
|
|
resultUrlFragment = pJobDetailsTabWarranty;
|
|
break;
|
|
default:
|
|
throw new Exception("Invalid Update Key");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Job Id");
|
|
}
|
|
if (redirect.HasValue && redirect.Value)
|
|
return this.RedirectToAction(MVC.Job.Show(job.Id), resultUrlFragment);
|
|
//return RedirectToAction(MVC.Job.Show(job.Id));
|
|
else
|
|
{
|
|
if (resultData != null)
|
|
{
|
|
return Json(resultData, JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (redirect.HasValue && redirect.Value)
|
|
throw;
|
|
else
|
|
return Json(string.Format("Error: {0}", ex.Message), JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
|
|
#region Update Shortcut Methods
|
|
[DiscoAuthorize(Claims.Job.Properties.ExpectedClosedDate)]
|
|
public virtual ActionResult UpdateExpectedClosedDate(int id, string ExpectedClosedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pExpectedClosedDate, ExpectedClosedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.DeviceHeldLocation)]
|
|
public virtual ActionResult UpdateDeviceHeldLocation(int id, string DeviceHeldLocation, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pDeviceHeldLocation, DeviceHeldLocation, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.Flags)]
|
|
public virtual ActionResult UpdateFlags(int id, string Flags, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pFlags, Flags, redirect);
|
|
}
|
|
|
|
#region NonWarranty
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.AccountingChargeRequired)]
|
|
public virtual ActionResult UpdateNonWarrantyAccountingChargeRequired(int id, string AccountingChargeRequiredDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyAccountingChargeRequired, AccountingChargeRequiredDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.AccountingChargeAdded)]
|
|
public virtual ActionResult UpdateNonWarrantyAccountingChargeAdded(int id, string AccountingChargeAddedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyAccountingChargeAdded, AccountingChargeAddedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.AccountingChargePaid)]
|
|
public virtual ActionResult UpdateNonWarrantyAccountingChargePaid(int id, string AccountingChargePaidDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyAccountingChargePaid, AccountingChargePaidDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.PurchaseOrderRaised)]
|
|
public virtual ActionResult UpdateNonWarrantyPurchaseOrderRaised(int id, string PurchaseOrderRaisedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyPurchaseOrderRaised, PurchaseOrderRaisedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.PurchaseOrderReference)]
|
|
public virtual ActionResult UpdateNonWarrantyPurchaseOrderReference(int id, string PurchaseOrderReference, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyPurchaseOrderReference, PurchaseOrderReference, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.PurchaseOrderSent)]
|
|
public virtual ActionResult UpdateNonWarrantyPurchaseOrderSent(int id, string PurchaseOrderSentDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyPurchaseOrderSent, PurchaseOrderSentDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InvoiceReceived)]
|
|
public virtual ActionResult UpdateNonWarrantyInvoiceReceived(int id, string InvoiceReceivedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyInvoiceReceived, InvoiceReceivedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.RepairerName)]
|
|
public virtual ActionResult UpdateNonWarrantyRepairerName(int id, string RepairerName, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyRepairerName, RepairerName, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.RepairerLoggedDate)]
|
|
public virtual ActionResult UpdateNonWarrantyRepairerLoggedDate(int id, string RepairerLoggedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyRepairerLoggedDate, RepairerLoggedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.RepairerReference)]
|
|
public virtual ActionResult UpdateNonWarrantyRepairerReference(int id, string RepairerReference, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyRepairerReference, RepairerReference, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.RepairerCompletedDate)]
|
|
public virtual ActionResult UpdateNonWarrantyRepairerCompletedDate(int id, string RepairerCompletedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyRepairerCompletedDate, RepairerCompletedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.IsInsuranceClaim)]
|
|
public virtual ActionResult UpdateNonWarrantyIsInsuranceClaim(int id, bool IsInsuranceClaim, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pNonWarrantyIsInsuranceClaim, IsInsuranceClaim.ToString(), redirect);
|
|
}
|
|
#endregion
|
|
|
|
#region Insurance
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceLossOrDamageDate(int id, string LossOrDamageDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceLossOrDamageDate, LossOrDamageDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceEventLocation(int id, string EventLocation, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceEventLocation, EventLocation, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceDescription(int id, string Description, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceDescription, Description, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceThirdPartyCaused(int id, string ThirdPartyCaused, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceThirdPartyCaused, ThirdPartyCaused, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceThirdPartyCausedName(int id, string ThirdPartyCausedName, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceThirdPartyCausedName, ThirdPartyCausedName, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceThirdPartyCausedWhy(int id, string ThirdPartyCausedWhy, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceThirdPartyCausedWhy, ThirdPartyCausedWhy, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceWitnessesNamesAddresses(int id, string WitnessesNamesAddresses, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceWitnessesNamesAddresses, WitnessesNamesAddresses, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceBurglaryTheftMethodOfEntry(int id, string BurglaryTheftMethodOfEntry, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceBurglaryTheftMethodOfEntry, BurglaryTheftMethodOfEntry, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsurancePropertyLastSeenDate(int id, string PropertyLastSeenDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsurancePropertyLastSeenDate, PropertyLastSeenDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsurancePoliceNotified(int id, string PoliceNotified, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsurancePoliceNotified, PoliceNotified, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsurancePoliceNotifiedStation(int id, string PoliceNotifiedStation, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsurancePoliceNotifiedStation, PoliceNotifiedStation, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsurancePoliceNotifiedDate(int id, string PoliceNotifiedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsurancePoliceNotifiedDate, PoliceNotifiedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsurancePoliceNotifiedCrimeReportNo(int id, string PoliceNotifiedCrimeReportNo, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsurancePoliceNotifiedCrimeReportNo, PoliceNotifiedCrimeReportNo, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceRecoverReduceAction(int id, string RecoverReduceAction, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceRecoverReduceAction, RecoverReduceAction, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceOtherInterestedParties(int id, string OtherInterestedParties, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceOtherInterestedParties, OtherInterestedParties, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceDetails)]
|
|
public virtual ActionResult UpdateInsuranceDateOfPurchase(int id, string DateOfPurchase, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceDateOfPurchase, DateOfPurchase, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceClaimFormSent)]
|
|
public virtual ActionResult UpdateInsuranceClaimFormSentDate(int id, string ClaimFormSentDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceClaimFormSentDate, ClaimFormSentDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.InsuranceClaimFormSent)]
|
|
public virtual ActionResult UpdateInsuranceClaimFormSentUserId(int id, string ClaimFormSentUserId, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pInsuranceClaimFormSentUserId, ClaimFormSentUserId, redirect);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Warranty
|
|
[DiscoAuthorize(Claims.Job.Properties.WarrantyProperties.ExternalName)]
|
|
public virtual ActionResult UpdateWarrantyExternalName(int id, string ExternalName, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pWarrantyExternalName, ExternalName, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.WarrantyProperties.ExternalLoggedDate)]
|
|
public virtual ActionResult UpdateWarrantyExternalLoggedDate(int id, string ExternalLoggedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pWarrantyExternalLoggedDate, ExternalLoggedDate, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.WarrantyProperties.ExternalReference)]
|
|
public virtual ActionResult UpdateWarrantyExternalReference(int id, string ExternalReference, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pWarrantyExternalReference, ExternalReference, redirect);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Properties.WarrantyProperties.ExternalCompletedDate)]
|
|
public virtual ActionResult UpdateWarrantyExternalCompletedDate(int id, string ExternalCompletedDate, Nullable<bool> redirect = null)
|
|
{
|
|
return Update(id, pWarrantyExternalCompletedDate, ExternalCompletedDate, redirect);
|
|
}
|
|
#endregion
|
|
|
|
#endregion
|
|
|
|
#region Update Properties
|
|
private void UpdateExpectedClosedDate(Job job, string ExpectedClosedDate)
|
|
{
|
|
if (!string.IsNullOrEmpty(ExpectedClosedDate))
|
|
{
|
|
DateTime ecd;
|
|
if (DateTime.TryParse(ExpectedClosedDate, out ecd))
|
|
{
|
|
ecd = job.ValidateDateAfterOpened(ecd);
|
|
job.ExpectedClosedDate = ecd;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
job.ExpectedClosedDate = null;
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
private void UpdateDeviceHeldLocation(Job job, string DeviceHeldLocation)
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(DeviceHeldLocation) &&
|
|
Database.DiscoConfiguration.JobPreferences.LocationMode == LocationModes.RestrictedList)
|
|
{
|
|
// Enforce Restricted List Mode
|
|
var value = DeviceHeldLocation.Trim();
|
|
|
|
if (!Database.DiscoConfiguration.JobPreferences.LocationList.Contains(value, StringComparer.OrdinalIgnoreCase))
|
|
throw new ArgumentException("The location was not found in the list (Mode: Restricted List)");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(DeviceHeldLocation))
|
|
job.DeviceHeldLocation = null;
|
|
else
|
|
job.DeviceHeldLocation = DeviceHeldLocation.Trim();
|
|
|
|
Database.SaveChanges();
|
|
}
|
|
private void UpdateFlags(Job job, string Flags)
|
|
{
|
|
// Only User Management Job Supports Flags at the moment
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.UMgmt, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for User Management Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(Flags))
|
|
{
|
|
if (!job.Flags.HasValue)
|
|
{
|
|
job.Flags = null;
|
|
Database.SaveChanges();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
long flags;
|
|
if (Flags.Contains(','))
|
|
{
|
|
flags = 0;
|
|
foreach (var fs in Flags.Split(','))
|
|
{
|
|
long fi;
|
|
if (!long.TryParse(fs, out fi))
|
|
throw new Exception("Invalid Int64 Format");
|
|
else
|
|
flags = flags | fi;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!long.TryParse(Flags, out flags))
|
|
throw new Exception("Invalid Int64 Format");
|
|
}
|
|
if (flags == 0)
|
|
{
|
|
if (job.Flags.HasValue)
|
|
{
|
|
job.Flags = null;
|
|
Database.SaveChanges();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!job.Flags.HasValue || (long)job.Flags.Value != flags)
|
|
{
|
|
job.Flags = (Disco.Models.Repository.Job.UserManagementFlags)flags;
|
|
Database.SaveChanges();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#region Job NonWarranty
|
|
|
|
private void UpdateNonWarrantyIsInsuranceClaim(Job job, string IsInsuranceClaim)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
bool bIsInsuranceClaim;
|
|
if (string.IsNullOrEmpty(IsInsuranceClaim) || !bool.TryParse(IsInsuranceClaim, out bIsInsuranceClaim))
|
|
{
|
|
throw new Exception("Invalid IsInsuranceClaim Value");
|
|
}
|
|
|
|
job.JobMetaNonWarranty.IsInsuranceClaim = bIsInsuranceClaim;
|
|
if (job.JobMetaInsurance == null)
|
|
{
|
|
var jmi = new Disco.Models.Repository.JobMetaInsurance();
|
|
jmi.JobId = job.Id;
|
|
|
|
if (job.Device.DeviceBatch != null)
|
|
{
|
|
jmi.DateOfPurchase = job.Device.DeviceBatch.PurchaseDate;
|
|
}
|
|
else
|
|
{
|
|
if (!string.IsNullOrEmpty(job.DeviceSerialNumber))
|
|
{
|
|
jmi.DateOfPurchase = job.Device.DeviceModel.DefaultPurchaseDate;
|
|
}
|
|
}
|
|
if (job.User != null)
|
|
jmi.OtherInterestedParties = job.User.DisplayName;
|
|
|
|
job.JobMetaInsurance = jmi;
|
|
Database.JobMetaInsurances.Add(jmi);
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private Models.Job._DateChangeModel UpdateNonWarrantyAccountingChargeRequired(Job job, string AccountingChargeRequiredDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(AccountingChargeRequiredDate))
|
|
{
|
|
job.JobMetaNonWarranty.AccountingChargeRequiredDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(AccountingChargeRequiredDate, out d))
|
|
{
|
|
d = job.ValidateDateAfterOpened(d);
|
|
job.JobMetaNonWarranty.AccountingChargeRequiredDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
job.JobMetaNonWarranty.AccountingChargeRequiredUserId = CurrentUser.UserId;
|
|
Database.SaveChanges();
|
|
return new Models.Job._DateChangeModel()
|
|
{
|
|
Id = job.Id,
|
|
Result = "OK",
|
|
UserDescription = CurrentUser.ToString()
|
|
}.SetDateTime(job.JobMetaNonWarranty.AccountingChargeRequiredDate);
|
|
}
|
|
private Models.Job._DateChangeModel UpdateNonWarrantyAccountingChargeAdded(Job job, string AccountingChargeAddedDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(AccountingChargeAddedDate))
|
|
{
|
|
job.JobMetaNonWarranty.AccountingChargeAddedDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(AccountingChargeAddedDate, out d))
|
|
{
|
|
d = job.ValidateDateAfterOpened(d);
|
|
job.JobMetaNonWarranty.AccountingChargeAddedDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
job.JobMetaNonWarranty.AccountingChargeAddedUserId = CurrentUser.UserId;
|
|
Database.SaveChanges();
|
|
return new Models.Job._DateChangeModel()
|
|
{
|
|
Id = job.Id,
|
|
Result = "OK",
|
|
UserDescription = CurrentUser.ToString()
|
|
}.SetDateTime(job.JobMetaNonWarranty.AccountingChargeAddedDate);
|
|
}
|
|
private Models.Job._DateChangeModel UpdateNonWarrantyAccountingChargePaid(Job job, string AccountingChargePaidDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(AccountingChargePaidDate))
|
|
{
|
|
job.JobMetaNonWarranty.AccountingChargePaidDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(AccountingChargePaidDate, out d))
|
|
{
|
|
d = job.ValidateDateAfterOpened(d);
|
|
job.JobMetaNonWarranty.AccountingChargePaidDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
job.JobMetaNonWarranty.AccountingChargePaidUserId = CurrentUser.UserId;
|
|
Database.SaveChanges();
|
|
return new Models.Job._DateChangeModel()
|
|
{
|
|
Id = job.Id,
|
|
Result = "OK",
|
|
UserDescription = CurrentUser.ToString()
|
|
}.SetDateTime(job.JobMetaNonWarranty.AccountingChargePaidDate);
|
|
}
|
|
private Models.Job._DateChangeModel UpdateNonWarrantyPurchaseOrderRaised(Job job, string PurchaseOrderRaisedDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(PurchaseOrderRaisedDate))
|
|
{
|
|
job.JobMetaNonWarranty.PurchaseOrderRaisedDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(PurchaseOrderRaisedDate, out d))
|
|
{
|
|
d = job.ValidateDateAfterOpened(d);
|
|
job.JobMetaNonWarranty.PurchaseOrderRaisedDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
job.JobMetaNonWarranty.PurchaseOrderRaisedUserId = CurrentUser.UserId;
|
|
Database.SaveChanges();
|
|
return new Models.Job._DateChangeModel()
|
|
{
|
|
Id = job.Id,
|
|
Result = "OK",
|
|
UserDescription = CurrentUser.ToString()
|
|
}.SetDateTime(job.JobMetaNonWarranty.PurchaseOrderRaisedDate);
|
|
}
|
|
private void UpdateNonWarrantyPurchaseOrderReference(Job job, string PurchaseOrderReference)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(PurchaseOrderReference))
|
|
job.JobMetaNonWarranty.PurchaseOrderReference = null;
|
|
else
|
|
job.JobMetaNonWarranty.PurchaseOrderReference = PurchaseOrderReference;
|
|
|
|
Database.SaveChanges();
|
|
}
|
|
private Models.Job._DateChangeModel UpdateNonWarrantyPurchaseOrderSent(Job job, string PurchaseOrderSentDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(PurchaseOrderSentDate))
|
|
{
|
|
job.JobMetaNonWarranty.PurchaseOrderSentDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(PurchaseOrderSentDate, out d))
|
|
{
|
|
d = job.ValidateDateAfterOpened(d);
|
|
job.JobMetaNonWarranty.PurchaseOrderSentDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
job.JobMetaNonWarranty.PurchaseOrderSentUserId = CurrentUser.UserId;
|
|
Database.SaveChanges();
|
|
return new Models.Job._DateChangeModel()
|
|
{
|
|
Id = job.Id,
|
|
Result = "OK",
|
|
UserDescription = CurrentUser.ToString()
|
|
}.SetDateTime(job.JobMetaNonWarranty.PurchaseOrderSentDate);
|
|
}
|
|
private Models.Job._DateChangeModel UpdateNonWarrantyInvoiceReceived(Job job, string InvoiceReceivedDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(InvoiceReceivedDate))
|
|
{
|
|
job.JobMetaNonWarranty.InvoiceReceivedDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(InvoiceReceivedDate, out d))
|
|
{
|
|
d = job.ValidateDateAfterOpened(d);
|
|
job.JobMetaNonWarranty.InvoiceReceivedDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
job.JobMetaNonWarranty.InvoiceReceivedUserId = CurrentUser.UserId;
|
|
Database.SaveChanges();
|
|
return new Models.Job._DateChangeModel()
|
|
{
|
|
Id = job.Id,
|
|
Result = "OK",
|
|
UserDescription = CurrentUser.ToString()
|
|
}.SetDateTime(job.JobMetaNonWarranty.InvoiceReceivedDate);
|
|
}
|
|
|
|
private void UpdateNonWarrantyRepairerName(Job job, string RepairerName)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(RepairerName))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerName = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaNonWarranty.RepairerName = RepairerName.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
private void UpdateNonWarrantyRepairerLoggedDate(Job job, string RepairerLoggedDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(RepairerLoggedDate))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerLoggedDate = null;
|
|
}
|
|
else
|
|
{
|
|
if (RepairerLoggedDate.Equals("Now", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerLoggedDate = DateTime.Now;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(RepairerLoggedDate, out d))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerLoggedDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
private void UpdateNonWarrantyRepairerReference(Job job, string RepairerReference)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(RepairerReference))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerReference = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaNonWarranty.RepairerReference = RepairerReference.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
private void UpdateNonWarrantyRepairerCompletedDate(Job job, string RepairerCompletedDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(RepairerCompletedDate))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerCompletedDate = null;
|
|
}
|
|
else
|
|
{
|
|
if (RepairerCompletedDate.Equals("Now", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerCompletedDate = DateTime.Now;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(RepairerCompletedDate, out d))
|
|
{
|
|
job.JobMetaNonWarranty.RepairerCompletedDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Job Insurance
|
|
|
|
private Models.Job._DateChangeModel UpdateInsuranceClaimFormSentDate(Job job, string ClaimFormSentDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(ClaimFormSentDate))
|
|
{
|
|
job.JobMetaInsurance.ClaimFormSentDate = null;
|
|
}
|
|
else
|
|
{
|
|
if (ClaimFormSentDate.Equals("Now", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
job.JobMetaInsurance.ClaimFormSentDate = DateTime.Now;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(ClaimFormSentDate, out d))
|
|
{
|
|
d = job.ValidateDateAfterOpened(d);
|
|
job.JobMetaInsurance.ClaimFormSentDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
}
|
|
job.JobMetaInsurance.ClaimFormSentUserId = CurrentUser.UserId;
|
|
Database.SaveChanges();
|
|
return new Models.Job._DateChangeModel()
|
|
{
|
|
Id = job.Id,
|
|
Result = "OK",
|
|
UserDescription = CurrentUser.ToString()
|
|
}.SetDateTime(job.JobMetaInsurance.ClaimFormSentDate);
|
|
}
|
|
|
|
private void UpdateInsuranceDateOfPurchase(Job job, string DateOfPurchase)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(DateOfPurchase))
|
|
{
|
|
job.JobMetaInsurance.DateOfPurchase = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime dt;
|
|
if (!DateTime.TryParse(DateOfPurchase, out dt))
|
|
{
|
|
throw new Exception("Invalid DateTime Value");
|
|
}
|
|
job.JobMetaInsurance.DateOfPurchase = dt;
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceOtherInterestedParties(Job job, string OtherInterestedParties)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(OtherInterestedParties))
|
|
{
|
|
job.JobMetaInsurance.OtherInterestedParties = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.OtherInterestedParties = OtherInterestedParties.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceRecoverReduceAction(Job job, string RecoverReduceAction)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(RecoverReduceAction))
|
|
{
|
|
job.JobMetaInsurance.RecoverReduceAction = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.RecoverReduceAction = RecoverReduceAction.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsurancePoliceNotifiedCrimeReportNo(Job job, string PoliceNotifiedCrimeReportNo)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(PoliceNotifiedCrimeReportNo))
|
|
{
|
|
job.JobMetaInsurance.PoliceNotifiedCrimeReportNo = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.PoliceNotifiedCrimeReportNo = PoliceNotifiedCrimeReportNo.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsurancePoliceNotifiedDate(Job job, string PoliceNotifiedDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(PoliceNotifiedDate))
|
|
{
|
|
job.JobMetaInsurance.PoliceNotifiedDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime dt;
|
|
if (!DateTime.TryParse(PoliceNotifiedDate, out dt))
|
|
{
|
|
throw new Exception("Invalid DateTime Value");
|
|
}
|
|
job.JobMetaInsurance.PoliceNotifiedDate = dt;
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsurancePoliceNotifiedStation(Job job, string PoliceNotifiedStation)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(PoliceNotifiedStation))
|
|
{
|
|
job.JobMetaInsurance.PoliceNotifiedStation = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.PoliceNotifiedStation = PoliceNotifiedStation.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsurancePoliceNotified(Job job, string PoliceNotified)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
bool b;
|
|
if (string.IsNullOrEmpty(PoliceNotified) || !bool.TryParse(PoliceNotified, out b))
|
|
{
|
|
throw new Exception("Invalid Boolean Value");
|
|
}
|
|
|
|
job.JobMetaInsurance.PoliceNotified = b;
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsurancePropertyLastSeenDate(Job job, string PropertyLastSeenDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(PropertyLastSeenDate))
|
|
{
|
|
job.JobMetaInsurance.PropertyLastSeenDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(PropertyLastSeenDate, out d))
|
|
{
|
|
job.JobMetaInsurance.PropertyLastSeenDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceBurglaryTheftMethodOfEntry(Job job, string BurglaryTheftMethodOfEntry)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(BurglaryTheftMethodOfEntry))
|
|
{
|
|
job.JobMetaInsurance.BurglaryTheftMethodOfEntry = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.BurglaryTheftMethodOfEntry = BurglaryTheftMethodOfEntry.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceWitnessesNamesAddresses(Job job, string WitnessesNamesAddresses)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(WitnessesNamesAddresses))
|
|
{
|
|
job.JobMetaInsurance.WitnessesNamesAddresses = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.WitnessesNamesAddresses = WitnessesNamesAddresses.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceThirdPartyCausedWhy(Job job, string ThirdPartyCausedWhy)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(ThirdPartyCausedWhy))
|
|
{
|
|
job.JobMetaInsurance.ThirdPartyCausedWhy = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.ThirdPartyCausedWhy = ThirdPartyCausedWhy.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceThirdPartyCausedName(Job job, string ThirdPartyCausedName)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(ThirdPartyCausedName))
|
|
{
|
|
job.JobMetaInsurance.ThirdPartyCausedName = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.ThirdPartyCausedName = ThirdPartyCausedName.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceThirdPartyCaused(Job job, string ThirdPartyCaused)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
bool b;
|
|
if (string.IsNullOrEmpty(ThirdPartyCaused) || !bool.TryParse(ThirdPartyCaused, out b))
|
|
{
|
|
throw new Exception("Invalid Boolean Value");
|
|
}
|
|
|
|
job.JobMetaInsurance.ThirdPartyCaused = b;
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceDescription(Job job, string Description)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(Description))
|
|
{
|
|
job.JobMetaInsurance.Description = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.Description = Description.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceEventLocation(Job job, string EventLocation)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(EventLocation))
|
|
{
|
|
job.JobMetaInsurance.EventLocation = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaInsurance.EventLocation = EventLocation.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateInsuranceLossOrDamageDate(Job job, string LossOrDamageDate)
|
|
{
|
|
// Validate Is NonWarranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HNWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware NonWarranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(LossOrDamageDate))
|
|
{
|
|
job.JobMetaInsurance.LossOrDamageDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(LossOrDamageDate, out d))
|
|
{
|
|
job.JobMetaInsurance.LossOrDamageDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
#endregion
|
|
|
|
#region Job Warranty
|
|
private void UpdateWarrantyExternalName(Job job, string ExternalName)
|
|
{
|
|
// Validate Is Warranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware Warranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(ExternalName))
|
|
{
|
|
job.JobMetaWarranty.ExternalName = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaWarranty.ExternalName = ExternalName.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateWarrantyExternalLoggedDate(Job job, string ExternalLoggedDate)
|
|
{
|
|
// Validate Is Warranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware Warranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(ExternalLoggedDate))
|
|
{
|
|
job.JobMetaWarranty.ExternalLoggedDate = null;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(ExternalLoggedDate, out d))
|
|
{
|
|
job.JobMetaWarranty.ExternalLoggedDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateWarrantyExternalReference(Job job, string ExternalReference)
|
|
{
|
|
// Validate Is Warranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware Warranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrWhiteSpace(ExternalReference))
|
|
{
|
|
job.JobMetaWarranty.ExternalReference = null;
|
|
}
|
|
else
|
|
{
|
|
job.JobMetaWarranty.ExternalReference = ExternalReference.Trim();
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
private void UpdateWarrantyExternalCompletedDate(Job job, string ExternalCompletedDate)
|
|
{
|
|
// Validate Is Warranty Job
|
|
if (!job.JobTypeId.Equals(JobType.JobTypeIds.HWar, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
throw new Exception("This property can only be set for Hardware Warranty Jobs");
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(ExternalCompletedDate))
|
|
{
|
|
job.JobMetaWarranty.ExternalCompletedDate = null;
|
|
}
|
|
else
|
|
{
|
|
if (ExternalCompletedDate.Equals("Now", StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
job.JobMetaWarranty.ExternalCompletedDate = DateTime.Now;
|
|
}
|
|
else
|
|
{
|
|
DateTime d;
|
|
if (DateTime.TryParse(ExternalCompletedDate, out d))
|
|
{
|
|
job.JobMetaWarranty.ExternalCompletedDate = d;
|
|
}
|
|
else
|
|
{
|
|
throw new Exception("Invalid Date Format");
|
|
}
|
|
}
|
|
}
|
|
Database.SaveChanges();
|
|
}
|
|
#endregion
|
|
|
|
#endregion
|
|
|
|
#region Job Actions
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.UpdateSubTypes)]
|
|
public virtual ActionResult UpdateSubTypes(int id, List<string> SubTypes = null, Nullable<bool> AddComponents = null, Nullable<bool> redirect = null)
|
|
{
|
|
try
|
|
{
|
|
if (id < 0)
|
|
throw new ArgumentOutOfRangeException("id");
|
|
if (SubTypes == null)
|
|
throw new ArgumentNullException("SubTypes");
|
|
if (SubTypes.Count == 0)
|
|
throw new ArgumentException("The job must contain at least one Sub Type", "SubTypes");
|
|
if (AddComponents == null)
|
|
AddComponents = false;
|
|
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
var job = Database.Jobs.Include("JobSubTypes").Where(j => j.Id == id).FirstOrDefault();
|
|
if (job == null)
|
|
throw new Exception("Invalid Job Id");
|
|
|
|
var subTypes = Database.JobSubTypes.Where(jst => SubTypes.Contains(jst.JobTypeId + "_" + jst.Id)).ToList();
|
|
job.UpdateSubTypes(Database, subTypes, AddComponents.Value, CurrentUser);
|
|
Database.SaveChanges();
|
|
if (redirect.HasValue && redirect.Value)
|
|
return RedirectToAction(MVC.Job.Show(job.Id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (redirect.HasValue && redirect.Value)
|
|
throw;
|
|
else
|
|
return Json(string.Format("Error: {0}", ex.Message), JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.Flags)]
|
|
public virtual ActionResult UpdateFlag(int id, long? Flag, string Reason, Nullable<bool> redirect = null)
|
|
{
|
|
try
|
|
{
|
|
if (id < 0)
|
|
throw new ArgumentOutOfRangeException("id");
|
|
if (!Flag.HasValue || Flag.Value == 0)
|
|
throw new ArgumentNullException("Flag");
|
|
|
|
var job = Database.Jobs.Include("JobSubTypes").Where(j => j.Id == id).FirstOrDefault();
|
|
if (job == null)
|
|
throw new Exception("Invalid Job Id");
|
|
|
|
var flag = Flag.Value;
|
|
var validFlags = job.ValidFlags();
|
|
Tuple<string, bool> flagStatus;
|
|
if (validFlags.TryGetValue((flag < 0 ? flag * -1 : flag), out flagStatus))
|
|
{
|
|
if (flag < 0)
|
|
{ // Remove Flag
|
|
if (flagStatus.Item2)
|
|
{
|
|
job.Flags = (Disco.Models.Repository.Job.UserManagementFlags)((long)(job.Flags ?? 0) ^ (flag * -1));
|
|
Database.SaveChanges();
|
|
}
|
|
}
|
|
else
|
|
{ // Add Flag
|
|
if (!flagStatus.Item2)
|
|
{
|
|
job.Flags = (Disco.Models.Repository.Job.UserManagementFlags)((long)(job.Flags ?? 0) | flag);
|
|
}
|
|
// Write Reason
|
|
JobLog jobLog = new JobLog()
|
|
{
|
|
JobId = job.Id,
|
|
TechUserId = CurrentUser.UserId,
|
|
Timestamp = DateTime.Now,
|
|
Comments = string.Format("# Added Flag\r\n**{0}**\r\n{1}", flagStatus.Item1, string.IsNullOrWhiteSpace(Reason) ? "<no reason provided>" : Reason)
|
|
};
|
|
Database.JobLogs.Add(jobLog);
|
|
|
|
Database.SaveChanges();
|
|
}
|
|
|
|
|
|
if (redirect.HasValue && redirect.Value)
|
|
return RedirectToAction(MVC.Job.Show(job.Id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
throw new ArgumentOutOfRangeException("Flag", "Invalid Flag");
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (redirect.HasValue && redirect.Value)
|
|
throw;
|
|
else
|
|
return Json(string.Format("Error: {0}", ex.Message), JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.WaitingForUserAction)]
|
|
public virtual ActionResult WaitingForUserAction(int id, string Reason, Nullable<bool> redirect = null)
|
|
{
|
|
try
|
|
{
|
|
if (id < 0)
|
|
throw new ArgumentOutOfRangeException("id");
|
|
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
var job = Database.Jobs.Where(j => j.Id == id).FirstOrDefault();
|
|
if (job == null)
|
|
throw new Exception("Invalid Job Id");
|
|
if (!job.CanWaitingForUserAction())
|
|
throw new InvalidOperationException("Unable to set Waiting For User Action");
|
|
|
|
job.OnWaitingForUserAction(Database, CurrentUser, Reason);
|
|
Database.SaveChanges();
|
|
if (redirect.HasValue && redirect.Value)
|
|
return RedirectToAction(MVC.Job.Show(job.Id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (redirect.HasValue && redirect.Value)
|
|
throw;
|
|
else
|
|
return Json(string.Format("Error: {0}", ex.Message), JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.NotWaitingForUserAction)]
|
|
public virtual ActionResult NotWaitingForUserAction(int id, string Resolution, Nullable<bool> redirect = null)
|
|
{
|
|
try
|
|
{
|
|
if (id < 0)
|
|
throw new ArgumentOutOfRangeException("id");
|
|
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
var job = Database.Jobs.Where(j => j.Id == id).FirstOrDefault();
|
|
if (job == null)
|
|
throw new Exception("Invalid Job Id");
|
|
if (!job.CanNotWaitingForUserAction())
|
|
throw new InvalidOperationException("Unable to set Waiting For User Action");
|
|
|
|
job.OnNotWaitingForUserAction(Database, CurrentUser, Resolution);
|
|
Database.SaveChanges();
|
|
if (redirect.HasValue && redirect.Value)
|
|
return RedirectToAction(MVC.Job.Show(job.Id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (redirect.HasValue && redirect.Value)
|
|
throw;
|
|
else
|
|
return Json(string.Format("Error: {0}", ex.Message), JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.DeviceReadyForReturn)]
|
|
public virtual ActionResult DeviceReadyForReturn(int id, bool redirect)
|
|
{
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
var j = Database.Jobs.Find(id);
|
|
if (j != null)
|
|
{
|
|
if (j.CanDeviceReadyForReturn())
|
|
{
|
|
j.OnDeviceReadyForReturn(Database, Database.Users.Find(CurrentUser.UserId));
|
|
|
|
Database.SaveChanges();
|
|
if (redirect)
|
|
return RedirectToAction(MVC.Job.Show(id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.DeviceHeld)]
|
|
public virtual ActionResult DeviceHeld(int id, bool redirect)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
if (j != null)
|
|
{
|
|
if (j.CanDeviceHeld())
|
|
{
|
|
j.OnDeviceHeld(CurrentUser);
|
|
|
|
Database.SaveChanges();
|
|
if (redirect)
|
|
return RedirectToAction(MVC.Job.Show(id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.DeviceReturned)]
|
|
public virtual ActionResult DeviceReturned(int id, bool redirect)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
if (j != null)
|
|
{
|
|
if (j.CanDeviceReturned())
|
|
{
|
|
j.OnDeviceReturned(CurrentUser);
|
|
|
|
Database.SaveChanges();
|
|
if (redirect)
|
|
return RedirectToAction(MVC.Job.Show(id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.ForceClose)]
|
|
public virtual ActionResult ForceClose(int id, string Reason, Nullable<bool> redirect = null)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
if (j != null)
|
|
{
|
|
if (j.CanCloseForced())
|
|
{
|
|
j.OnCloseForced(Database, Database.Users.Find(CurrentUser.UserId), Reason);
|
|
|
|
Database.SaveChanges();
|
|
if (redirect.HasValue && redirect.Value)
|
|
return RedirectToAction(MVC.Job.Show(id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.Close)]
|
|
public virtual ActionResult Close(int id, bool redirect)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
if (j != null)
|
|
{
|
|
if (j.CanCloseNormally())
|
|
{
|
|
j.OnCloseNormally(Database, Database.Users.Find(CurrentUser.UserId));
|
|
|
|
Database.SaveChanges();
|
|
if (redirect)
|
|
return RedirectToAction(MVC.Job.Show(id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.Reopen)]
|
|
public virtual ActionResult Reopen(int id, bool redirect)
|
|
{
|
|
var j = Database.Jobs
|
|
.Include(x => x.ClosedTechUser)
|
|
.FirstOrDefault(x => x.Id == id);
|
|
if (j != null)
|
|
{
|
|
if (j.CanReopen())
|
|
{
|
|
j.OnReopen(Database, CurrentUser);
|
|
|
|
Database.SaveChanges();
|
|
if (redirect)
|
|
return RedirectToAction(MVC.Job.Show(id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.Delete)]
|
|
public virtual ActionResult Delete(int id, bool redirect)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
if (j != null)
|
|
{
|
|
if (j.CanDelete())
|
|
{
|
|
j.OnDelete(Database);
|
|
|
|
Database.SaveChanges();
|
|
if (redirect)
|
|
return RedirectToAction(MVC.Job.Index());
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.ConvertHWarToHNWar)]
|
|
public virtual ActionResult ConvertHWarToHNWar(int id, bool redirect)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
Database.Configuration.LazyLoadingEnabled = true;
|
|
if (j != null)
|
|
{
|
|
if (j.CanConvertHWarToHNWar())
|
|
{
|
|
j.OnConvertHWarToHNWar(Database);
|
|
|
|
Database.SaveChanges();
|
|
if (redirect)
|
|
return RedirectToAction(MVC.Job.Show(j.Id));
|
|
else
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
else
|
|
{
|
|
return Json("Job's state doesn't allow this action", JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
return Json("Invalid Job Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Job Comments
|
|
|
|
[HttpPost, ValidateAntiForgeryToken, DiscoAuthorize(Claims.Job.Actions.Create)]
|
|
public virtual ActionResult InitialComments(CreateModel m)
|
|
{
|
|
m.UpdateModel(Database, Authorization);
|
|
|
|
return Json(Jobs.GenerateInitialComments(Database, m, CurrentUser, out _));
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.ShowLogs)]
|
|
public virtual ActionResult Comments(int id)
|
|
{
|
|
var j = Database.Jobs.Include("JobLogs.TechUser").Where(m => m.Id == id).FirstOrDefault();
|
|
if (j != null)
|
|
{
|
|
var c = new Models.Job.CommentsModel() { Result = "OK" };
|
|
c.Comments = j.JobLogs.OrderByDescending(m => m.Timestamp).Select(jl => Models.Job._CommentModel.FromJobLog(jl)).ToList();
|
|
|
|
return Json(c, JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json(new Models.Job.CommentsModel() { Result = "Invalid Job Number" }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.ShowLogs)]
|
|
public virtual ActionResult Comment(int id)
|
|
{
|
|
var jl = Database.JobLogs.Include("TechUser").FirstOrDefault(l => l.Id == id);
|
|
if (jl != null)
|
|
{
|
|
var c = Models.Job._CommentModel.FromJobLog(jl);
|
|
|
|
return Json(c, JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json(new Models.Job.CommentsModel() { Result = "Invalid Comment Id" }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
[DiscoAuthorize(Claims.Job.Actions.AddLogs)]
|
|
public virtual ActionResult CommentPost(int id, string comment)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
if (j != null)
|
|
{
|
|
var jl = new Disco.Models.Repository.JobLog()
|
|
{
|
|
JobId = j.Id,
|
|
TechUserId = CurrentUser.UserId,
|
|
Timestamp = DateTime.Now,
|
|
Comments = comment
|
|
};
|
|
Database.JobLogs.Add(jl);
|
|
Database.SaveChanges();
|
|
|
|
jl = Database.JobLogs.Include("TechUser").Where(m => m.Id == jl.Id).FirstOrDefault();
|
|
return Json(new Models.Job.CommentPostModel() { Result = "OK", Comment = Models.Job._CommentModel.FromJobLog(jl) }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json(new Models.Job.CommentPostModel() { Result = "Invalid Job Number" }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorizeAny(Claims.Job.Actions.RemoveAnyLogs, Claims.Job.Actions.RemoveOwnLogs)]
|
|
public virtual ActionResult CommentRemove(int id)
|
|
{
|
|
var jl = Database.JobLogs.Find(id);
|
|
if (jl != null)
|
|
{
|
|
if (jl.TechUserId.Equals(CurrentUser.UserId, StringComparison.OrdinalIgnoreCase))
|
|
Authorization.RequireAny(Claims.Job.Actions.RemoveAnyLogs, Claims.Job.Actions.RemoveOwnLogs);
|
|
else
|
|
Authorization.Require(Claims.Job.Actions.RemoveAnyLogs);
|
|
|
|
Database.JobLogs.Remove(jl);
|
|
Database.SaveChanges();
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
// Doesn't Exist/Already Deleted - OK
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
#endregion
|
|
|
|
#region Job Attachements
|
|
|
|
[DiscoAuthorize(Claims.Job.ShowAttachments), OutputCache(Location = System.Web.UI.OutputCacheLocation.Client, Duration = 172800)]
|
|
public virtual ActionResult AttachmentDownload(int id)
|
|
{
|
|
var ja = Database.JobAttachments.Find(id);
|
|
if (ja != null)
|
|
{
|
|
var filePath = ja.RepositoryFilename(Database);
|
|
if (System.IO.File.Exists(filePath))
|
|
{
|
|
return File(filePath, ja.MimeType, ja.Filename);
|
|
}
|
|
else
|
|
{
|
|
return HttpNotFound("Attachment reference exists, but file not found");
|
|
}
|
|
}
|
|
return HttpNotFound("Invalid Attachment Number");
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.ShowAttachments), OutputCache(Location = System.Web.UI.OutputCacheLocation.Client, Duration = 172800)]
|
|
public virtual ActionResult AttachmentThumbnail(int id)
|
|
{
|
|
var ja = Database.JobAttachments.Find(id);
|
|
if (ja != null)
|
|
{
|
|
if (ja.WaitForThumbnailGeneration(Database, out var thumbPath, out var mimeType))
|
|
return File(thumbPath, mimeType);
|
|
else
|
|
return File(ClientSource.Style.Images.AttachmentTypes.MimeTypeIcons.Icon(ja.MimeType), "image/png");
|
|
}
|
|
return HttpNotFound("Invalid Attachment Number");
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.AddAttachments), ValidateAntiForgeryToken]
|
|
public virtual ActionResult AttachmentUpload(int id, string comments)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
if (j != null)
|
|
{
|
|
if (Request.Files.Count > 0)
|
|
{
|
|
var file = Request.Files.Get(0);
|
|
if (file.ContentLength > 0)
|
|
{
|
|
var contentType = file.ContentType;
|
|
if (string.IsNullOrEmpty(contentType) || contentType.Equals("unknown/unknown", StringComparison.OrdinalIgnoreCase))
|
|
contentType = MimeTypes.ResolveMimeType(file.FileName);
|
|
|
|
if (string.IsNullOrWhiteSpace(comments))
|
|
comments = null;
|
|
|
|
var ja = new JobAttachment()
|
|
{
|
|
JobId = j.Id,
|
|
TechUserId = CurrentUser.UserId,
|
|
Filename = file.FileName,
|
|
MimeType = contentType,
|
|
Timestamp = DateTime.Now,
|
|
Comments = comments
|
|
};
|
|
Database.JobAttachments.Add(ja);
|
|
Database.SaveChanges();
|
|
|
|
ja.SaveAttachment(Database, file.InputStream);
|
|
|
|
ja.GenerateThumbnail(Database);
|
|
|
|
return Json(ja.Id, JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
throw new Exception("No Attachment Uploaded");
|
|
}
|
|
throw new Exception("Invalid Job Number");
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.ShowAttachments)]
|
|
public virtual ActionResult Attachment(int id)
|
|
{
|
|
var ja = Database.JobAttachments
|
|
.Include(a => a.DocumentTemplate)
|
|
.Include(a => a.TechUser)
|
|
.Where(m => m.Id == id).FirstOrDefault();
|
|
if (ja != null)
|
|
{
|
|
var m = new Models.Attachment.AttachmentModel()
|
|
{
|
|
Attachment = Models.Attachment._AttachmentModel.FromAttachment(ja),
|
|
Result = "OK"
|
|
};
|
|
|
|
return Json(m, JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json(new Models.Attachment.AttachmentModel() { Result = "Invalid Attachment Number" }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.ShowAttachments)]
|
|
public virtual ActionResult Attachments(int id)
|
|
{
|
|
var j = Database.Jobs.Include("JobAttachments.DocumentTemplate").Include("JobAttachments.TechUser").Where(m => m.Id == id).FirstOrDefault();
|
|
if (j != null)
|
|
{
|
|
var m = new Models.Attachment.AttachmentsModel()
|
|
{
|
|
Attachments = j.JobAttachments.Select(ja => Models.Attachment._AttachmentModel.FromAttachment(ja)).ToList(),
|
|
Result = "OK"
|
|
};
|
|
|
|
return Json(m, JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json(new Models.Attachment.AttachmentsModel() { Result = "Invalid Attachment Number" }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorizeAny(Claims.Job.Actions.RemoveAnyAttachments, Claims.Job.Actions.RemoveOwnAttachments)]
|
|
public virtual ActionResult AttachmentRemove(int id)
|
|
{
|
|
var ja = Database.JobAttachments.Include("TechUser").Where(m => m.Id == id).FirstOrDefault();
|
|
if (ja != null)
|
|
{
|
|
if (ja.TechUserId.Equals(CurrentUser.UserId, StringComparison.OrdinalIgnoreCase))
|
|
Authorization.RequireAny(Claims.Job.Actions.RemoveAnyAttachments, Claims.Job.Actions.RemoveOwnAttachments);
|
|
else
|
|
Authorization.Require(Claims.Job.Actions.RemoveAnyAttachments);
|
|
|
|
ja.OnDelete(Database);
|
|
Database.SaveChanges();
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json("Invalid Attachment Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Job Components
|
|
|
|
[DiscoAuthorizeAll(Claims.Job.Properties.NonWarrantyProperties.AddComponents, Claims.Job.Properties.NonWarrantyProperties.EditComponents)]
|
|
public virtual ActionResult ComponentAdd(int id, string Description, string Cost)
|
|
{
|
|
var j = Database.Jobs.Find(id);
|
|
if (j != null)
|
|
{
|
|
decimal cost = 0;
|
|
if (string.IsNullOrEmpty(Description))
|
|
Description = "?";
|
|
if (!string.IsNullOrEmpty(Cost) && Cost.Contains("$"))
|
|
Cost = Cost.Substring(Cost.IndexOf("$") + 1);
|
|
decimal.TryParse(Cost, out cost);
|
|
|
|
var jc = new Disco.Models.Repository.JobComponent()
|
|
{
|
|
JobId = j.Id,
|
|
Description = Description,
|
|
Cost = cost,
|
|
TechUserId = CurrentUser.UserId
|
|
};
|
|
Database.JobComponents.Add(jc);
|
|
Database.SaveChanges();
|
|
|
|
return Json(new Models.Job.ComponentModel { Result = "OK", Component = Models.Job._ComponentModel.FromJobComponent(jc) }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json(new Models.Job.ComponentModel { Result = "Invalid Job Number" }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.EditComponents)]
|
|
public virtual ActionResult ComponentUpdate(int id, string Description, string Cost)
|
|
{
|
|
var jc = Database.JobComponents.Find(id);
|
|
if (jc != null)
|
|
{
|
|
decimal cost = 0;
|
|
|
|
if (string.IsNullOrEmpty(Description))
|
|
Description = "?";
|
|
if (!string.IsNullOrEmpty(Cost) && Cost.Contains("$"))
|
|
Cost = Cost.Substring(Cost.IndexOf("$") + 1);
|
|
decimal.TryParse(Cost, out cost);
|
|
|
|
jc.Description = Description;
|
|
jc.Cost = cost;
|
|
Database.SaveChanges();
|
|
|
|
return Json(new Models.Job.ComponentModel { Result = "OK", Component = Models.Job._ComponentModel.FromJobComponent(jc) }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json(new Models.Job.ComponentModel { Result = "Invalid Job Component Number" }, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.NonWarrantyProperties.EditComponents)]
|
|
public virtual ActionResult ComponentRemove(int id)
|
|
{
|
|
var jc = Database.JobComponents.Find(id);
|
|
if (jc != null)
|
|
{
|
|
Database.JobComponents.Remove(jc);
|
|
Database.SaveChanges();
|
|
return Json("OK", JsonRequestBehavior.AllowGet);
|
|
}
|
|
return Json("Invalid Job Component Number", JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Job Statistics
|
|
|
|
[DiscoAuthorize(Claims.Job.Show)]
|
|
public virtual ActionResult StatisticsDailyOpenedClosed()
|
|
{
|
|
var result = DailyOpenedClosed.Data(Database, true);
|
|
|
|
return Json(result, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
#endregion
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.GenerateDocuments)]
|
|
public virtual ActionResult GeneratePdf(int id, string DocumentTemplateId)
|
|
{
|
|
if (id <= 0)
|
|
throw new ArgumentOutOfRangeException(nameof(id));
|
|
if (string.IsNullOrEmpty(DocumentTemplateId))
|
|
throw new ArgumentNullException(nameof(DocumentTemplateId));
|
|
|
|
// Obsolete: Use API\DocumentTemplate\Generate instead
|
|
return RedirectToAction(MVC.API.DocumentTemplate.Generate(DocumentTemplateId, id.ToString()));
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.GenerateDocuments)]
|
|
public virtual ActionResult GeneratePdfPackage(int id, string DocumentTemplatePackageId)
|
|
{
|
|
if (id <= 0)
|
|
throw new ArgumentOutOfRangeException(nameof(id));
|
|
if (string.IsNullOrEmpty(DocumentTemplatePackageId))
|
|
throw new ArgumentNullException(nameof(DocumentTemplatePackageId));
|
|
|
|
// Obsolete: Use API\DocumentTemplatePackage\Generate instead
|
|
return RedirectToAction(MVC.API.DocumentTemplatePackage.Generate(DocumentTemplatePackageId, id.ToString()));
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Properties.DeviceHeldLocation)]
|
|
public virtual ActionResult DeviceHeldLocations()
|
|
{
|
|
List<string> locations;
|
|
|
|
switch (Database.DiscoConfiguration.JobPreferences.LocationMode)
|
|
{
|
|
case LocationModes.Unrestricted:
|
|
var jobDateThreshold = DateTime.Now.AddYears(-1);
|
|
locations = Database.Jobs.Where(j => (j.OpenedDate > jobDateThreshold || !j.ClosedDate.HasValue) && j.DeviceHeldLocation != null).Select(j => j.DeviceHeldLocation).Distinct().OrderBy(l => l).ToList().Where(l => !string.IsNullOrWhiteSpace(l)).Select(l => l.Trim()).Distinct(StringComparer.OrdinalIgnoreCase).OrderBy(l => l).ToList();
|
|
break;
|
|
case LocationModes.OptionalList:
|
|
case LocationModes.RestrictedList:
|
|
locations = Database.DiscoConfiguration.JobPreferences.LocationList;
|
|
break;
|
|
default:
|
|
throw new InvalidOperationException("Unknown Location Mode Configured");
|
|
}
|
|
|
|
var locationReferences = ManagedJobList.OpenJobsTable(j => j).Items.Cast<JobTableStatusItemModel>().JobLocationReferences(locations);
|
|
|
|
var results = locationReferences.Select(locRef =>
|
|
{
|
|
string reference = null;
|
|
|
|
if (locRef.References != null && locRef.References.Count > 0)
|
|
{
|
|
if (locRef.References.Count == 1)
|
|
reference = string.Format("Job {0}", locRef.References[0].JobId);
|
|
else
|
|
reference = string.Format("{0} jobs", locRef.References.Count);
|
|
}
|
|
|
|
return new Models.Job.DeviceHeldLocationModel()
|
|
{
|
|
Location = locRef.Location,
|
|
References = reference
|
|
};
|
|
}).ToList();
|
|
|
|
return Json(results, JsonRequestBehavior.AllowGet);
|
|
}
|
|
|
|
#region Exporting
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.Export)]
|
|
[HttpPost, ValidateAntiForgeryToken]
|
|
public virtual ActionResult Export(ExportModel model)
|
|
{
|
|
if (model == null || model.Options == null)
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
// Write Options to Configuration
|
|
Database.DiscoConfiguration.JobPreferences.LastExportOptions = model.Options;
|
|
Database.SaveChanges();
|
|
|
|
// Start Export
|
|
var exportContext = new JobExport(model.Options);
|
|
var taskContext = ExportTask.ScheduleNowCacheResult(exportContext, id => Url.Action(MVC.Job.Export(id)));
|
|
|
|
// Try waiting for completion
|
|
if (taskContext.TaskStatus.WaitUntilFinished(TimeSpan.FromSeconds(1)))
|
|
return RedirectToAction(MVC.Job.Export(taskContext.Id));
|
|
else
|
|
return RedirectToAction(MVC.Config.Logging.TaskStatus(taskContext.TaskStatus.SessionId));
|
|
}
|
|
|
|
[DiscoAuthorize(Claims.Job.Actions.Export)]
|
|
public virtual ActionResult ExportRetrieve(Guid id)
|
|
{
|
|
if (id == Guid.Empty)
|
|
throw new ArgumentNullException(nameof(id));
|
|
|
|
if (!ExportTask.TryFromCache(id, out var context))
|
|
throw new ArgumentException("The export id specified is invalid, or the export data expired (60 minutes)", nameof(id));
|
|
|
|
if (context.Result == null || context.Result.Result == null)
|
|
throw new ArgumentException("The export session is still running, or failed to complete successfully", nameof(id));
|
|
|
|
if (context.Result.RecordCount == 0)
|
|
throw new ArgumentException("No records were found to export", nameof(id));
|
|
|
|
var fileStream = context.Result.Result;
|
|
|
|
return this.File(fileStream.GetBuffer(), 0, (int)fileStream.Length, context.Result.MimeType, context.Result.Filename);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|