Skip to content

Commit

Permalink
Merge pull request #658 from Amsterdam/feature/93474-add-datum-of-mel…
Browse files Browse the repository at this point in the history
…ding

Feature/93474 add datum of melding
  • Loading branch information
remyvdwereld authored Sep 4, 2024
2 parents 155881f + d4ac884 commit 9afbc1f
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 682 deletions.
49 changes: 0 additions & 49 deletions src/components/HolidayRental/HolidayRental.tsx

This file was deleted.

19 changes: 0 additions & 19 deletions src/components/HolidayRental/VakantieverhuurReportInformation.ts

This file was deleted.

43 changes: 0 additions & 43 deletions src/components/HolidayRental/components/HolidayRentalReport.tsx

This file was deleted.

43 changes: 0 additions & 43 deletions src/components/HolidayRental/components/Report.tsx

This file was deleted.

This file was deleted.

This file was deleted.

63 changes: 0 additions & 63 deletions src/components/HolidayRental/tests/HolidayRental.test.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ export default (report: RentalReport) => ({
"Check out": <DateDisplay date={ report?.eindDatum } />,
"Gasten": report?.gasten,
"Gewijzigd": report?.isAangepast ? "Ja" : "Nee",
"Verwijderd": report?.isVerwijderd ? "Ja" : "Nee"
"Verwijderd": report?.isVerwijderd ? "Ja" : "Nee",
"Aangemaakt op": <DateDisplay date={ report?.gemaaktOp } />
})
1 change: 1 addition & 0 deletions src/components/HolidayRentalReports/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ export type RentalReport = {
gasten: number
isAangepast: Boolean
isVerwijderd: Boolean
gemaaktOp: string // date-time
}
4 changes: 0 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type CaseEvent from "./components/EventsTimeline/CaseEvent"
import type Permit from "./components/PermitsOverview/Permit"
import type PermitType from "./components/PermitsSynopsis/PermitType"
import type VakantieverhuurReportInformation from "./components/HolidayRental/VakantieverhuurReportInformation"
import type { RentalReport } from "./components/HolidayRentalReports/types"
import type { DefinitionListData } from "./components/Data/DefinitionList/DefinitionList"
import type { ColumnType, Sorting } from "./components/Data/Table/types"
Expand All @@ -12,7 +11,6 @@ import DayDisplay from "./components/DayDisplay/DayDisplay"
import DefinitionList from "./components/Data/DefinitionList/DefinitionList"
import EventsTimeline from "./components/EventsTimeline/EventsTimeline"
import FinancialDisplay from "./components/FinancialDisplay/FinancialDisplay"
import HolidayRental from "./components/HolidayRental/HolidayRental"
import HolidayRentalReports from "./components/HolidayRentalReports/HolidayRentalReports"
import List from "./components/Data/List/List"
import LoadingRows from "./components/Data/components/LoadingRows"
Expand All @@ -33,7 +31,6 @@ export type {
CaseEvent,
Permit,
PermitType,
VakantieverhuurReportInformation,
RentalReport,
DefinitionListData,
ColumnType,
Expand All @@ -50,7 +47,6 @@ export {
EventsTimeline,
FinancialDisplay,
getValidPermits,
HolidayRental,
HolidayRentalReports,
Icons,
isValidDate,
Expand Down
25 changes: 0 additions & 25 deletions src/stories/HolidayRental.stories.tsx

This file was deleted.

Loading

0 comments on commit 9afbc1f

Please sign in to comment.