Search found 8817 matches

 Return to the advanced search

Re: Getting this error

 by amosbatto ¦  Wed Sep 11, 2019 6:26 pm ¦  Forum: Using ProcessMaker 3 ¦  Topic: Getting this error ¦  Replies: 3 ¦  Views: 5139

markcowell23,
Can you post the .json file for the Dynaform?

Re: Problems in importing plugins

 by amosbatto ¦  Wed Sep 11, 2019 6:24 pm ¦  Forum: Developing processes & programming ¦  Topic: Problems in importing plugins ¦  Replies: 5 ¦  Views: 4712

Post your plugin files if you want me to look at the code.

Re: Updating grid rows

 by amosbatto ¦  Tue Sep 10, 2019 6:26 pm ¦  Forum: Developing processes & programming ¦  Topic: Updating grid rows ¦  Replies: 5 ¦  Views: 6417

fiqihpunya wrote: Tue Sep 10, 2019 12:27 am hallo amosbatto, how i can update database with grid data's?
See this example:
https://www.pmusers.com/index.php/Write ... base_table

If you have an external database, you need to set the second parameter of executeQuery() to the ID of your database connection.

Re: Save Grid Dropdown value as variable

 by amosbatto ¦  Tue Sep 10, 2019 6:20 pm ¦  Forum: Using ProcessMaker 3 ¦  Topic: Save Grid Dropdown value as variable ¦  Replies: 2 ¦  Views: 4281

