Skip to content

Commit

Permalink
Merge pull request #851 from Healyhatman/fix-payroll-au-pay-template-…
Browse files Browse the repository at this point in the history
…array-properties

Fix Pay Template items with invalid is-array setting
  • Loading branch information
calcinai authored Apr 28, 2022
2 parents 8ac1460 + 95858d1 commit 55dc1f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public static function getProperties()
'DeductionTypeID' => [false, self::PROPERTY_TYPE_GUID, null, false, false],
'CalculationType' => [false, self::PROPERTY_TYPE_ENUM, null, false, false],
'Percentage' => [false, self::PROPERTY_TYPE_FLOAT, null, false, false],
'Amount' => [false, self::PROPERTY_TYPE_FLOAT, null, true, false],
'Amount' => [false, self::PROPERTY_TYPE_FLOAT, null, false, false],
];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static function getProperties()
return [
'ReimbursementTypeID' => [false, self::PROPERTY_TYPE_GUID, null, false, false],
'Description' => [false, self::PROPERTY_TYPE_STRING, null, false, false],
'Amount' => [false, self::PROPERTY_TYPE_FLOAT, null, true, false],
'Amount' => [false, self::PROPERTY_TYPE_FLOAT, null, false, false],
];
}

Expand Down

0 comments on commit 55dc1f6

Please sign in to comment.