-
Notifications
You must be signed in to change notification settings - Fork 5.5k
[APP] implement new tool for sevdesk - findInvoice, getInvoice #17830
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import app from "../../sevdesk.app.mjs"; | ||
|
||
export default { | ||
key: "sevdesk-get-invoice", | ||
name: "Get Invoice", | ||
description: "Find and retrieve a single invoice by its ID. [See the documentation](https://api.sevdesk.de/#tag/Invoice/operation/getInvoiceById)", | ||
version: "0.0.1", | ||
type: "action", | ||
props: { | ||
app, | ||
invoiceId: { | ||
propDefinition: [ | ||
app, | ||
"invoiceId", | ||
], | ||
description: "ID of the invoice to retrieve", | ||
}, | ||
}, | ||
async run({ $ }) { | ||
const { | ||
app, | ||
invoiceId, | ||
} = this; | ||
|
||
const response = await app.getInvoice({ | ||
$, | ||
invoiceId, | ||
}); | ||
|
||
$.export("$summary", `Successfully retrieved invoice with ID ${invoiceId}`); | ||
return response; | ||
}, | ||
}; |
122 changes: 122 additions & 0 deletions
122
components/sevdesk/actions/get-invoices/get-invoices.mjs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
import app from "../../sevdesk.app.mjs"; | ||
|
||
export default { | ||
key: "sevdesk-get-invoices", | ||
name: "Get Invoices", | ||
description: "Retrieve invoices with optional filtering by status, invoice number, date range, and contact. [See the documentation](https://api.sevdesk.de/#tag/Invoice/operation/getInvoices)", | ||
version: "0.0.1", | ||
type: "action", | ||
props: { | ||
app, | ||
status: { | ||
type: "string", | ||
label: "Status", | ||
description: "Status of the invoices to filter by", | ||
options: [ | ||
{ | ||
label: "Draft", | ||
value: "100", | ||
}, | ||
{ | ||
label: "Open", | ||
value: "200", | ||
}, | ||
{ | ||
label: "Paid", | ||
value: "1000", | ||
}, | ||
], | ||
optional: true, | ||
}, | ||
invoiceNumber: { | ||
type: "string", | ||
label: "Invoice Number", | ||
description: "Retrieve all invoices with this invoice number", | ||
optional: true, | ||
}, | ||
startDate: { | ||
type: "string", | ||
label: "Start Date", | ||
description: "Retrieve all invoices with a date equal or higher (ISO 8601 format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS)", | ||
optional: true, | ||
}, | ||
endDate: { | ||
type: "string", | ||
label: "End Date", | ||
description: "Retrieve all invoices with a date equal or lower (ISO 8601 format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS)", | ||
optional: true, | ||
}, | ||
contactId: { | ||
propDefinition: [ | ||
app, | ||
"contactId", | ||
], | ||
optional: true, | ||
}, | ||
limit: { | ||
type: "integer", | ||
label: "Limit", | ||
description: "Maximum number of invoices to retrieve", | ||
optional: true, | ||
min: 1, | ||
max: 999, | ||
}, | ||
}, | ||
methods: { | ||
convertDateToTimestamp(dateString) { | ||
if (!dateString) return undefined; | ||
|
||
const date = new Date(dateString); | ||
if (isNaN(date.getTime())) { | ||
throw new Error(`Invalid date format: ${dateString}. Please use ISO 8601 format (YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS)`); | ||
} | ||
|
||
return Math.floor(date.getTime() / 1000); | ||
}, | ||
}, | ||
async run({ $ }) { | ||
const { | ||
app, | ||
status, | ||
invoiceNumber, | ||
startDate, | ||
endDate, | ||
contactId, | ||
limit, | ||
} = this; | ||
|
||
let startTimestamp, endTimestamp; | ||
|
||
try { | ||
startTimestamp = this.convertDateToTimestamp(startDate); | ||
endTimestamp = this.convertDateToTimestamp(endDate); | ||
} catch (error) { | ||
throw new Error(`Date validation error: ${error.message}`); | ||
} | ||
|
||
if (startTimestamp && endTimestamp && startTimestamp > endTimestamp) { | ||
throw new Error("Start date cannot be later than end date"); | ||
} | ||
|
||
const response = await app.listInvoices({ | ||
$, | ||
params: { | ||
status, | ||
invoiceNumber, | ||
startDate: startTimestamp, | ||
endDate: endTimestamp, | ||
...(contactId | ||
? { | ||
"contact[id]": contactId, | ||
"contact[objectName]": "Contact", | ||
} | ||
: {} | ||
), | ||
limit, | ||
}, | ||
}); | ||
|
||
$.export("$summary", `Successfully retrieved ${response.objects?.length || 0} invoice(s)`); | ||
return response; | ||
}, | ||
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.