Search found 174 matches

by eddydeniro
11 Jan 2024, 05:10
Forum: Discussion
Topic: How to install 2 Ruko in a single BD?
Replies: 3
Views: 237

Re: How to install 2 Ruko in a single BD?

You mean you want to make the same table set with different prefix with two Rukovoditel installations referring to each prefix? Generally, it's not possible. If you see the script, it's because table names in queries are all hardcoded. In some circumstances, if you know what you're doing, it is poss...
by eddydeniro
10 Jan 2024, 17:32
Forum: Discussion
Topic: Translations of Custom Entities
Replies: 21
Views: 5042

Re: Translations of Custom Entities

Sorry, I forgot to mention that you have to register the plugin in server.php, as mentioned in the Ruko docs for plugin installation. Hi eddydeniro, I am interested in translation of entities. So I followed instructions on github and uploaded all files from roox-core to roox folder inside plugins: r...
by eddydeniro
10 Jan 2024, 09:12
Forum: Discussion
Topic: Translations of Custom Entities
Replies: 21
Views: 5042

Re: Translations of Custom Entities

Sorry, missed your question.

No, it won't touch core files.
Schelle wrote: 08 Jan 2024, 02:53 Do the files overwrite core file? either way I am desperate for a solution :-)
by eddydeniro
10 Jan 2024, 09:05
Forum: Discussion
Topic: Translations of Custom Entities
Replies: 21
Views: 5042

Re: Translations of Custom Entities

Hi Schelle, I just finished isolating the script. I decided to publish the plugin on Github. You can get the files here . I hope it helps. Hi Eddy, I would LOVE for you to send me the file, and if there is any way I can help get it working as a plugin module with the other translations please let me...
by eddydeniro
23 Dec 2023, 09:31
Forum: Discussion
Topic: Translations of Custom Entities
Replies: 21
Views: 5042

Re: Translations of Custom Entities

Sorry for the late reply. Yes and no, currently I don't intend to sell the plugin. In fact, if you really need this feature, I can send you the files. I'll try to find some time to sort out the script as now it's mixed up with some other plugin's modules that might not be relevant to your project. P...
by eddydeniro
05 Dec 2023, 10:50
Forum: Discussion
Topic: Translations of Custom Entities
Replies: 21
Views: 5042

Re: Translations of Custom Entities

Hi Schelle, In my case, creating plugin is the best workaround for this purpose. The concept is to create partner tables for Rukovoditel parts to be translated. If you just want to translate entity name, which is saved in table app_entities, create its partner table (for example: plugin_entities) ha...
by eddydeniro
03 Dec 2023, 16:22
Forum: Discussion
Topic: Booking system
Replies: 3
Views: 3151

Re: Booking system

Hi Ed, It depends on how complex your process flow is. Let's start with simplest one. You create two entities, one for your device list (e.g. entity Devices), one for the transactions for each device (e.g. entity Transactions). Entity Devices at least contains the name and total quantity. Entity Tra...
by eddydeniro
28 May 2023, 15:49
Forum: Discussion
Topic: Display Barcode code on record page
Replies: 2
Views: 111

Re: Display Barcode code on record page

You will not find the switch. Actual image of barcode is only supported in printing, including export template.
You can modify or extend its class if you want to display it in record page or even in listing.
by eddydeniro
28 May 2023, 00:27
Forum: Discussion
Topic: Hide or block the option to change skin to users
Replies: 5
Views: 141

Re: Hide or block the option to change skin to users

Try this in your Custom HTML page

Code: Select all

<script>
$('.fa-picture-o').parentsUntil('li').remove();
</script>
by eddydeniro
27 May 2023, 22:01
Forum: Discussion
Topic: Hide or block the option to change skin to users
Replies: 5
Views: 141

Re: Hide or block the option to change skin to users

Screenshot 2023-05-28 003915.png
Screenshot 2023-05-28 003915.png (6.6 KiB) Viewed 133 times
I think the note in app config page is very clear.
For your purpose, then leave it blank. Hide/remove the button "Change Skin" with JS (in custom HTML).
Now you can set a specific skin for a particular user in Users page.