generate_finanzamt_preview
Generate a PDF preview of a tax report for the Finanzamt. Verify the preview before submission using the provided file link. Includes line items, totals, and a summary based on the report data.
Instructions
Generate a test Finanzamt preview for a tax report.
Args:
report_id: Public ID of the tax report
Returns:
Generate a PDF preview of the tax report.
Always suggest to check the preview before sending it to the Finanzamt.
Always include the path to the generated PDF file as a link to open the file from local file system.
Get the report data from @get_tax_report and show line items and totals.
You could add short summary based on the report data.
Ask follow up question to file the tax report to the Finanzamt @submit_tax_report. Don't send the report to the Finanzamt without the user confirmation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
report_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"report_id": {
"title": "Report Id",
"type": "string"
}
},
"required": [
"report_id"
],
"title": "generate_finanzamt_previewArguments",
"type": "object"
}