Search found 14 matches

by dgnet
19 Jun 2024, 21:57
Forum: Discussion
Topic: Button on record row to execute php script from a report created by report designer
Replies: 0
Views: 36

Button on record row to execute php script from a report created by report designer

I created a report using Report Designer and I need to insert a button on the record rows to perform operations in php on that record, for example by launching a php function defined in the application by passing it values. How can I do it? Or, always from report designer, it would be useful to be a...
by dgnet
28 Dec 2023, 14:08
Forum: Bug Report version 3.4.4
Topic: Dates error on filter
Replies: 0
Views: 254

Dates error on filter

Demo link: https://pdemo.rukovoditel.pro/3.4/index.php?module=items/items&path=25&gotopage[66]=1&demo_id=2805 Dear Sergey, I think there is a bug in the management of date filters in the entity list. In report management, however, the date filter works correctly. I also noticed that the ...
by dgnet
29 Sep 2023, 16:20
Forum: Discussion
Topic: Attached image within an export template
Replies: 4
Views: 738

Re: Attached image within an export template

You are right!
it was not an image field but a file field.
Thank you.
by dgnet
28 Sep 2023, 11:35
Forum: Discussion
Topic: Attached image within an export template
Replies: 4
Views: 738

Re: Attached image within an export template

I used that method but instead of the image the file name appears.
by dgnet
13 Sep 2023, 14:29
Forum: Discussion
Topic: Attached image within an export template
Replies: 4
Views: 738

Attached image within an export template

I created an entity to manage a list of companies and for each company I also inserted a file field to upload the company logo. I would like to print the data of each company with its company logo. I created an export template but I can't figure out how to insert the logo. How do you retrieve the re...
by dgnet
15 Mar 2023, 12:04
Forum: Bug Report version 3.3
Topic: Report designer - Undefined array key "id"
Replies: 4
Views: 1474

Re: Report designer - Undefined array key "id"

This file is the correct one.
Line no. 39:
$this->item['id']??0,
in the previous file it was like this:
$this->item['id'],
by dgnet
07 Mar 2023, 20:07
Forum: Bug Report version 3.3
Topic: Report designer - Undefined array key "id"
Replies: 4
Views: 1474

Re: Report designer - Undefined array key "id"

The file I downloaded and then uploaded online is identical to the one that already exists on the server. In fact the warning remains the same.
by dgnet
06 Mar 2023, 22:05
Forum: Bug Report version 3.3
Topic: Report designer - Undefined array key "id"
Replies: 4
Views: 1474

Report designer - Undefined array key "id"

On Version 3.3.1 Report designer. When I use a PHP type html block in the Report designer I always get this Warning message from Apache, whatever PHP code I insert, even a simple $output_value="hello!"; This is the Warning message: mod_fcgid: stderr: PHP Warning: Undefined array key "...
by dgnet
07 Nov 2022, 23:16
Forum: Discussion
Topic: HTML Template Export - How to allow PHP functions?
Replies: 3
Views: 266

Re: HTML Template Export - How to allow PHP functions?

I have to create an HTML export template where I have to perform simple mathematical operations on the values stored in the record. How can I do? I have seen that it is possible to use the num2str_usd () function. How can I enable other PHP math functions or custom functions? My case: in my "P...
by dgnet
07 Nov 2022, 22:31
Forum: Discussion
Topic: HTML Template Export - How to allow PHP functions?
Replies: 3
Views: 266

HTML Template Export - How to allow PHP functions?

I have to create an HTML export template where I have to perform simple mathematical operations on the values stored in the record. How can I do? I have seen that it is possible to use the num2str_usd () function. How can I enable other PHP math functions or custom functions?