Skip to content

Commit

Permalink
fixup! Add funding case type IJB
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Tubach committed Oct 5, 2023
1 parent 1749aff commit f3641d4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,14 @@ public function createFormData(ApplicationProcessEntity $applicationProcess, Fun
return $data;
}

/**
* @inheritDoc
*/
public function createFormDataForCopy(
ApplicationProcessEntity $applicationProcess,
FundingCaseEntity $fundingCase
): array {
return $this->createFormData($applicationProcess, $fundingCase);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public function __construct() {
'programmkosten',
'sonstigeKosten',
'sonstigeAusgaben',
'zuschlagsrelevanteKosten'
'zuschlagsrelevanteKosten',
];

parent::__construct($properties, ['required' => $required]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
use Civi\RemoteTools\JsonSchema\JsonSchema;
use Civi\RemoteTools\JsonSchema\JsonSchemaCalculate;
use Civi\RemoteTools\JsonSchema\JsonSchemaDataPointer;
use Civi\RemoteTools\JsonSchema\JsonSchemaInteger;
use Civi\RemoteTools\JsonSchema\JsonSchemaMoney;
use Civi\RemoteTools\JsonSchema\JsonSchemaObject;

Expand Down

0 comments on commit f3641d4

Please sign in to comment.