File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,11 @@ export default abstract class AbstractTimesheetEntry extends AbstractFunction im
29
29
public description : string ;
30
30
public notes : string ;
31
31
public taskRecordNo : number ;
32
+ public taskId : string ;
33
+ public costTypeId : string ;
32
34
public timeTypeName : string ;
35
+ public laborClassId : string ;
36
+ public laborUnionId : string ;
33
37
public billable : boolean ;
34
38
public overrideBillingRate : number ;
35
39
public overrideLaborCostRate : number ;
Original file line number Diff line number Diff line change @@ -31,8 +31,12 @@ export default class TimesheetEntryCreate extends AbstractTimesheetEntry {
31
31
32
32
xml . writeElement ( "DESCRIPTION" , this . description ) ;
33
33
xml . writeElement ( "NOTES" , this . notes ) ;
34
+ xml . writeElement ( "TASKID" , this . taskId ) ;
34
35
xml . writeElement ( "TASKKEY" , this . taskRecordNo ) ;
36
+ xml . writeElement ( "COSTTYPEID" , this . costTypeId ) ;
35
37
xml . writeElement ( "TIMETYPE" , this . timeTypeName ) ;
38
+ xml . writeElement ( "LABORCLASSID" , this . laborClassId ) ;
39
+ xml . writeElement ( "LABORUNIONID" , this . laborUnionId ) ;
36
40
xml . writeElement ( "BILLABLE" , this . billable ) ;
37
41
38
42
xml . writeElement ( "EXTBILLRATE" , this . overrideBillingRate ) ;
Original file line number Diff line number Diff line change @@ -32,8 +32,12 @@ export default class TimesheetEntryUpdate extends AbstractTimesheetEntry {
32
32
33
33
xml . writeElement ( "DESCRIPTION" , this . description ) ;
34
34
xml . writeElement ( "NOTES" , this . notes ) ;
35
+ xml . writeElement ( "TASKID" , this . taskId ) ;
35
36
xml . writeElement ( "TASKKEY" , this . taskRecordNo ) ;
37
+ xml . writeElement ( "COSTTYPEID" , this . costTypeId ) ;
36
38
xml . writeElement ( "TIMETYPE" , this . timeTypeName ) ;
39
+ xml . writeElement ( "LABORCLASSID" , this . laborClassId ) ;
40
+ xml . writeElement ( "LABORUNIONID" , this . laborUnionId ) ;
37
41
xml . writeElement ( "BILLABLE" , this . billable ) ;
38
42
39
43
xml . writeElement ( "EXTBILLRATE" , this . overrideBillingRate ) ;
You can’t perform that action at this time.
0 commit comments