Feature #2: Implement Repair Provider

Logging Repair for Non-Warranty jobs has been brought into line with
Logging Warranty. RepairProviderFeature implemented which allows plugins
to be used in submitting jobs to third-parties for repair.
This commit is contained in:
Gary Sharp
2014-07-10 17:45:13 +10:00
parent 5ba9fde10f
commit f4394fe2a0
47 changed files with 4471 additions and 1163 deletions
+18
View File
@@ -706,6 +706,24 @@
width: 600px;
height: 250px;
}
#repairJobForm #repairDisclosedInformation table {
font-size: 0.9em;
}
#repairJobForm #repairDisclosedInformation table tr:not(:last-child) {
border-bottom: 1px dashed #aaa;
}
#repairJobForm #repairDisclosedInformation table th {
padding: 2px;
font-weight: bold;
width: 200px;
}
#repairJobForm #repairDisclosedInformation table td {
padding: 2px;
}
#repairJobRepairDescription #RepairDescription {
width: 600px;
height: 250px;
}
#createJob_Container {
margin: 0 -20px;
}
+29
View File
@@ -735,6 +735,35 @@
}
}
#repairJobForm {
#repairDisclosedInformation {
table {
font-size: 0.9em;
tr:not(:last-child) {
border-bottom: 1px dashed #aaa;
}
th {
padding: 2px;
font-weight: bold;
width: 200px;
}
td {
padding: 2px;
}
}
}
}
#repairJobRepairDescription {
#RepairDescription {
width: 600px;
height: 250px;
}
}
#createJob_Container {
margin: 0 -20px;
File diff suppressed because one or more lines are too long