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
2
votes
1 answer

Running a service and calculating modal dialog content at once

There is a modal dialog displaying mantle.ledger.transaction.AcctgTransEntry of the selected invoice. A button in the dialog calls a service which posts a GL transaction: function postTransactionToGl() { var invoiceId =…
mrovnanik
  • 123
  • 9
2
votes
1 answer

How to deal with urls having multiple @PathParam for RESTful calls in Moqui

While writing RESTful API calls, I got some urls which takes multiple path parameters. e.g. www.mydomain.com/exam/{examId}/subject/{subjectId}/section/{sectionId}/questions Now, If I use any JAX-RS implementation (like Apache Wink) It is quite…
2
votes
1 answer

Rest API call with api_key in header fails if nginx is proxying moqui application

When run moqui on 8080 port, and access it directly by api curl -X GET -H "api_key: {apiKey}" http://localhost:8080/rest/s1/example/examples/TEST2 it returns json result of example TEST2. But when nginx is put in front of mqoui application. proxy…
Jimmy Shen
  • 240
  • 1
  • 12
2
votes
1 answer

Return only some fields of an entity from restServices in MOQUI FrameWork?

I've implemented an application using Moqui Framework. I have entities with 10 parameters. Via RestService, using the short-alias of an entity I can get its 10 parameters on JSON format. However I only need 4 parameters to be displayed. This is my…
Rolla
  • 61
  • 1
  • 7
2
votes
1 answer

Moqui: How to add an extra Header in JSON Request?

I am trying to build a Moqui service to pull and push data from a remote REST JSON api but they require that I authenticate using a custom header e.g. X-App-Access-Token: {access_token} and I can't seem to find a way to add this header when calling…
Sam Hamilton
  • 131
  • 2
  • 3
  • 10
2
votes
1 answer

Is there an entity in Moqui that is similar to that of System Properties in OFBiz?

I am not able to figure out that how should I store system related information in Moqui. For example, if I am using the HiveMind application for a particular organization (ABC Corp), I have to hard code the value while making records for the…
adityazoso
  • 514
  • 5
  • 15
2
votes
0 answers

Issue regarding the content type in Moqui while using AngularJS

There seems to be an issue regarding the addition of parameters in the Execution context when I am interacting with Moqui using AngularJS. The content-type of the request header is automatically set to application/json; charset=UTF-8. But the code…
adityazoso
  • 514
  • 5
  • 15
2
votes
1 answer

Restrict access to screen transitions for unauthorized user

I want to restrict access to screen transitions for unauthorized user. This is what I did: 1) I created UserGroups and added certain users to those user groups. 2) I also created certain ArtifactGroups. 3) Associated UserGroups with ArtifactGroups…
2
votes
0 answers

What is the right way to handle error pages in moqui

To redirect user to an error page I am adding entry in web.xml for 401 (Unauthorized) error code. But I don't find it correct. As, I am adding following code in web.xml which is in framework. 401
2
votes
1 answer

How can I handle JSON response in Moqui inside a transition?

I am actually making a JSON-RPC call to a transition from AngularJS. As the content type of the request is application/json, the input parameters are automatically made available in the context so I don't need to handle it explicitly. Here is my…
adityazoso
  • 514
  • 5
  • 15
2
votes
1 answer

Redirect emails to default email address for testing purpose

I am working on email feature in moqui. I am able to configure the EmailServer data and email feature working fine. I would like to know that do we have any way in moqui to redirect all email to an specific address for testing purpose. Like we have…
Shubham kh
  • 165
  • 6
2
votes
1 answer

Issue faced in rendering FTL code in after updating moqui

After the recent updates in Moqui I am facing a problem in rendering the FTL code using tag. Let me try to explain the problem, Earlier I have rendered the FTL code using in tag it was working properly but…
2
votes
1 answer

How to show customized error message in moqui?

When I create a new record in WorkEffort and when I provide the workEffortId that already exists, then an error message displayed is: (Error in update for:INSERT INTO WORK_EFFORT (WORK_EFFORT_ID, WORK_EFFORT_TYPE_ENUM_ID, STATUS_ID,…
Shubham kh
  • 165
  • 6
2
votes
2 answers

In moqui, configuration to use mysql and loading with seed data

In moqui, I am trying to configure to use mysql, commented out derby and uncommented mysql in defaultconf, I copied the connector to framework lib, included the dependency in framework build.gradle, on running load, I get this error -…
2
votes
1 answer

Unable to include macro file in FTL

I am trying to include a macro file in the FTL. As per my understanding with the framework, if we include the macro file using tag in the xml and render a FTL in this xml, the defined macros should be automatically available in Freemarker template.…
1
2
3
14 15