Search found 166 matches

by p.dimitrov
10 May 2019, 09:00
Forum: Suggestions
Topic: DB Backup
Replies: 2
Views: 1234

Re: DB Backup

You can try to run this cron job daily:

Code: Select all

find '/path to rukovoditel/backups/' -mtime +30 -type f -iname '*.sql.zip' -delete
It will delete backups older than 30 days. You can change the number according to your needs.
by p.dimitrov
10 Apr 2019, 09:45
Forum: Discussion
Topic: MySQL Formula Value in Entity
Replies: 13
Views: 1818

Re: MySQL Formula Value in Entity

In most cases you can pass the result to "static text by pattern" field and it'll be stored.
by p.dimitrov
04 Feb 2019, 10:46
Forum: Suggestions
Topic: Using entities templates to trigger display rules
Replies: 8
Views: 1168

Re: Using entities templates to trigger display rules

What do you think about this suggestion? Right now if you have a field with 2 options that show or hide other fields, if you fill it by entity template, it just changes the value, but doesn't show or hide the fields. So you need to first manually choose the option, which shows other fields, then sel...
by p.dimitrov
28 Jan 2019, 12:04
Forum: Bug Report version 2.4
Topic: Search in related items dialogue gives error
Replies: 3
Views: 797

Re: Search in related items dialogue gives error

Hi, I tried 2.4.1 and this is still happening. I moved one of the related entities with the new "change structure" tool. Maybe it's somehow related to this?
by p.dimitrov
17 Jan 2019, 20:48
Forum: Suggestions
Topic: Form Configuration - fields side by side
Replies: 18
Views: 2814

Re: Form Configuration - fields side by side

It would be great space saver, also suitable for things like dimensions, that are usually displayed in a row.
by p.dimitrov
17 Jan 2019, 15:32
Forum: Bug Report version 2.4
Topic: Search in related items dialogue gives error
Replies: 3
Views: 797

Search in related items dialogue gives error

Hi, when I try to search in related items dialogue I get this dialogue:
error.jpg
I search by ID which is heading and enabled to be used for search.
When I set another field to be heading the search works.
by p.dimitrov
15 Jan 2019, 10:48
Forum: Bug Report version 2.4
Topic: MySQL query problem
Replies: 1
Views: 738

MySQL query problem

Hi, I use MySQL query to take value from price list depending on client and service:
price list.jpg
This query was working perfectly in 2.3:
query.jpg
Now it looks like it ignores the client check for some reason and just finds the first matching service type in the list.
by p.dimitrov
10 Jan 2019, 09:59
Forum: Discussion
Topic: Same auto-increment number for multiple entries
Replies: 3
Views: 579

Re: Same auto-increment number for multiple entries

Alternatively my previous implementation was to use automate actions to link order entities to invoice entity with its own ID numbers. That works really well for single invoices, invoice is automatically created and linked to every selected order, but again can't link several orders at once with one...
by p.dimitrov
10 Jan 2019, 09:55
Forum: Discussion
Topic: Same auto-increment number for multiple entries
Replies: 3
Views: 579

Re: Same auto-increment number for multiple entries

We have this this called "collective invoice" where we need to merge several orders and make a single invoice - so the auto increment field would come very handy, but there has to be several entries with the same number, then for example several single entries with their own numbers, then ...