Search found 22 matches

by thielem
07 May 2024, 16:18
Forum: Plugins
Topic: Download file via API
Replies: 0
Views: 44

Download file via API

function py_api_with_file($process_id, $item_id, $FilenameArrayPlaceholder) { global $alerts; $url = VAR_API_SERVER . '/process_file/' . $process_id; $fileNames = explode(",", strval($FilenameArrayPlaceholder)); $files = array(); foreach ($fileNames as $value) { $files[] = attachments::pa...
by thielem
30 Apr 2024, 12:07
Forum: Discussion
Topic: Sub-entity listing configuration on item page
Replies: 1
Views: 51

Sub-entity listing configuration on item page

I have some sub-entities, for which updating the table listing configuration is not applied to the way the entity is displayed on the item page of the parent entity.

I am sure there is a separate setting for this. Where do I find it again?
by thielem
29 Apr 2024, 11:53
Forum: Bug Report version 3.5.3
Topic: API File upload does not work for ONLYOFFICE field
Replies: 2
Views: 34

API File upload does not work for ONLYOFFICE field

Hi! The usual syntax for uploading a file to an attachments field does not work for the new field type "ONLYOFFICE server". I am assuming that it is just not implemented yet, but I am treating it as a bug because our usual workflow with uploading attachments via API does not work anymore a...
by thielem
26 Apr 2024, 15:17
Forum: Suggestions
Topic: Save export template to attachment field
Replies: 0
Views: 106

Save export template to attachment field

Especially with the new Onlyoffice integration, it would be benefitial if Word templates (and HTML as well) could be directly saved into an attachments or OnlyOffice field. This could be implemented as a new action in automated actions (admin specifies template and target attachment field). We have ...
by thielem
23 Apr 2024, 23:53
Forum: Bug Report version 3.5.3
Topic: [SOLVED] ONLYOFFICE Error claiming document cannot be saved
Replies: 1
Views: 61

Re: ONLYOFFICE Error claiming document cannot be saved

SOLVED

Turns out the clock on one of my servers was not synchronized correctly due to a firewall, thus rendering the JWT invalid.
Very specific issue, but I will keep this open in case somebody has a similar issue
by thielem
23 Apr 2024, 23:26
Forum: Bug Report version 3.5.3
Topic: [SOLVED] ONLYOFFICE Error claiming document cannot be saved
Replies: 1
Views: 61

[SOLVED] ONLYOFFICE Error claiming document cannot be saved

Hi! When I open an OnlyOffice Document in write mode, I am getting this error SCR-20240423-slzm.png This immediatly redirects the user to the download page. However, changes I make are indeed saved. I am running OnlyOffice on Ubuntu via Docker. I am getting the following error message from the docke...
by thielem
19 Mar 2024, 19:55
Forum: Bug Report version 3.5.3
Topic: Duplicates in attachment naming
Replies: 1
Views: 101

Duplicates in attachment naming

As I understand it, attachments are referenced in the database by their original name, prefixed by the unix timestamp of their creation time. SCR-20240319-ofiv.png We have a workflow where our office scans all incoming invoices. The scan is sent to an email and the email is integrated with Rukovodit...
by thielem
08 Mar 2024, 19:22
Forum: Suggestions
Topic: Choose any character as thousands separator
Replies: 0
Views: 78

Choose any character as thousands separator

In Switzerland, writing numbers like this is more common: CHF 8'000.00
Would it be possible to use the ' as thousands separator, or any character perhaps?
SCR-20240308-oizg.png
by thielem
07 Mar 2024, 19:11
Forum: Bug Report version 3.5.3
Topic: API filtering does not work
Replies: 4
Views: 88

Re: API filtering does not work

Replacing
requests.post(API_ENDPOINT, data=params, headers=cf_credentials)
with
requests.post(API_ENDPOINT, json=params, headers=cf_credentials)

fixed it. Thanks for the JSON update!