Doing it with JavaScript is complicated. It is is much easier to use a trigger like this: @@selectedOption = ''; if (!empty(@=myGrid)) { //get selected value in dropdown in first row of grid: @@selectedOption = @=myGrid[1]['myDropdown_label']; } Where "myGrid" is the variable associated with the gri...

Re: New case created from REST call

 by amosbatto ¦  Tue Sep 10, 2019 6:11 pm ¦  Forum: Development of the ProcessMaker application ¦  Topic: New case created from REST call ¦  Replies: 10 ¦  Views: 15326

(we couldn't import the extraREST) Was there an error when you tried to import it? If so, what what was the error and what is your environment? I have mostly tested extraRest in PM 3.3.X (manual install) with Debian 9.5 and PHP 5.6.38, so I'm curious if there are environments where it fails I guess...

Re: Process map

 by amosbatto ¦  Tue Sep 10, 2019 5:19 pm ¦  Forum: Using ProcessMaker 3 ¦  Topic: Process map ¦  Replies: 4 ¦  Views: 5345

Have you applied these code changes in your installation of ProcessMaker?

If not, does that code change solve it?

Re: SECURE DEV ENVIRONMENT WITH HTACCSS / HTPASSWD

 by amosbatto ¦  Tue Sep 10, 2019 5:13 pm ¦  Forum: Developing processes & programming ¦  Topic: SECURE DEV ENVIRONMENT WITH HTACCSS / HTPASSWD ¦  Replies: 1 ¦  Views: 2013

I've never tried it, but I imagine that you can edit your pmos.conf file and add the directives there. Something like: <VirtualHost localhost:30172> ServerName "localhost" DocumentRoot /opt/pm3.0.1.7-2/workflow/public_html DirectoryIndex index.html index.php <Directory /opt/pm3.0.1.7-2/workflow/publ...

Re: Administrator of PM cannot see User Name in Reassign box.

 by amosbatto ¦  Tue Sep 10, 2019 4:57 pm ¦  Forum: Using ProcessMaker 3 ¦  Topic: Administrator of PM cannot see User Name in Reassign box. ¦  Replies: 5 ¦  Views: 5283

Press F12 to open the web browser's debugger. Then, go to the "Network" in the debugger, so you can see the network traffic. Then to to Actions > Reassign in the menu and watch what is returned by the endpoint POST http://{ip-or-domain}/sys{workspace}/{lang}/{skin}/cases/ajaxListener Under the "Resp...

Re: Report tables not stroring the paused status

 by amosbatto ¦  Tue Sep 10, 2019 4:15 pm ¦  Forum: Developing processes & programming ¦  Topic: Report tables not stroring the paused status ¦  Replies: 5 ¦  Views: 4874

How did you change the case's status to paused?
Which version of PM? Are you using the Enterprise Edition?

Re: Getting User Data via REST API from LDAP

 by amosbatto ¦  Tue Sep 10, 2019 4:12 pm ¦  Forum: Using ProcessMaker 3 ¦  Topic: Getting User Data via REST API from LDAP ¦  Replies: 44 ¦  Views: 24495

Can you post the content of your "selectDpt" variable that you see in the debugger?

I'm not seeing the problem in PM 3.2.0 Community (manual install in Debian 9.5).

Have you tried "read-only" mode?
Is your list of options in the checkgroup populated with an SQL query?

I want to calculate the differences between to dates. (for example DEL_INIT_DATE and DEL_FINISH_DATE) The problem is that it does not consider the off time, off days and vacations. So, I can not have the real time. If you import my extraFunctions plugin, then you can use the PMFTaskDuration() funct...

Amy, Did you directly import my example? If you are trying to use this code in an existing Dynaform, then you will have to change the variables at the top of the code to match your Dynaform. This works in my installation: PM 3.3.10 Community (manual install) in Debian 9.5 with Firefox 60.5 What is y...

AmyBaski wrote: Tue Sep 10, 2019 1:21 am It is not working to me.
What part isn't working? You should post your form or screen shots or your code.

Re: get backbone object

 by amosbatto ¦  Tue Sep 10, 2019 1:41 am ¦  Forum: Developing processes & programming ¦  Topic: get backbone object ¦  Replies: 1 ¦  Views: 3164

getFieldById("grid-id").gridtable[row][column]
where the row and column numbers start counting from 0.

For example:
getFieldById("productsGrid").gridtable[2][3].setValue("hot lunch");

Re: ProcessMaker force HTTPS

 by amosbatto ¦  Tue Sep 10, 2019 1:36 am ¦  Forum: Installation & Configuration ¦  Topic: ProcessMaker force HTTPS ¦  Replies: 3 ¦  Views: 10657

Try this: NameVirtualHost your_ip:80 <VirtualHost your_ip:80> ServerName xxx.com Redirect / https://xxx.com </VirtualHost> <VirtualHost your_ip:443> ServerName xxx.com DocumentRoot /opt/processmaker/workflow/public_html DirectoryIndex index.html index.php SSLEngine on SSLOptions +FakeBasicAuth +Expo...

Re: System variables are not changed

 by amosbatto ¦  Tue Sep 10, 2019 1:28 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: System variables are not changed ¦  Replies: 2 ¦  Views: 4281

If you read the source code for the setCaseVariables() function in workflow/engine/src/ProcessMaker/BusinessModel/Cases.php, you will see that it prevents you from changing the system variables.

You can change the source code if you want to allow it.

Re: Timer event

 by amosbatto ¦  Tue Sep 10, 2019 1:20 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Timer event ¦  Replies: 7 ¦  Views: 6304

You need to call iTop's REST services: https://www.itophub.io/wiki/page?id=2_2_0%3Aadvancedtopics%3Arest_json To call a REST endpoint, see this documentation: https://wiki.processmaker.com/3.0/Calling_REST_Endpoints (this documentation is for PRocessMaker's REST endpoints, but it should also work fo...

Re: Administrator of PM cannot see User Name in Reassign box.

 by amosbatto ¦  Tue Sep 10, 2019 1:14 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Administrator of PM cannot see User Name in Reassign box. ¦  Replies: 5 ¦  Views: 5283

Can the administrator open the case?

What version of PM?

Re: View Dynaform in HTML Page

 by amosbatto ¦  Tue Sep 10, 2019 1:11 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: View Dynaform in HTML Page ¦  Replies: 3 ¦  Views: 4940

The iframe which holds the preview page for a Dynaform uses a URL like: http://{ip-or-domain}/sysworkflow/en/neoclassic/cases/pmDynaform?dyn_uid=2105752785d770b9cc7bf46080520462&prj_uid=4556903155d770b617ffa22053528035 But I can't get it to execute outside the Dynaform Designer. If you check the cod...

What version of PM? manual or Bitnami installation? What OS? What version of PHP?
I want to check it.

Re: Need a help

 by amosbatto ¦  Tue Sep 10, 2019 12:58 am ¦  Forum: Development of the ProcessMaker application ¦  Topic: Need a help ¦  Replies: 1 ¦  Views: 8275

Prove to me that you are real person and maybe I'll answer your question.

Re: Need a help

 by amosbatto ¦  Tue Sep 10, 2019 12:56 am ¦  Forum: Using ProcessMaker 2 ¦  Topic: Need a help ¦  Replies: 2 ¦  Views: 13083

Oh wait! Are you asking for version 2 or version 3 of ProcessMaker? My previous post is for version 3.

Re: Need a help

 by amosbatto ¦  Tue Sep 10, 2019 12:55 am ¦  Forum: Using ProcessMaker 2 ¦  Topic: Need a help ¦  Replies: 2 ¦  Views: 13083

There is a property in grids to remove the "New" and "Delete" buttons.

If you want to hide or show the buttons with JavaScript, see:
https://www.pmusers.com/index.php/Hide_ ... ns_in_grid

Re: Client in which a dropdown list

 by amosbatto ¦  Tue Sep 10, 2019 12:50 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Client in which a dropdown list ¦  Replies: 1 ¦  Views: 3980

You can use conditions when you add a Dynaform as a step in a task to control whether the Dynaform is executed or not. setConditionForDynaform.png For example, if the variable for your dropdown box is "selectAction" in the first form, then you can use the following condition for the "add client" Dyn...

Re: hold cases at backend

 by amosbatto ¦  Tue Sep 10, 2019 12:40 am ¦  Forum: Developing processes & programming ¦  Topic: hold cases at backend ¦  Replies: 1 ¦  Views: 3028

You can pause the case. A Process Supervisor can do this in the ProcessMaker interface.
If you want to program this, you can use the PMFPauseCase() function in a trigger or the REST endpoint PUT /cases/{app_uid}/pause in an external script

Re: Error in saving process description

 by amosbatto ¦  Tue Sep 10, 2019 12:35 am ¦  Forum: Using ProcessMaker 3 ¦  Topic: Error in saving process description ¦  Replies: 2 ¦  Views: 4350

I just tried it in PM 3.3.10 Community (in Debian 9.5 with PHP 5.6.37 and Firefox 60.5) and the Process Description saves normally.

What is your environment?

Re: access php file through mysql trigger

 by amosbatto ¦  Tue Sep 10, 2019 12:27 am ¦  Forum: Developing processes & programming ¦  Topic: access php file through mysql trigger ¦  Replies: 1 ¦  Views: 3370

I want to access external php file through mysql trigger,how can i call php file using trigger. Please help! Thanks If you are talking about MySQL triggers, you can't use them to access an external PHP file, because they don't understand PHP. If you are talking about a trigger in ProcesssMaker, you...

Re: Agregar mas campos a la grilla

 by amosbatto ¦  Tue Sep 10, 2019 12:22 am ¦  Forum: Español ¦  Topic: Agregar mas campos a la grilla ¦  Replies: 2 ¦  Views: 8387

En las propiedades de la grilla, tienes que cambiar la propiedad "layout" a "static" y tienes que aumentar el "width" de cada campo en la grilla para ser el numero de pixeles. Asi tendras una barra horizontal de scroll en la fila.

LayoutStaticInGrid.png
LayoutStaticInGrid.png (33.74 KiB) Viewed 8370 times

Re: independent pages

 by amosbatto ¦  Tue Sep 10, 2019 12:14 am ¦  Forum: Developing processes & programming ¦  Topic: independent pages ¦  Replies: 1 ¦  Views: 3150

This one took me a while to figure out:

(3.84 KiB) Downloaded 239 times

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 294

A 1xbet clone script is a pre-designed software so[…]

4rabet clone script is enabling entrepreneurs to e[…]

Parimatch clone script is enabling entrepreneurs t[…]

In the world of cryptocurrency, a wallet is an app[…]