Questions tagged [moqui]

Moqui Ecosystem is a set of free and open source software projects for building enterprise automation applications such as eCommerce, ERP, CRM, SCM, MRP, EAM, POS, etc.

Moqui Ecosystem is a set of free and open source software projects for building enterprise automation applications such as eCommerce, ERP, CRM, SCM, MRP, EAM, POS, etc.

  • Moqui Framework: Synergistic tools for efficient and flexible application building
  • Mantle Business Artifacts: Universal business artifacts to make your applications easier to build and implicitly integrated with other apps built on Moqui and Mantle
  • Universal Data Model (UDM)
  • Universal Service Library (USL)
  • Universal Business Process Library (UBPL)
  • Moqui Applications: Complete applications
  • Moqui Add-ons: Add-on themes, tool integrations, applications, etc

While useful for developing a wide variety of applications the primary audiences for these projects are developers, architects, designers, and analysts in:

  • Organizations needing custom software, from existing system augmentation to complete end-to-end systems
  • Commercial software vendors looking for a reliable and flexible foundation to allow them to focus on differentiating features
  • Open source projects who need to maximize the results of development time
  • Custom software consulting and system integration who need the tools to efficiently build anything a client might want

To interact with the Moqui community use:

221 questions
0
votes
0 answers

Creating a custom date based counter (on yearly basis, on monthly basis, ...)

I need to prepare a "counter" for creating IDs based on a specific mask with automatically incremented counter (yearly based). Something like "10${myYear}/${myCounter(myYear)}-FP" where the ID for the first document in 2016 would be…
mrovnanik
  • 123
  • 9
0
votes
1 answer

PopCommerce: creating a relationship between a proforma invoice and normal invoice

My only question is, whether anyone of you has ever implemented functionality like this in PopCommerce. Scenario: imagine you receive a proforma invoice (usually shortly after you submit a purchase order to your supplier), which you record into the…
mrovnanik
  • 123
  • 9
0
votes
1 answer

Loading data in docker with tomcat and mariadb fails at first time loading

I deployed moqui and mantle to docker environment, I used docker-compose to set up two docker comainter, tomcat and mariadb, and link them together. The datasource conf is
Jimmy Shen
  • 240
  • 1
  • 12
0
votes
1 answer

Incorrect handling accented characters when using search (in Moqui's PopCommerce)

My database is running on Postgresql 9.3, the application itself is ran on Apache Tomcat 8.5.3. The application involved is PopCommerce. The database uses UTF8 encoding: Name | Owner | Encoding | Collate | Ctype | Access…
mrovnanik
  • 123
  • 9
0
votes
2 answers

how to generate id field in entity as per our sequence criteria

Bydefault moqui generates 100000 and so on as IDs for entities. i.e 100000,100001,100003... But i want AMG000100000 as start point so that it will contnue as AMG000100001,AMG000100002 and so on. I tried it various ways but nothing is working. Can…
Rolla
  • 61
  • 1
  • 7
0
votes
1 answer

Running Moqui on Tomcat over SSL (setting http-port and htts-port) - return code 302

I have a Tomcat server with SSL configured. I can access the Tomcat Web Application Manager, the connection is secured. Tomcat server is accessible on ports ports 80 and 443, and is dockerized (the container's ports are 8080 and 8443). The…
mrovnanik
  • 123
  • 9
0
votes
0 answers

moqui:getting This request requires HTTP authentication

In web browser if I give the below url it is working fine. http://localhost:8080/moqui/rest/s1/User/UserRoleMap/100301, but if the same url In the mobile app It is getting error like ionic.bundle.js:24977 GET ionic.bundle.js:24977 GET…
Rolla
  • 61
  • 1
  • 7
0
votes
2 answers

Which procedure in Moqui transforms XML Screen into script?

I would like to see what is happening behind the scenes when the engine transforms XML file with screen definition into Groovy (I suppose) script. So that I can see the definition turning into more readable script, hopefully. Where shall I place the…
mrovnanik
  • 123
  • 9
0
votes
0 answers

Patch method in mantle REST API, but not supported by Tomcat

In mantle REST API, partial updates are done with PATCH method. however tomcat does not support PATCH method yet. My question is how the PATCH method is handled in default deployment (and most of deployment is done with Tomcat)?
Jimmy Shen
  • 240
  • 1
  • 12
0
votes
1 answer

In Moqui: How insert data using rest service

I've implemented an application using Moqui Framework.I can able to get json response by the bellow url http://localhost:8080/moqui/rest/s1/moqui/users now i need to insert data into table how can i do that. In moqui.rest.xml i have resource in…
Rolla
  • 61
  • 1
  • 7
0
votes
1 answer

Customizing a dialog's field sizes in Moqui

Does anyone have a hint how to customize field length in a dialog? A dialog opened via container-dialog. The one that pops on me has items with inadequate sizes. Thanks
mrovnanik
  • 123
  • 9
0
votes
0 answers

Limiting access of users to a specific transition (in SimpleScreens's EditInvoice.xml)

I am testing PopCommerce application. I would like to use the built-in security model to limit access (of my users) to transitions - in my case I do not want all users to change a status of an invoice. On the EditInvoice.xml screen, there are…
mrovnanik
  • 123
  • 9
0
votes
1 answer

How to add a Service on moqui startup?

I want to add apache ignite into moqui framework when moqui framework startup. I tried to start ignite instance in postFacadeInit() method,and it worked. But, is there any less intrusive way to solve this? such as make a component,and when i need ,i…
poet.x
  • 3
  • 1
0
votes
1 answer

How give submit on selecting drop down in moqui Framework?

I've implemented an application using Moqui Framework.I have form-single like this
Rolla
  • 61
  • 1
  • 7
0
votes
0 answers

moqui deploy in a non-ROOT folder in tomcat

I'm trying to deploy moqui 1.6.3 and runtime in apache-tomcat-8.0.12 in a non-ROOT folder. I have done below modification in build.gradle: task deployTomcatRuntime << { delete file(tomcatHome + '/runtime'); delete file(tomcatHome +…