Code Monkey home page Code Monkey logo

moqui / popcommerce Goto Github PK

View Code? Open in Web Editor NEW
75.0 33.0 71.0 1 MB

POP Commerce is an eCommerce and ERP application suite for retail and wholesale organizations. POP Commerce is based on Moqui Framework, Mantle Business Artifacts, and Simple Screens.

Home Page: http://github.com/moqui/PopCommerce

License: Other

CSS 9.05% FreeMarker 18.73% Groovy 72.23%
moqui moqui-framework mantle mantle-business ecommerce-application pop-commerce java erp crm retail

popcommerce's Issues

moqui without demo data gives error

When i install moqui with the following commands to NOT load the demo data:

  1. git clone https://github.com/moqui/moqui-framework.git moqui
  2. cd moqui
  3. ./gradlew getComponent -Pcomponent=PopCommerce
  4. java -jar moqui.war load types=seed,seed-initial,install
    5 java -jar moqui.war

browser: localhost:8080
create new user admin
login with user admin i get the error:

Error updating Visit {visitId=100000}
×Close
Tried to update a value that does not exist [[moqui.server.Visit: {lastUpdatedStamp=2020-03-08 20:46:40.623, visitId=100000, thruDate=2020-03-08 20:46:40.654}]]. SQL used was UPDATE VISIT SET THRU_DATE=?, LAST_UPDATED_STAMP=? WHERE VISIT_ID=?, parameters were [thruDate:2020-03-08 20:46:40.654, lastUpdatedStamp:2020-03-08 20:46:40.623, visitId:100000]
×Close
Authentication failed for token submission [org.apache.shiro.authc.UsernamePasswordToken - admin, rememberMe=true]. Possible unexpected error? (Typical or expected login exceptions should extend from AuthenticationException).

Regards,
Hans

single warehouse operation.

If a company have a single warehouse, it is still required to specify the warehouse in asset summary and other places.

what is the best way to automatically specify a single warehouse?

Regards,
Hans

Trying to get in touch regarding a security issue

Hi there,

I couldn't find a SECURITY.md in your repository and am not sure how to best contact you privately to disclose a security issue.

Can you add a SECURITY.md file with an e-mail to your repository, so that our system can send you the vulnerability details? GitHub suggests that a security policy is the best way to make sure security issues are responsibly disclosed.

Once you've done that, you should receive an e-mail within the next hour with more info.

Thanks! (cc @huntr-helper)

Park shipment not check the qoh of Assert

I can park a shipment with quantity greater than qoh of assert. The following steps.

  1. Reload db
  2. Create a sales order from FindOrder screen.
  3. Add a item of DEMO_1_1 with quantity=500 and PlaceOrder, Approve Order
  4. Click Create Shipment.
  5. At ShipmentDetail screen, Set Scheduled -> Set Picket -> Pack
  6. The Pack succeeded. Goto the asset detail screen, The qoh of DEMO_1_1A will be -400

It seems line 1013~1035 of ShipmentServices.xml forget checking qoh.

Tree mapping in Moqui

Hi,

some algorithm need to fetch the whole tree structure e.g. the BOM(Bill of Materials) to analyse some sort of KPIs in planing, forcasting in production. The BOM in real life sometimes can be big. My question is that, whether moqui can connect to a graph database to map the whole BOM or a really good mapping algorithm to persist the whole BOM for easily fetching?

My first thought is about running mysql and orientdb(neo4j ...etc.) in parallel?!?!
Second thought is adaopting technique like that https://typeorm.io/#/tree-entities also in moqui framework?
1. Adjacency Lists - https://schinckel.net/2014/09/13/long-live-adjacency-lists/
2. Many many other idees?

Thanks
Best regards,
Khoi Tran

Customers and Suppliers are not visible

Currently, customers and suppliers are filtered according to the organization for which they are considered customers or suppliers (through PartyRelationship records). This works fine if there effectively are PartyRelationship records present.
However, both for the Demo data as for newly created customers and suppliers, no such records are created, so these customers and suppliers are not shown (in the respective PopcAdmin/Customer/FindCustomer and PopcAdmin/Supplier/FindSupplier screens).
Vendors are not yet filtered this way but I suppose all 3 groups would receive consistent treatment in the future.
Note: this problem is not visible when logging in with the john.doe username, unless you specifically select an active organization.

Possible solutions are either to add the respective PartyRelationship records on creation (would require to have an active organization upon creation or to select one explicitly), or to show customers/suppliers when they have no PartyRelationship records with any internal organization.

Can't create Shipment after Order is completed

Currently, in OrderDetail screen, if Order is completed, we can't create Shipment if hasn't created it before.

I find that in mantle-udm, there's a StatusTransitionFlow that allows Order to change status from Completed to Approved. Applying this flow, we will have a chance to create Shipment.

Invoice PDF depends on HiveMind

When attempting to generate the PDF for an invoice in PopcAdmin/Accounting/Invoice/EditInvoice.xml secreen and HiveMind is not installed, I get following error:
Problem accessing /fop/apps/hmadmin/Accounting/Invoice/PrintInvoice. Reason:

Could not find subscreen or transition or file/content [PrintInvoice] under screen [component://webroot/screen/webroot/apps.xml] while finding url for path [apps, hmadmin, Accounting, Invoice, PrintInvoice] under from screen [component://webroot/screen/webroot.xml]

New Shipment without Order

I want to try create a new outgoing Shipment without Order, using following steps:

  1. Create new Outgoing Shipment in screen PopcAdmin/Shipment/FindShipment
  2. In ShipmentDetail screen, add new Item, i.e DEMO_1_1 with quantity = 1
  3. Set Scheduled
  4. Pack Item: add new package, select asset id DEMO_1_1A and submit. Error occurs: Field cannot be empty (for field orderId of service mantle.product.AssetServices.displace#AssetReservations)

I've checked and found that in service ShipmentServices.pack#ShipmentItemSource, because no asset reservation then service mantle.product.AssetServices.displace#AssetReservations will be called to force clearing other reservation. However, orderId param is required in displace#AssetReservations service.

So, I wonder if this is a bug of ShipmentServices or this ShipmentDetail screen in POPC is not designed to work with an adhoc Shipment.

java.lang.IllegalArgumentException: Session token required (in moquiSessionToken)

I am working with 1.6.1 all components, gradle 2.9, java 1.8, windows 10.
Directly from the popc menu, if I add to cart one of the demo products go to check out and then log in as john.doe, I get this error -
"
java.lang.IllegalArgumentException: Session token required (in moquiSessionToken) for URL http://localhost:8080/popc/Login/login
at org.moqui.impl.screen.ScreenRenderImpl.internalRender(ScreenRenderImpl.groovy:297)
at org.moqui.impl.screen.ScreenRenderImpl.render(ScreenRenderImpl.groovy:158)
at org.moqui.impl.webapp.MoquiServlet.doScreenRequest(MoquiServlet.groovy:73)
at org.moqui.impl.webapp.MoquiServlet.doPost(MoquiServlet.groovy:39)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at net.winstone.core.ServletConfiguration.execute(ServletConfiguration.java:270)
at net.winstone.core.SimpleRequestDispatcher.forward(SimpleRequestDispatcher.java:290)
at net.winstone.core.listener.RequestHandlerThread.processRequest(RequestHandlerThread.java:212)
at net.winstone.core.listener.RequestHandlerThread.run(RequestHandlerThread.java:143)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at net.winstone.util.BoundedExecutorService$1.run(BoundedExecutorService.java:81)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:745)
"
I kind of guessed it could be vestiges of the previous release, cleaned up my Local\Temp etc.
I also replaced framework with the latest from github for a quick check.

Thanks,
Ashok

Unable to resolve class org.joda.time.MutableDateTime while creating Invoice

After upgrading runtime and framework to the newest version, the create#Invoice service (in InvoiceServices.xml) started to return this error. It is the script provided below the error.

mantle_account_InvoiceServices_create_Invoice: 51: unable to resolve class org.joda.time.MutableDateTime
@ line 51, column 21.
def dueDateDt = new org.joda.time.MutableDateTime(invoiceDate.time...

image

TelecomNumber invalid field for entity [mantle.order.OrderPart]

Trying to explore Popcommerce. I ran the below command.

java -jar moqui-1.5.2.war

Went to http://localhost:8080/popc. Tried to add a product to cart. Got below error in moqui.log.

Relevant part of the log.

683043 [ndlerThread[16]] INFO i.impl.screen.ScreenRenderImpl - Finished transition [[popc, Home, addToCart]], redirecting to [http://localhost:8080/popc/Order/Cart]
684218 [ndlerThread[16]] ERROR g.moqui.impl.actions.XmlAction - Error running groovy script (org.moqui.entity.EntityException: The name [TelecomNumber] is not a valid field name or relationship name for entity [mantle.order.OrderPart])

Full stacktrace:

0 [main] INFO xt.ExecutionContextFactoryImpl - Initializing Moqui ExecutionContextFactoryImpl

  • runtime directory [C:\projects\moqui_ws\moqui\runtime]
  • config file [C:\projects\moqui_ws\moqui\runtime/conf/MoquiProductionConf.xml]
  • moqui.runtime property [C:\projects\moqui_ws\moqui\runtime]
    265 [main] INFO xt.ExecutionContextFactoryImpl - Added component [example] at [file:C:/projects/moqui_ws/moqui/runtime/base-component/example]
    266 [main] INFO xt.ExecutionContextFactoryImpl - Added component [tools] at [file:C:/projects/moqui_ws/moqui/runtime/base-component/tools]
    266 [main] INFO xt.ExecutionContextFactoryImpl - Added component [webroot] at [file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot]
    274 [main] INFO xt.ExecutionContextFactoryImpl - Added component [mantle-ubpl] at [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-ubpl]
    274 [main] INFO xt.ExecutionContextFactoryImpl - Added component [mantle-udm] at [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm]
    274 [main] INFO xt.ExecutionContextFactoryImpl - Added component [mantle-usl] at [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl]
    282 [main] INFO xt.ExecutionContextFactoryImpl - Added component [PopCommerce] at [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce]
    310 [main] INFO xt.ExecutionContextFactoryImpl - Added JAR from runtime/lib: mysql-connector-java-5.1.34-bin.jar
    744 [main] INFO xt.ExecutionContextFactoryImpl - Moqui CacheFacadeImpl Initialized
    750 [main] INFO xt.ExecutionContextFactoryImpl - Moqui LoggerFacadeImpl Initialized
    1202 [main] INFO xt.ExecutionContextFactoryImpl - Added JAR from [example] component: file:C:/projects/moqui_ws/moqui/runtime/base-component/example/lib/example-1.5.2.jar
    1391 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ResourceFacadeImpl Initialized
    1466 [main] WARN bitronix.tm.Configuration - Cannot get the unique server ID for this JVM ('bitronix.tm.serverId'). Make sure it is configured and you use only US-ASCII characters. Will use IP address instead (unsafe for production usage!).
    2169 [main] INFO xt.ExecutionContextFactoryImpl - Moqui TransactionFacadeImpl Initialized
    2256 [main] INFO ty.EntityDatasourceFactoryImpl - Set property derby.system.home to [C:\projects\moqui_ws\moqui\runtime/db/derby]
    10828 [main] INFO ty.EntityDatasourceFactoryImpl - Set property derby.system.home to [C:\projects\moqui_ws\moqui\runtime/db/derby]
    11489 [main] INFO i.impl.entity.EntityFacadeImpl - Loaded [1] Entity ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/Order.eecas.xml]
    11509 [main] INFO i.impl.entity.EntityFacadeImpl - Loaded [1] Entity ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductAsset.eecas.xml]
    11580 [main] INFO i.impl.entity.EntityFacadeImpl - Loaded [3] Entity ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/Work.eecas.xml]
    11612 [main] INFO xt.ExecutionContextFactoryImpl - Moqui EntityFacadeImpl for DEFAULT Tenant Initialized
    11699 [main] INFO uartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
    11704 [main] INFO .quartz.simpl.SimpleThreadPool - Job execution threads will use class loader of thread: main
    11724 [main] INFO LSchedulingDataProcessorPlugin - Registering Quartz Job Initialization Plug-in.
    11727 [main] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
    11728 [main] INFO uartz.impl.StdSchedulerFactory - Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
    11729 [main] INFO uartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.2.1
    11745 [main] INFO impl.service.ServiceFacadeImpl - Loaded [0] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/service/Example.secas.xml]
    11812 [main] INFO impl.service.ServiceFacadeImpl - Loaded [4] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingFinancial.secas.xml]
    11865 [main] INFO impl.service.ServiceFacadeImpl - Loaded [2] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingInvoice.secas.xml]
    11954 [main] INFO impl.service.ServiceFacadeImpl - Loaded [5] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingLedger.secas.xml]
    12007 [main] INFO impl.service.ServiceFacadeImpl - Loaded [2] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingPayment.secas.xml]
    12063 [main] INFO impl.service.ServiceFacadeImpl - Loaded [3] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/ProductAsset.secas.xml]
    12099 [main] INFO impl.service.ServiceFacadeImpl - Loaded [1] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/ProductSubscription.secas.xml]
    12128 [main] INFO impl.service.ServiceFacadeImpl - Loaded [1] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/WorkEffort.secas.xml]
    12255 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ServiceFacadeImpl Initialized
    12371 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ScreenFacadeImpl Initialized
    12390 [main] INFO xt.ExecutionContextFactoryImpl - Moqui L10nFacadeImpl Initialized
    12405 [main] INFO xt.ExecutionContextFactoryImpl - Starting ElasticSearch
    18941 [main] INFO xt.ExecutionContextFactoryImpl - Starting Camel
    19031 [main] TRACE et.winstone.jndi.NamingContext - lookup java:/comp/env
    19150 [main] TRACE et.winstone.jndi.NamingContext - lookup properties
    19151 [main] DEBUG et.winstone.jndi.NamingContext - properties not found
    21437 [main] WARN builder.impl.AbstractKieModule - No files found for KieBase TaxCalcKB
    21443 [main] INFO builder.impl.KieRepositoryImpl - KieModule was added:MemoryKieModule[ ReleaseId=org.moqui.mantle:mantle-usl:1.1.0]
    21865 [main] INFO i.impl.entity.EntityFacadeImpl - Found entities in 40 files in 271ms
    22533 [main] INFO i.impl.entity.EntityFacadeImpl - Found [0] view-entity definitions in database (moqui.entity.view.DbViewEntity)
    23596 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ARTIFACT_HIT] for entity [moqui.server.ArtifactHit]
    23730 [main] INFO i.impl.entity.EntityFacadeImpl - Created 1191 automatic reverse-many relationships
    24029 [main] INFO i.impl.entity.EntityFacadeImpl - Warming cache for all entities
    24038 [main] INFO impl.service.ServiceFacadeImpl - Warming cache for all services
    24582 [main] INFO impl.service.ServiceFacadeImpl - While finding service ignoring XML file [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/oagis/order/ProcessPurchaseOrderTest1.xml] in a services directory because the root element is [{http://www.openapplications.org/oagis/10}ProcessPurchaseOrder] and not [services]
    33476 [main] INFO i.impl.screen.ScreenFacadeImpl - Warming cache for all screens under component://webroot/screen/webroot.xml
    37393 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ExecutionContextFactory Initialization Complete
    37506 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from the following locations:
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/BasicEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/EntityEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/OlapEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ResourceEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ScreenEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/SecurityEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ServerEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ServiceEntities.xml
  • jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/TenantEntities.xml
  • classpath://data/CommonL10nData.xml
  • classpath://data/CurrencyData.xml
  • classpath://data/EntityTypeData.xml
  • classpath://data/GeoCountryData.xml
  • classpath://data/SecurityTypeData.xml
  • classpath://data/ServiceTypeData.xml
  • classpath://data/TenantDefaultData.xml
  • classpath://data/UnitData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/entity/ExampleEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/entity/ExampleViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/tools/entity/ToolTestEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingAccountEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingLedgerEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingOtherEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/FacilityEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/HumanResourcesEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/MarketingEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/OrderEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/PartyEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductAssetEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductDefinitionEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductStoreEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/RequestEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/SalesEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ShipmentEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/WorkEffortEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/AccountingAccountViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/AccountingLedgerViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/FacilityViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/OrderViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/PartyViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductAssetViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductDefinitionViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/RequestViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ShipmentViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/WorkEffortViewEntities.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleL10nData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleSecurityData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleTypeData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleZzyDemoData.json
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleZzzDemoData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzaExampleRecords.csv
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzbExampleService.csv
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzcExampleItemRecords.csv
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/tools/data/ToolsSecurityData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot/data/WebrootSecurityData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot/data/WebrootThemeData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-ubpl/data/UbplSetupData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/AccountConfigData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoCanData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoJpnData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoUsaData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ItemTypeData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentInventoryData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentWorkData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/SalesData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzaGlAccountsDemoData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzbOrganizationDemoData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzcProductDemoData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/data/MantleSetupData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceAaaSetupData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceAabDocumentData.xml
  • file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceDemoData.xml
    37506 [main] INFO pl.entity.EntityDataLoaderImpl - Loading data types: ALL
    37543 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/BasicEntities.xml]
    37863 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ENUMERATION_TYPE] for entity [moqui.basic.EnumerationType]
    38207 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ENUMERATION] for entity [moqui.basic.Enumeration]
    38819 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [GEO] for entity [moqui.basic.Geo]
    39561 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [STATUS_TYPE] for entity [moqui.basic.StatusType]
    40108 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [STATUS_ITEM] for entity [moqui.basic.StatusItem]
    40745 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [STATUS_FLOW] for entity [moqui.basic.StatusFlow]
    41152 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [STATUS_FLOW_TRANSITION] for entity [moqui.basic.StatusFlowTransition]
    42086 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [EMAIL_SERVER] for entity [moqui.basic.email.EmailServer]
    42129 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 68 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/BasicEntities.xml] in 4.584 seconds
    42155 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/EntityEntities.xml]
    42244 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 18 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/EntityEntities.xml] in 0.089 seconds
    42265 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/OlapEntities.xml]
    42268 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/OlapEntities.xml] in 0.002 seconds
    42269 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ResourceEntities.xml]
    42273 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ResourceEntities.xml] in 0.004 seconds
    42276 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ScreenEntities.xml]
    42486 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SCREEN_THEME] for entity [moqui.screen.ScreenTheme]
    42785 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 35 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ScreenEntities.xml] in 0.509 seconds
    42808 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/SecurityEntities.xml]
    43041 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_ACCOUNT] for entity [moqui.security.UserAccount]
    44096 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SEQUENCE_VALUE_ITEM] for entity [moqui.entity.SequenceValueItem]
    44374 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ENTITY_AUDIT_LOG] for entity [moqui.entity.EntityAuditLog]
    44546 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 18 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/SecurityEntities.xml] in 1.738 seconds
    44747 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ServerEntities.xml]
    44749 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ServerEntities.xml] in 0.002 seconds
    44752 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ServiceEntities.xml]
    44902 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 58 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/ServiceEntities.xml] in 0.149 seconds
    44931 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/TenantEntities.xml]
    44934 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [jar:file:execwartmp/moqui_temp104788835445113918WEB-INF_lib_moqui-framework-1.5.2.jar.!/entity/TenantEntities.xml] in 0.003 seconds
    44936 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/CommonL10nData.xml]
    45130 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [LOCALIZED_MESSAGE] for entity [moqui.basic.LocalizedMessage]
    45542 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [LOCALIZED_ENTITY_FIELD] for entity [moqui.basic.LocalizedEntityField]
    45643 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 48 records from [classpath://data/CommonL10nData.xml] in 0.707 seconds
    45687 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/CurrencyData.xml]
    45852 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [UOM] for entity [moqui.basic.Uom]
    46701 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 170 records from [classpath://data/CurrencyData.xml] in 1.013 seconds
    46753 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/EntityTypeData.xml]
    46826 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 15 records from [classpath://data/EntityTypeData.xml] in 0.073 seconds
    46853 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/GeoCountryData.xml]
    47232 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 242 records from [classpath://data/GeoCountryData.xml] in 0.379 seconds
    47282 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/SecurityTypeData.xml]
    47509 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [EMAIL_TEMPLATE] for entity [moqui.basic.email.EmailTemplate]
    47853 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_GROUP] for entity [moqui.security.UserGroup]
    48086 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ARTIFACT_GROUP] for entity [moqui.security.ArtifactGroup]
    48353 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ARTIFACT_GROUP_MEMBER] for entity [moqui.security.ArtifactGroupMember]
    48874 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ARTIFACT_AUTHZ] for entity [moqui.security.ArtifactAuthz]
    49665 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 10 records from [classpath://data/SecurityTypeData.xml] in 2.382 seconds
    49687 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/ServiceTypeData.xml]
    49731 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 7 records from [classpath://data/ServiceTypeData.xml] in 0.044 seconds
    49753 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/TenantDefaultData.xml]
    49941 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TENANT] for entity [moqui.tenant.Tenant]
    50264 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TENANT_CURRENCY] for entity [moqui.tenant.TenantCurrency]
    50675 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TENANT_LOCALE] for entity [moqui.tenant.TenantLocale]
    51207 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TENANT_TIME_ZONE] for entity [moqui.tenant.TenantTimeZone]
    51839 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TENANT_COUNTRY] for entity [moqui.tenant.TenantCountry]
    52191 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 23 records from [classpath://data/TenantDefaultData.xml] in 2.437 seconds
    52210 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [classpath://data/UnitData.xml]
    52601 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [UOM_CONVERSION] for entity [moqui.basic.UomConversion]
    54096 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 252 records from [classpath://data/UnitData.xml] in 1.886 seconds
    54249 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/entity/ExampleEntities.xml]
    54386 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 36 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/entity/ExampleEntities.xml] in 0.137 seconds
    54420 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/entity/ExampleViewEntities.xml]
    54422 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/entity/ExampleViewEntities.xml] in 0.002 seconds
    54423 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/tools/entity/ToolTestEntities.xml]
    54427 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/tools/entity/ToolTestEntities.xml] in 0.004 seconds
    54428 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingAccountEntities.xml]
    54631 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [FINANCIAL_ACCOUNT_TYPE] for entity [mantle.account.financial.FinancialAccountType]
    55453 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SETTLEMENT_TERM] for entity [mantle.account.invoice.SettlementTerm]
    55843 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 152 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingAccountEntities.xml] in 1.415 seconds
    55935 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingLedgerEntities.xml]
    56215 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 191 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingLedgerEntities.xml] in 0.279 seconds
    56277 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingOtherEntities.xml]
    56475 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TAX_GATEWAY_CONFIG] for entity [mantle.other.tax.TaxGatewayConfig]
    56658 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 14 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/AccountingOtherEntities.xml] in 0.38 seconds
    56686 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/FacilityEntities.xml]
    56718 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 25 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/FacilityEntities.xml] in 0.031 seconds
    56742 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/HumanResourcesEntities.xml]
    57219 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [BENEFIT_TYPE] for entity [mantle.humanres.employment.BenefitType]
    57675 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [EMPL_POSITION_CLASS] for entity [mantle.humanres.position.EmplPositionClass]
    57759 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 108 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/HumanResourcesEntities.xml] in 1.016 seconds
    57786 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/MarketingEntities.xml]
    57896 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 55 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/MarketingEntities.xml] in 0.11 seconds
    57921 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/OrderEntities.xml]
    58201 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 96 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/OrderEntities.xml] in 0.28 seconds
    58221 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/PartyEntities.xml]
    58442 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PARTY] for entity [mantle.party.Party]
    59309 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PERSON] for entity [mantle.party.Person]
    60521 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PARTY_CLASSIFICATION] for entity [mantle.party.PartyClassification]
    61231 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ROLE_TYPE] for entity [mantle.party.RoleType]
    61665 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ROLE_GROUP_MEMBER] for entity [mantle.party.RoleGroupMember]
    62809 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [COMMUNICATION_EVENT_TYPE] for entity [mantle.party.communication.CommunicationEventType]
    63464 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [CONTACT_MECH_PURPOSE] for entity [mantle.party.contact.ContactMechPurpose]
    64332 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TIME_PERIOD_TYPE] for entity [mantle.party.time.TimePeriodType]
    64541 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 399 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/PartyEntities.xml] in 6.317 seconds
    64577 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductAssetEntities.xml]
    65167 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_METER_TYPE] for entity [mantle.product.maintenance.ProductMeterType]
    65425 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 158 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductAssetEntities.xml] in 0.848 seconds
    65454 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductDefinitionEntities.xml]
    65760 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 211 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductDefinitionEntities.xml] in 0.306 seconds
    65787 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductStoreEntities.xml]
    66394 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 41 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ProductStoreEntities.xml] in 0.606 seconds
    66510 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/RequestEntities.xml]
    66602 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 72 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/RequestEntities.xml] in 0.091 seconds
    66621 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/SalesEntities.xml]
    66624 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/SalesEntities.xml] in 0.002 seconds
    66625 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ShipmentEntities.xml]
    66898 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [CARRIER_SHIPMENT_METHOD] for entity [mantle.shipment.carrier.CarrierShipmentMethod]
    67420 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SHIPPING_GATEWAY_CONFIG] for entity [mantle.shipment.carrier.ShippingGatewayConfig]
    67616 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 67 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/ShipmentEntities.xml] in 0.991 seconds
    67643 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/WorkEffortEntities.xml]
    67884 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 185 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/entity/WorkEffortEntities.xml] in 0.241 seconds
    67932 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/AccountingAccountViewEntities.xml]
    67936 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/AccountingAccountViewEntities.xml] in 0.004 seconds
    67938 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/AccountingLedgerViewEntities.xml]
    67941 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/AccountingLedgerViewEntities.xml] in 0.003 seconds
    67943 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/FacilityViewEntities.xml]
    67946 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/FacilityViewEntities.xml] in 0.002 seconds
    67948 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/OrderViewEntities.xml]
    67950 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/OrderViewEntities.xml] in 0.002 seconds
    67951 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/PartyViewEntities.xml]
    67955 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/PartyViewEntities.xml] in 0.004 seconds
    67956 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductAssetViewEntities.xml]
    67959 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductAssetViewEntities.xml] in 0.003 seconds
    67962 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductDefinitionViewEntities.xml]
    67964 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductDefinitionViewEntities.xml] in 0.002 seconds
    67965 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/RequestViewEntities.xml]
    67968 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/RequestViewEntities.xml] in 0.002 seconds
    67968 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ShipmentViewEntities.xml]
    67972 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ShipmentViewEntities.xml] in 0.003 seconds
    67972 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/WorkEffortViewEntities.xml]
    67980 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 0 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/WorkEffortViewEntities.xml] in 0.007 seconds
    67981 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleL10nData.xml]
    68039 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 9 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleL10nData.xml] in 0.058 seconds
    68068 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleSecurityData.xml]
    68309 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SUBSCREENS_ITEM] for entity [moqui.screen.SubscreensItem]
    68720 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 4 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleSecurityData.xml] in 0.651 seconds
    68753 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleTypeData.xml]
    69076 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_VIEW_ENTITY] for entity [moqui.entity.view.DbViewEntity]
    69398 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_VIEW_ENTITY_MEMBER] for entity [moqui.entity.view.DbViewEntityMember]
    70577 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_VIEW_ENTITY_ALIAS] for entity [moqui.entity.view.DbViewEntityAlias]
    71398 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_VIEW_ENTITY_KEY_MAP] for entity [moqui.entity.view.DbViewEntityKeyMap]
    72176 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM] for entity [moqui.screen.form.DbForm]
    72399 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM_USER_GROUP] for entity [moqui.screen.form.DbFormUserGroup]
    73432 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM_FIELD] for entity [moqui.screen.form.DbFormField]
    74065 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM_FIELD_OPTION] for entity [moqui.screen.form.DbFormFieldOption]
    74554 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM_FIELD_ENT_OPTS] for entity [moqui.screen.form.DbFormFieldEntOpts]
    74932 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM_FIELD_ENT_OPTS_COND] for entity [moqui.screen.form.DbFormFieldEntOptsCond]
    75432 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM_FIELD_ENT_OPTS_ORDER] for entity [moqui.screen.form.DbFormFieldEntOptsOrder]
    75810 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DB_FORM_FIELD_ATTRIBUTE] for entity [moqui.screen.form.DbFormFieldAttribute]
    76544 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_FIELD] for entity [moqui.entity.UserField]
    76829 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 48 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleTypeData.xml] in 8.074 seconds
    76855 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleZzyDemoData.json]
    77109 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [EXAMPLE] for entity [moqui.example.Example]
    77866 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [EXAMPLE_ITEM] for entity [moqui.example.ExampleItem]
    78262 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 2 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleZzyDemoData.json] in 1.407 seconds
    78287 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleZzzDemoData.xml]
    78532 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_GROUP_MEMBER] for entity [moqui.security.UserGroupMember]
    79022 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_PERMISSION] for entity [moqui.security.UserPermission]
    79409 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_GROUP_PERMISSION] for entity [moqui.security.UserGroupPermission]
    79866 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_LOGIN_HISTORY] for entity [moqui.security.UserLoginHistory]
    81035 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ARTIFACT_TARPIT] for entity [moqui.security.ArtifactTarpit]
    81654 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TENANT_DATA_SOURCE] for entity [moqui.tenant.TenantDataSource]
    82165 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TENANT_DATA_SOURCE_XA_PROP] for entity [moqui.tenant.TenantDataSourceXaProp]
    82621 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ENTITY_SYNC] for entity [moqui.entity.sync.EntitySync]
    83821 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ENTITY_SYNC_ARTIFACT] for entity [moqui.entity.sync.EntitySyncArtifact]
    84633 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SYSTEM_MESSAGE_TYPE] for entity [moqui.service.message.SystemMessageType]
    84987 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SYSTEM_MESSAGE_REMOTE] for entity [moqui.service.message.SystemMessageRemote]
    85043 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 29 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ExampleZzzDemoData.xml] in 6.755 seconds
    85177 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzaExampleRecords.csv]
    85235 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 2 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzaExampleRecords.csv] in 0.058 seconds
    85254 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzbExampleService.csv]
    85267 [main] INFO pl.entity.EntityDataLoaderImpl - Called service [org.moqui.example.ExampleServices.create#Example] in data load, results: [exampleId:100002]
    85268 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 1 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzbExampleService.csv] in 0.014 seconds
    85289 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzcExampleItemRecords.csv]
    85298 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 3 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/data/ZzcExampleItemRecords.csv] in 0.009 seconds
    85322 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/tools/data/ToolsSecurityData.xml]
    85358 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 6 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/tools/data/ToolsSecurityData.xml] in 0.036 seconds
    85377 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot/data/WebrootSecurityData.xml]
    85385 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 4 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot/data/WebrootSecurityData.xml] in 0.008 seconds
    85421 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot/data/WebrootThemeData.xml]
    85721 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SCREEN_THEME_RESOURCE] for entity [moqui.screen.ScreenThemeResource]
    86156 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 15 records from [file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot/data/WebrootThemeData.xml] in 0.734 seconds
    86199 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-ubpl/data/UbplSetupData.xml]
    86237 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 4 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-ubpl/data/UbplSetupData.xml] in 0.038 seconds
    86275 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/AccountConfigData.xml]
    86588 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PAYMENT_GATEWAY_CONFIG] for entity [mantle.account.method.PaymentGatewayConfig]
    86837 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 2 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/AccountConfigData.xml] in 0.562 seconds
    86855 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoCanData.xml]
    87210 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [GEO_ASSOC] for entity [moqui.basic.GeoAssoc]
    88038 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 26 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoCanData.xml] in 1.183 seconds
    88067 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoJpnData.xml]
    88177 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 94 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoJpnData.xml] in 0.11 seconds
    88235 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoUsaData.xml]
    88431 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 195 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/GeoUsaData.xml] in 0.196 seconds
    88466 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ItemTypeData.xml]
    88701 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 112 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ItemTypeData.xml] in 0.235 seconds
    88732 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentData.xml]
    89154 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DATA_DOCUMENT] for entity [moqui.entity.document.DataDocument]
    89400 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DATA_DOCUMENT_FIELD] for entity [moqui.entity.document.DataDocumentField]
    89833 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DATA_DOCUMENT_REL_ALIAS] for entity [moqui.entity.document.DataDocumentRelAlias]
    90253 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 96 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentData.xml] in 1.521 seconds
    90278 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentInventoryData.xml]
    90488 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DATA_DOCUMENT_CONDITION] for entity [moqui.entity.document.DataDocumentCondition]
    90776 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 82 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentInventoryData.xml] in 0.498 seconds
    90800 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentWorkData.xml]
    90861 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 78 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/MantleDocumentWorkData.xml] in 0.061 seconds
    90889 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/SalesData.xml]
    91003 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 21 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/SalesData.xml] in 0.114 seconds
    91022 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzaGlAccountsDemoData.xml]
    91222 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [GL_ACCOUNT] for entity [mantle.ledger.account.GlAccount]
    93133 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ORGANIZATION] for entity [mantle.party.Organization]
    93500 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [GL_JOURNAL] for entity [mantle.ledger.transaction.GlJournal]
    94433 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PARTY_ACCTG_PREFERENCE] for entity [mantle.ledger.config.PartyAcctgPreference]
    96067 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [GL_ACCOUNT_ORGANIZATION] for entity [mantle.ledger.account.GlAccountOrganization]
    96833 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [GL_ACCOUNT_TYPE_DEFAULT] for entity [mantle.ledger.config.GlAccountTypeDefault]
    97678 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ITEM_TYPE_GL_ACCOUNT] for entity [mantle.ledger.config.ItemTypeGlAccount]
    98666 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PAYMENT_TYPE_GL_ACCOUNT] for entity [mantle.ledger.config.PaymentTypeGlAccount]
    99411 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PAYMENT_METHOD_TYPE_GL_ACCOUNT] for entity [mantle.ledger.config.PaymentMethodTypeGlAccount]
    100555 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [CREDIT_CARD_TYPE_GL_ACCOUNT] for entity [mantle.ledger.config.CreditCardTypeGlAccount]
    101388 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [FINANCIAL_ACCOUNT_TYPE_GL_ACCOUNT] for entity [mantle.ledger.config.FinancialAccountTypeGlAccount]
    101938 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 604 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzaGlAccountsDemoData.xml] in 10.916 seconds
    101979 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzbOrganizationDemoData.xml]
    102200 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PARTY_ROLE] for entity [mantle.party.PartyRole]
    102967 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PARTY_RELATIONSHIP] for entity [mantle.party.PartyRelationship]
    105378 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [CONTACT_MECH] for entity [mantle.party.contact.ContactMech]
    107645 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [POSTAL_ADDRESS] for entity [mantle.party.contact.PostalAddress]
    111790 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PARTY_CONTACT_MECH] for entity [mantle.party.contact.PartyContactMech]
    113337 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TELECOM_NUMBER] for entity [mantle.party.contact.TelecomNumber]
    116157 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [RATE_AMOUNT] for entity [mantle.humanres.rate.RateAmount]
    122767 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [TIME_PERIOD] for entity [mantle.party.time.TimePeriod]
    124112 [main] INFO pl.entity.EntityDataLoaderImpl - Called service [mantle.ledger.LedgerServices.init#PartyAccountingConfiguration] in data load, results: [:]
    127499 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT] for entity [mantle.product.Product]
    130346 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_PRICE] for entity [mantle.product.ProductPrice]
    133201 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PAYMENT_METHOD] for entity [mantle.account.method.PaymentMethod]
    135513 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [CREDIT_CARD] for entity [mantle.account.method.CreditCard]
    136394 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 159 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzbOrganizationDemoData.xml] in 34.415 seconds
    136414 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzcProductDemoData.xml]
    136602 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [FACILITY] for entity [mantle.facility.Facility]
    137902 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [FACILITY_CONTACT_MECH] for entity [mantle.facility.FacilityContactMech]
    139002 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_STORE] for entity [mantle.product.store.ProductStore]
    141918 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_STORE_PAYMENT_GATEWAY] for entity [mantle.product.store.ProductStorePaymentGateway]
    142924 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_STORE_SHIPPING_GATEWAY] for entity [mantle.product.store.ProductStoreShippingGateway]
    143680 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_CATEGORY] for entity [mantle.product.category.ProductCategory]
    144202 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_STORE_CATEGORY] for entity [mantle.product.store.ProductStoreCategory]
    145213 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_CATEGORY_ROLLUP] for entity [mantle.product.category.ProductCategoryRollup]
    146325 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_CATEGORY_MEMBER] for entity [mantle.product.category.ProductCategoryMember]
    147403 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ASSET] for entity [mantle.product.asset.Asset]
    153592 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ASSET_DETAIL] for entity [mantle.product.asset.AssetDetail]
    156447 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_DIMENSION] for entity [mantle.product.ProductDimension]
    156981 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SUBSCRIPTION_RESOURCE] for entity [mantle.product.subscription.SubscriptionResource]
    157347 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_SUBSCRIPTION_RESOURCE] for entity [mantle.product.subscription.ProductSubscriptionResource]
    159878 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 63 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm/data/ZzcProductDemoData.xml] in 23.464 seconds
    159926 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/data/MantleSetupData.xml]
    160280 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [USER_GROUP_PREFERENCE] for entity [moqui.security.UserGroupPreference]
    160466 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 6 records from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/data/MantleSetupData.xml] in 0.54 seconds
    160496 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceAaaSetupData.xml]
    160618 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 22 records from [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceAaaSetupData.xml] in 0.122 seconds
    160706 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceAabDocumentData.xml]
    160919 [main] INFO pl.entity.EntityDataLoaderImpl - Called service [org.moqui.impl.EntityServices.clone#DataDocument] in data load, results: [:]
    161426 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DATA_DOCUMENT_LINK] for entity [moqui.entity.document.DataDocumentLink]
    162737 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DATA_FEED] for entity [moqui.entity.feed.DataFeed]
    163625 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [DATA_FEED_DOCUMENT] for entity [moqui.entity.feed.DataFeedDocument]
    164108 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 5 records from [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceAabDocumentData.xml] in 3.402 seconds
    164138 [main] INFO pl.entity.EntityDataLoaderImpl - Loading entity data from [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceDemoData.xml]
    164726 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_FEATURE_APPL] for entity [mantle.product.feature.ProductFeatureAppl]
    165981 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_FEATURE] for entity [mantle.product.feature.ProductFeature]
    167115 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_IDENTIFICATION] for entity [mantle.product.ProductIdentification]
    168340 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [PRODUCT_ASSOC] for entity [mantle.product.ProductAssoc]
    170667 [main] INFO impl.entity.EntityDataDocument - Creating ElasticSearch index default__popc (popc) and adding document mappings
    172466 [main] INFO pl.entity.EntityDataLoaderImpl - Called service [org.moqui.impl.EntityServices.index#DataFeedDocuments] in data load, results: [documentsIndexed:6]
    172466 [main] INFO pl.entity.EntityDataLoaderImpl - Loaded 1 records from [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce/data/PopCommerceDemoData.xml] in 8.328 seconds
    172471 [main] INFO org.moqui.Moqui - Loaded [4467] records in 135 seconds.
    173982 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ARTIFACT_HIT_BIN] for entity [moqui.server.ArtifactHitBin]
    0 [main] INFO xt.ExecutionContextFactoryImpl - Initializing Moqui ExecutionContextFactoryImpl
  • runtime directory [C:\projects\moqui_ws\moqui\runtime]
  • config file [C:\projects\moqui_ws\moqui\runtime/conf/MoquiDevConf.xml]
  • moqui.runtime property [C:\projects\moqui_ws\moqui\runtime]
    295 [main] INFO xt.ExecutionContextFactoryImpl - Added component [example] at [file:C:/projects/moqui_ws/moqui/runtime/base-component/example]
    295 [main] INFO xt.ExecutionContextFactoryImpl - Added component [tools] at [file:C:/projects/moqui_ws/moqui/runtime/base-component/tools]
    296 [main] INFO xt.ExecutionContextFactoryImpl - Added component [webroot] at [file:C:/projects/moqui_ws/moqui/runtime/base-component/webroot]
    303 [main] INFO xt.ExecutionContextFactoryImpl - Added component [mantle-ubpl] at [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-ubpl]
    303 [main] INFO xt.ExecutionContextFactoryImpl - Added component [mantle-udm] at [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-udm]
    303 [main] INFO xt.ExecutionContextFactoryImpl - Added component [mantle-usl] at [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl]
    311 [main] INFO xt.ExecutionContextFactoryImpl - Added component [PopCommerce] at [file:C:/projects/moqui_ws/moqui/runtime/component/PopCommerce]
    333 [main] INFO xt.ExecutionContextFactoryImpl - Added JAR from runtime/lib: mysql-connector-java-5.1.34-bin.jar
    729 [main] INFO xt.ExecutionContextFactoryImpl - Moqui CacheFacadeImpl Initialized
    734 [main] INFO xt.ExecutionContextFactoryImpl - Moqui LoggerFacadeImpl Initialized
    1298 [main] INFO xt.ExecutionContextFactoryImpl - Added JAR from [example] component: file:C:/projects/moqui_ws/moqui/runtime/base-component/example/lib/example-1.5.2.jar
    1417 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ResourceFacadeImpl Initialized
    1462 [main] WARN bitronix.tm.Configuration - Cannot get the unique server ID for this JVM ('bitronix.tm.serverId'). Make sure it is configured and you use only US-ASCII characters. Will use IP address instead (unsafe for production usage!).
    1873 [main] INFO xt.ExecutionContextFactoryImpl - Moqui TransactionFacadeImpl Initialized
    1960 [main] INFO ty.EntityDatasourceFactoryImpl - Set property derby.system.home to [C:\projects\moqui_ws\moqui\runtime/db/derby]
    31683 [main] INFO ty.EntityDatasourceFactoryImpl - Set property derby.system.home to [C:\projects\moqui_ws\moqui\runtime/db/derby]
    32259 [main] INFO i.impl.entity.EntityFacadeImpl - Loaded [1] Entity ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/Order.eecas.xml]
    32278 [main] INFO i.impl.entity.EntityFacadeImpl - Loaded [1] Entity ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/ProductAsset.eecas.xml]
    32363 [main] INFO i.impl.entity.EntityFacadeImpl - Loaded [3] Entity ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/entity/Work.eecas.xml]
    32411 [main] INFO xt.ExecutionContextFactoryImpl - Moqui EntityFacadeImpl for DEFAULT Tenant Initialized
    32518 [main] INFO uartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor
    32528 [main] INFO .quartz.simpl.SimpleThreadPool - Job execution threads will use class loader of thread: main
    32551 [main] INFO LSchedulingDataProcessorPlugin - Registering Quartz Job Initialization Plug-in.
    32558 [main] INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized.
    32562 [main] INFO uartz.impl.StdSchedulerFactory - Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
    32564 [main] INFO uartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.2.1
    32584 [main] INFO impl.service.ServiceFacadeImpl - Loaded [0] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/base-component/example/service/Example.secas.xml]
    32877 [main] INFO impl.service.ServiceFacadeImpl - Loaded [4] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingFinancial.secas.xml]
    32929 [main] INFO impl.service.ServiceFacadeImpl - Loaded [2] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingInvoice.secas.xml]
    33049 [main] INFO impl.service.ServiceFacadeImpl - Loaded [5] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingLedger.secas.xml]
    33099 [main] INFO impl.service.ServiceFacadeImpl - Loaded [2] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/AccountingPayment.secas.xml]
    33145 [main] INFO impl.service.ServiceFacadeImpl - Loaded [3] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/ProductAsset.secas.xml]
    33182 [main] INFO impl.service.ServiceFacadeImpl - Loaded [1] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/ProductSubscription.secas.xml]
    33212 [main] INFO impl.service.ServiceFacadeImpl - Loaded [1] Service ECA rules from [file:C:/projects/moqui_ws/moqui/runtime/mantle/mantle-usl/service/WorkEffort.secas.xml]
    33298 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ServiceFacadeImpl Initialized
    33351 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ScreenFacadeImpl Initialized
    33366 [main] INFO xt.ExecutionContextFactoryImpl - Moqui L10nFacadeImpl Initialized
    33374 [main] INFO xt.ExecutionContextFactoryImpl - Starting ElasticSearch
    39893 [main] INFO xt.ExecutionContextFactoryImpl - Starting Camel
    42558 [main] WARN builder.impl.AbstractKieModule - No files found for KieBase TaxCalcKB
    42564 [main] INFO builder.impl.KieRepositoryImpl - KieModule was added:MemoryKieModule[ ReleaseId=org.moqui.mantle:mantle-usl:1.1.0]
    42901 [main] INFO i.impl.entity.EntityFacadeImpl - Found entities in 40 files in 247ms
    43922 [main] INFO i.impl.entity.EntityFacadeImpl - Found [1] view-entity definitions in database (moqui.entity.view.DbViewEntity)
    44933 [main] INFO xt.ExecutionContextFactoryImpl - Moqui ExecutionContextFactory Initialization Complete
    44953 [main] INFO xml.XMLSchedulingDataProcessor - Parsing XML file: quartz_data.xml with systemId: quartz_data.xml
    45068 [main] INFO xml.XMLSchedulingDataProcessor - Adding 2 jobs, 2 triggers.
    45069 [main] INFO xml.XMLSchedulingDataProcessor - Adding job: org.moqui.impl.ServerServices.clean#ArtifactData.clean_ArtifactData_single
    45497 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [ARTIFACT_AUTHZ_RECORD] for entity [moqui.security.ArtifactAuthzRecord]
    45658 [main] INFO i.impl.entity.EntityFacadeImpl - Created 1191 automatic reverse-many relationships
    46862 [main] INFO moqui.impl.entity.EntityDbMeta - Created table [SCHEDULER_HISTORY] for entity [moqui.service.scheduler.SchedulerHistory]
    46985 [main] INFO xml.XMLSchedulingDataProcessor - Adding job: org.moqui.impl.ServiceServices.clean#SchedulerHistory.clean_SchedulerHistory_single
    47019 [main] INFO pl.webapp.MoquiContextListener - Loading Moqui Webapp at [ROOT], moqui webapp name [webroot], context name [Moqui Root Webapp], located at [C:\Users\Abdul\AppData\Local\Temp\winstone\Abdul\default\moqui-1.5.2.war/]
    316044 [andlerThread[1]] INFO ui.impl.context.UserFacadeImpl - Got invalid visitorId [100000] in moqui.visitor cookie in session [b9e5f1d141e64d5532d42624f9c4e156], throwing away and making a new one
    316422 [andlerThread[1]] INFO moqui.impl.entity.EntityDbMeta - Created table [VISITOR] for entity [moqui.server.Visitor]
    318642 [andlerThread[1]] INFO i.impl.entity.EntityFacadeImpl - Created 1191 automatic reverse-many relationships
    318778 [andlerThread[1]] INFO ui.impl.context.UserFacadeImpl - Created new Visitor with ID [100000] in session [b9e5f1d141e64d5532d42624f9c4e156]
    319012 [andlerThread[1]] INFO moqui.impl.entity.EntityDbMeta - Created table [VISIT] for entity [moqui.server.Visit]
    320123 [andlerThread[1]] INFO ui.impl.context.UserFacadeImpl - Created new Visit with ID [100000] in session [b9e5f1d141e64d5532d42624f9c4e156]
    321301 [andlerThread[1]] INFO i.impl.screen.ScreenRenderImpl - Screen at location [component://webroot/screen/webroot/apps/AppList.xml], which is part of [[apps, AppList]] under screen [component://webroot/screen/webroot.xml] requires authentication but no user is currently logged in.
    322799 [andlerThread[1]] INFO moqui.impl.webapp.MoquiServlet - Finished request to [/Login] of content type [text/html;charset=UTF-8] in [1.472] seconds in session [b9e5f1d141e64d5532d42624f9c4e156] thread [89:RequestHandlerThread[1]]
    328966 [andlerThread[3]] INFO i.impl.screen.ScreenRenderImpl - Finished transition [[Login, login]], redirecting to [http://localhost:8080/apps/AppList]
    331301 [andlerThread[3]] INFO moqui.impl.webapp.MoquiServlet - Finished request to [/apps/AppList] of content type [text/html;charset=UTF-8] in [2.308] seconds in session [b9e5f1d141e64d5532d42624f9c4e156] thread [91:RequestHandlerThread[3]]
    346981 [ndlerThread[10]] WARN builder.impl.AbstractKieModule - No files found for KieBase TaxCalcKB
    346987 [ndlerThread[10]] INFO builder.impl.KieRepositoryImpl - KieModule was added:MemoryKieModule[ ReleaseId=org.moqui.mantle:mantle-usl:1.1.0]
    347000 [ndlerThread[10]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [ProductPriceKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    347004 [ndlerThread[10]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [TaxCalcKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    347005 [ndlerThread[10]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [OrderShippingRateKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    348605 [ndlerThread[10]] INFO moqui.impl.webapp.MoquiServlet - Finished request to [/popc] of content type [text/html;charset=UTF-8] in [3.677] seconds in session [b9e5f1d141e64d5532d42624f9c4e156] thread [98:RequestHandlerThread[10]]
    348628 [andlerThread[9]] INFO moqui.impl.webapp.MoquiServlet - Finished request to [/popc] of content type [text/html;charset=UTF-8] in [5.709] seconds in session [b9e5f1d141e64d5532d42624f9c4e156] thread [97:RequestHandlerThread[9]]
    605755 [ndlerThread[15]] WARN i.impl.entity.EntityFacadeImpl - No location cache found for entity-name [ProductStoreCategory], reloading ALL entity file locations known.
    605946 [ndlerThread[15]] INFO i.impl.entity.EntityFacadeImpl - Found entities in 40 files in 188ms
    605981 [ndlerThread[15]] INFO i.impl.entity.EntityFacadeImpl - Found [1] view-entity definitions in database (moqui.entity.view.DbViewEntity)
    606384 [ndlerThread[15]] WARN builder.impl.AbstractKieModule - No files found for KieBase TaxCalcKB
    606385 [ndlerThread[15]] INFO builder.impl.KieRepositoryImpl - KieModule was added:MemoryKieModule[ ReleaseId=org.moqui.mantle:mantle-usl:1.1.0]
    606394 [ndlerThread[15]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [ProductPriceKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    606395 [ndlerThread[15]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [TaxCalcKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    606395 [ndlerThread[15]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [OrderShippingRateKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    606632 [ndlerThread[15]] INFO moqui.impl.webapp.MoquiServlet - Finished request to [/popc] of content type [text/html;charset=UTF-8] in [1.246] seconds in session [b9e5f1d141e64d5532d42624f9c4e156] thread [108:RequestHandlerThread[15]]
    673497 [ndlerThread[16]] INFO moqui.impl.entity.EntityDbMeta - Created table [ORDER_HEADER] for entity [mantle.order.OrderHeader]
    674978 [ndlerThread[16]] INFO i.impl.entity.EntityFacadeImpl - Created 1191 automatic reverse-many relationships
    676654 [ndlerThread[16]] INFO moqui.impl.entity.EntityDbMeta - Created table [ORDER_PART] for entity [mantle.order.OrderPart]
    678673 [ndlerThread[16]] WARN builder.impl.AbstractKieModule - No files found for KieBase TaxCalcKB
    678673 [ndlerThread[16]] INFO builder.impl.KieRepositoryImpl - KieModule was added:MemoryKieModule[ ReleaseId=org.moqui.mantle:mantle-usl:1.1.0]
    678679 [ndlerThread[16]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [ProductPriceKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    678679 [ndlerThread[16]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [TaxCalcKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    678680 [ndlerThread[16]] WARN xt.ExecutionContextFactoryImpl - Found KIE session [OrderShippingRateKS] in component [mantle-usl], replacing with session in component [mantle-usl]
    678909 [ndlerThread[16]] INFO moqui.impl.entity.EntityDbMeta - Created table [ORDER_ITEM] for entity [mantle.order.OrderItem]
    683043 [ndlerThread[16]] INFO i.impl.screen.ScreenRenderImpl - Finished transition [[popc, Home, addToCart]], redirecting to [http://localhost:8080/popc/Order/Cart]
    684218 [ndlerThread[16]] ERROR g.moqui.impl.actions.XmlAction - Error running groovy script (org.moqui.entity.EntityException: The name [TelecomNumber] is not a valid field name or relationship name for entity [mantle.order.OrderPart]):
    1 : import org.moqui.impl.StupidUtilities
    2 : // these are in the context by default: ExecutionContext ec, Map<String, Object> context, Map<String, Object> result
    3 : if (true) {
    4 : org.moqui.entity.EntityValue find_one_result = ec.entity.find("mantle.order.OrderHeader")
    5 : .condition(context).one()
    6 : if (orderHeader instanceof Map && !(orderHeader instanceof org.moqui.entity.EntityValue)) {
    7 : if (find_one_result) orderHeader.putAll(find_one_result)
    8 : } else {
    9 : orderHeader = find_one_result
    10 : }
    11 : }
    12 : statusItem = (orderHeader.'OrderHeader#moqui.basic.StatusItem')
    13 : orderItemList = orderHeader?.findRelated("mantle.order.OrderItem", null, ['orderItemSeqId'], null, null)
    14 :
    15 : // begin inline script
    16 :
    17 : orderItemWithChildrenSet = new HashSet()
    18 : List reverseList = orderItemList.cloneList().orderByFields(["-orderItemSeqId"])
    19 : for (def orderItem in reverseList) {
    20 : if (orderItem.parentItemSeqId) {
    21 : orderItemWithChildrenSet.add(orderItem.parentItemSeqId)
    22 : orderItemList.move(orderItemList.indexMatching([orderItemSeqId:orderItem.orderItemSeqId]),
    23 : orderItemList.indexMatching([orderItemSeqId:orderItem.parentItemSeqId])+1)
    24 : }
    25 : }
    26 :
    27 : // end inline script
    28 : paymentList = orderHeader?.findRelated("mantle.account.payment.Payment", null, ['paymentId'], null, null)
    29 : shipmentItemSourceList_xafind = ec.entity.find("mantle.shipment.ShipmentItemSource")
    30 : .condition((org.moqui.entity.EntityCondition) ec.entity.conditionFactory.makeActionConditionDirect("orderId", "equals", orderId, null, null, false, false, false, "false"))
    31 : shipmentItemSourceList = shipmentItemSourceList_xafind.list()
    32 : shipmentIdSet = (new TreeSet())
    33 : shipmentItemSource_index = 0
    34 : _shipmentItemSourceIterator = shipmentItemSourceList.iterator()
    35 : while (_shipmentItemSourceIterator.hasNext()) {
    36 : def shipmentItemSource = _shipmentItemSourceIterator.next()
    37 : boolean shipmentItemSource_hasNext = _shipmentItemSourceIterator.hasNext()
    38 :
    39 : // begin inline script
    40 : shipmentIdSet.add(shipmentItemSource.shipmentId)
    41 : // end inline script
    42 : shipmentItemSource_index++
    43 : }
    44 : if (shipmentItemSourceList instanceof org.moqui.entity.EntityListIterator) shipmentItemSourceList.close()
    45 :
    46 : orderItemBillingList_xafind = ec.entity.find("mantle.order.OrderItemBilling").orderBy("orderItemSeqId")
    47 : .condition((org.moqui.entity.EntityCondition) ec.entity.conditionFactory.makeActionConditionDirect("orderId", "equals", orderId, null, null, false, false, false, "false"))
    48 : orderItemBillingList = orderItemBillingList_xafind.list()
    49 : invoiceIdSet = (new TreeSet())
    50 : orderItemBilling_index = 0
    51 : _orderItemBillingIterator = orderItemBillingList.iterator()
    52 : while (_orderItemBillingIterator.hasNext()) {
    53 : def orderItemBilling = _orderItemBillingIterator.next()
    54 : boolean orderItemBilling_hasNext = _orderItemBillingIterator.hasNext()
    55 :
    56 : // begin inline script
    57 : invoiceIdSet.add(orderItemBilling.invoiceId)
    58 : // end inline script
    59 : orderItemBilling_index++
    60 : }
    61 : if (orderItemBillingList instanceof org.moqui.entity.EntityListIterator) orderItemBillingList.close()
    62 :
    63 : requestItemOrderList_xafind = ec.entity.find("mantle.request.RequestItemOrder")
    64 : .condition((org.moqui.entity.EntityCondition) ec.entity.conditionFactory.makeActionConditionDirect("orderId", "equals", orderId, null, null, false, false, false, "false"))
    65 : requestItemOrderList = requestItemOrderList_xafind.list()
    66 : requestIdSet = (new TreeSet())
    67 : requestItemOrder_index = 0
    68 : _requestItemOrderIterator = requestItemOrderList.iterator()
    69 : while (_requestItemOrderIterator.hasNext()) {
    70 : def requestItemOrder = requestItemOrderIterator.next()
    71 : boolean requestItemOrder_hasNext = requestItemOrderIterator.hasNext()
    72 :
    73 : // begin inline script
    74 : requestIdSet.add(requestItemOrder.requestId)
    75 : // end inline script
    76 : requestItemOrder_index++
    77 : }
    78 : if (requestItemOrderList instanceof org.moqui.entity.EntityListIterator) requestItemOrderList.close()
    79 :
    80 : statusHistoryList_xafind = ec.entity.find("moqui.entity.EntityAuditLog").orderBy("changedDate")
    81 : .condition((org.moqui.entity.EntityCondition) ec.entity.conditionFactory.makeActionConditionDirect("changedEntityName", "equals", changedEntityName, "mantle.order.OrderHeader", null, false, false, false, "false")).condition((org.moqui.entity.EntityCondition) ec.entity.conditionFactory.makeActionConditionDirect("changedFieldName", "equals", changedFieldName, "statusId", null, false, false, false, "false")).condition((org.moqui.entity.EntityCondition) ec.entity.conditionFactory.makeActionConditionDirect("pkPrimaryValue", "equals", orderId, null, null, false, false, false, "false"))
    82 : statusHistoryList = statusHistoryList_xafind.list()
    83 : orderPartList = orderHeader?.findRelated("mantle.order.OrderPart", null, null, null, null)
    84 :
    85 : // begin inline script
    86 :
    87 : import org.moqui.entity.EntityList
    88 : import org.moqui.entity.EntityValue
    89 : import org.moqui.context.ExecutionContext
    90 : ExecutionContext ec = context.ec
    91 :
    92 : orderPartInfoList = []
    93 : for (EntityValue orderPart in orderPartList) {
    94 : partOrderItemList = orderItemList.cloneList().filterByAnd([orderPartSeqId:orderPart.orderPartSeqId])
    95 : partNoParentOrderItemList = partOrderItemList.cloneList().filterByAnd([parentItemSeqId:null])
    96 : partPaymentList = paymentList.cloneList().filterByAnd([orderPartSeqId:orderPart.orderPartSeqId])
    97 : partPaymentInfoList = []
    98 : BigDecimal paymentsTotal = 0
    99 : for (EntityValue partPayment in partPaymentList) {
    100 : paymentsTotal += (partPayment.amount ?: 0)
    101 : Map partPaymentInfo = [partPayment:partPayment]
    102 : EntityValue paymentMethod = partPayment.PaymentMethod
    103 : EntityValue paymentMethodTypeEnum = partPayment."PaymentMethodType#moqui.basic.Enumeration"
    104 : if (paymentMethod) {
    105 : partPaymentInfo.paymentMethod = paymentMethod
    106 : creditCard = paymentMethod.CreditCard
    107 : partPaymentInfo.creditCard = creditCard
    108 : partPaymentInfo.creditCardTypeEnum = partPaymentInfo.creditCard."CreditCardType#moqui.basic.Enumeration"
    109 : cardNumber = creditCard?.cardNumber
    110 : partPaymentInfo.maskedCardNumber = cardNumber ? (creditCard.creditCardTypeEnumId == 'CctAmericanExpress' ? '**********
    ' : '**
    *********') + cardNumber.substring(cardNumber.length() - 4, cardNumber.length()) : ''
    111 : partPaymentInfo.postalAddress = paymentMethod.PostalAddress
    112 : partPaymentInfo.postalAddressStateGeo = partPaymentInfo.postalAddress?."StateProvince#moqui.basic.Geo"
    113 : partPaymentInfo.telecomNumber = paymentMethod.TelecomNumber
    114 : if (!paymentMethodTypeEnum) paymentMethodTypeEnum = paymentMethod."PaymentMethodType#moqui.basic.Enumeration"
    115 : }
    116 : partPaymentInfo.paymentMethodTypeEnum = paymentMethodTypeEnum
    117 : partPaymentInfoList.add(partPaymentInfo)
    118 : }
    119 :
    120 : BigDecimal partTotalUnpaid = (orderPart.partTotal ?: 0) - (paymentsTotal ?: 0)
    121 :
    122 : List orderItemSeqIdList = partOrderItemList.orderItemSeqId
    123 : List partShipmentItemSourceList = []
    124 : Set partShipmentIdSet = new TreeSet()
    125 : for (EntityValue sis in shipmentItemSourceList) if (sis.orderItemSeqId in orderItemSeqIdList) {
    126 : partShipmentItemSourceList.add(sis)
    127 : partShipmentIdSet.add(sis.shipmentId)
    128 : }
    129 :
    130 : EntityValue postalAddress = orderPart.'mantle.party.contact.PostalAddress'
    131 : EntityValue postalAddressStateGeo = postalAddress?."StateProvince#moqui.basic.Geo"
    132 : EntityValue facility = orderPart.'mantle.facility.Facility'
    133 : Map facilityContactInfo = null
    134 : if (facility) {
    135 : Map facShipOut = ec.service.sync().name("mantle.facility.ContactServices.get#FacilityDefaultShipDest")
    136 : .parameter("facilityId", orderPart.facilityId).call()
    137 : facilityContactInfo = ec.service.sync().name("mantle.facility.ContactServices.get#FacilityContactInfo")
    138 : .parameters([facilityId:orderPart.facilityId, postalContactMechId:facShipOut.postalContactMechId,
    139 : telecomContactMechId:facShipOut.telecomContactMechId]).call()
    140 : }
    141 : EntityValue customerDetail = ec.entity.find("mantle.party.PartyDetail").condition("partyId", orderPart.customerPartyId).one()
    142 : EntityValue vendorDetail = ec.entity.find("mantle.party.PartyDetail").condition("partyId", orderPart.vendorPartyId).one()
    143 : orderPartInfoList.add([orderPart:orderPart, partOrderItemList:partOrderItemList,
    144 : partNoParentOrderItemList:partNoParentOrderItemList,
    145 : shipmentMethodEnum:orderPart."ShipmentMethod#moqui.basic.Enumeration",
    146 : partPaymentList:partPaymentList, partPaymentInfoList:partPaymentInfoList,
    147 : paymentsTotal:paymentsTotal, partTotalUnpaid:partTotalUnpaid,
    148 : postalAddress:postalAddress, postalAddressStateGeo:postalAddressStateGeo,
    149 : telecomNumber:orderPart.TelecomNumber, facility:facility, facilityContactInfo:facilityContactInfo,
    150 : customerDetail:customerDetail, vendorDetail:vendorDetail,
    151 : partShipmentItemSourceList:partShipmentItemSourceList, partShipmentIdSet:partShipmentIdSet])
    152 : }
    153 :
    154 : // end inline script
    155 : // make sure the last statement is not considered the return value
    156 : return;
    157 :

684231 [ndlerThread[16]] WARN .context.TransactionFacadeImpl - Transaction rollback. The rollback was originally caused by: Error running service mantle.order.OrderServices.get#OrderDisplayInfo
org.moqui.entity.EntityException: The name [TelecomNumber] is not a valid field name or relationship name for entity [mantle.order.OrderPart]
at org.moqui.impl.entity.EntityValueBase.get(EntityValueBase.groovy:138)
at org.moqui.impl.entity.EntityValueBase.get(EntityValueBase.groovy:808)
at org.moqui.impl.entity.EntityValueBase.getProperty(EntityValueBase.groovy)
at mantle_order_OrderServices_get_OrderDisplayInfo.run(mantle_order_OrderServices_get_OrderDisplayInfo:143)
at org.moqui.impl.actions.XmlAction.run(XmlAction.groovy:101)
at org.moqui.impl.service.runner.InlineServiceRunner.runService(InlineServiceRunner.groovy:52)
at org.moqui.impl.service.ServiceCallSyncImpl.callSingle(ServiceCallSyncImpl.groovy:250)
at org.moqui.impl.service.ServiceCallSyncImpl.call(ServiceCallSyncImpl.groovy:134)
at Cart_xml_screen_actions.run(Cart_xml_screen_actions:4)
at org.moqui.impl.actions.XmlAction.run(XmlAction.groovy:101)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:102)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.renderSubscreen(ScreenRenderImpl.groovy:742)
at org.moqui.impl.screen.ScreenWidgets.render(ScreenWidgets.groovy:40)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:103)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.renderSubscreen(ScreenRenderImpl.groovy:742)
at org.moqui.impl.screen.ScreenWidgets.render(ScreenWidgets.groovy:40)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:103)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.doActualRender(ScreenRenderImpl.groovy:602)
at org.moqui.impl.screen.ScreenRenderImpl.internalRender(ScreenRenderImpl.groovy:499)
at org.moqui.impl.screen.ScreenRenderImpl.render(ScreenRenderImpl.groovy:162)
at org.moqui.impl.webapp.MoquiServlet.doScreenRequest(MoquiServlet.groovy:70)
at org.moqui.impl.webapp.MoquiServlet.doGet(MoquiServlet.groovy:39)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at net.winstone.core.ServletConfiguration.execute(ServletConfiguration.java:270)
at net.winstone.core.SimpleRequestDispatcher.forward(SimpleRequestDispatcher.java:290)
at net.winstone.core.listener.RequestHandlerThread.processRequest(RequestHandlerThread.java:212)
at net.winstone.core.listener.RequestHandlerThread.run(RequestHandlerThread.java:143)
at java.util.concurrent.FutureTask.run(Unknown Source)
at net.winstone.util.BoundedExecutorService$1.run(BoundedExecutorService.java:81)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
684247 [ndlerThread[16]] WARN .context.TransactionFacadeImpl - Transaction rollback for [Error running service mantle.order.OrderServices.get#OrderDisplayInfo]. Here is the current location:
org.moqui.BaseException: Rollback location
at org.moqui.impl.context.TransactionFacadeImpl.rollback(TransactionFacadeImpl.groovy:405)
at org.moqui.impl.context.TransactionFacadeImpl.rollback(TransactionFacadeImpl.groovy:389)
at org.moqui.impl.service.ServiceCallSyncImpl.callSingle(ServiceCallSyncImpl.groovy:267)
at org.moqui.impl.service.ServiceCallSyncImpl.call(ServiceCallSyncImpl.groovy:134)
at Cart_xml_screen_actions.run(Cart_xml_screen_actions:4)
at org.moqui.impl.actions.XmlAction.run(XmlAction.groovy:101)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:102)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.renderSubscreen(ScreenRenderImpl.groovy:742)
at org.moqui.impl.screen.ScreenWidgets.render(ScreenWidgets.groovy:40)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:103)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.renderSubscreen(ScreenRenderImpl.groovy:742)
at org.moqui.impl.screen.ScreenWidgets.render(ScreenWidgets.groovy:40)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:103)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.doActualRender(ScreenRenderImpl.groovy:602)
at org.moqui.impl.screen.ScreenRenderImpl.internalRender(ScreenRenderImpl.groovy:499)
at org.moqui.impl.screen.ScreenRenderImpl.render(ScreenRenderImpl.groovy:162)
at org.moqui.impl.webapp.MoquiServlet.doScreenRequest(MoquiServlet.groovy:70)
at org.moqui.impl.webapp.MoquiServlet.doGet(MoquiServlet.groovy:39)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at net.winstone.core.ServletConfiguration.execute(ServletConfiguration.java:270)
at net.winstone.core.SimpleRequestDispatcher.forward(SimpleRequestDispatcher.java:290)
at net.winstone.core.listener.RequestHandlerThread.processRequest(RequestHandlerThread.java:212)
at net.winstone.core.listener.RequestHandlerThread.run(RequestHandlerThread.java:143)
at java.util.concurrent.FutureTask.run(Unknown Source)
at net.winstone.util.BoundedExecutorService$1.run(BoundedExecutorService.java:81)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
684253 [ndlerThread[16]] WARN pl.service.ServiceCallSyncImpl - Error running service mantle.order.OrderServices.get#OrderDisplayInfo
org.moqui.entity.EntityException: The name [TelecomNumber] is not a valid field name or relationship name for entity [mantle.order.OrderPart]
at org.moqui.impl.entity.EntityValueBase.get(EntityValueBase.groovy:138)
at org.moqui.impl.entity.EntityValueBase.get(EntityValueBase.groovy:808)
at org.moqui.impl.entity.EntityValueBase.getProperty(EntityValueBase.groovy)
at mantle_order_OrderServices_get_OrderDisplayInfo.run(mantle_order_OrderServices_get_OrderDisplayInfo:143)
at org.moqui.impl.actions.XmlAction.run(XmlAction.groovy:101)
at org.moqui.impl.service.runner.InlineServiceRunner.runService(InlineServiceRunner.groovy:52)
at org.moqui.impl.service.ServiceCallSyncImpl.callSingle(ServiceCallSyncImpl.groovy:250)
at org.moqui.impl.service.ServiceCallSyncImpl.call(ServiceCallSyncImpl.groovy:134)
at Cart_xml_screen_actions.run(Cart_xml_screen_actions:4)
at org.moqui.impl.actions.XmlAction.run(XmlAction.groovy:101)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:102)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.renderSubscreen(ScreenRenderImpl.groovy:742)
at org.moqui.impl.screen.ScreenWidgets.render(ScreenWidgets.groovy:40)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:103)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.renderSubscreen(ScreenRenderImpl.groovy:742)
at org.moqui.impl.screen.ScreenWidgets.render(ScreenWidgets.groovy:40)
at org.moqui.impl.screen.ScreenSection.renderSingle(ScreenSection.groovy:103)
at org.moqui.impl.screen.ScreenSection.render(ScreenSection.groovy:91)
at org.moqui.impl.screen.ScreenDefinition.render(ScreenDefinition.groovy:408)
at org.moqui.impl.screen.ScreenRenderImpl.doActualRender(ScreenRenderImpl.groovy:602)
at org.moqui.impl.screen.ScreenRenderImpl.internalRender(ScreenRenderImpl.groovy:499)
at org.moqui.impl.screen.ScreenRenderImpl.render(ScreenRenderImpl.groovy:162)
at org.moqui.impl.webapp.MoquiServlet.doScreenRequest(MoquiServlet.groovy:70)
at org.moqui.impl.webapp.MoquiServlet.doGet(MoquiServlet.groovy:39)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at net.winstone.core.ServletConfiguration.execute(ServletConfiguration.java:270)
at net.winstone.core.SimpleRequestDispatcher.forward(SimpleRequestDispatcher.java:290)
at net.winstone.core.listener.RequestHandlerThread.processRequest(RequestHandlerThread.java:212)
at net.winstone.core.listener.RequestHandlerThread.run(RequestHandlerThread.java:143)
at java.util.concurrent.FutureTask.run(Unknown Source)
at net.winstone.util.BoundedExecutorService$1.run(BoundedExecutorService.java:81)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
684391 [ndlerThread[16]] INFO moqui.impl.webapp.MoquiServlet - Finished request to [/popc/Order/Cart] of content type [text/html;charset=UTF-8] in [1.34] seconds in session [b9e5f1d141e64d5532d42624f9c4e156] thread [110:RequestHandlerThread[16]]
817487 [duler_Worker-10] INFO .impl.context.LoggerFacadeImpl - Removed 0 SchedulerHistory records.
817643 [eduler_Worker-5] INFO .impl.context.LoggerFacadeImpl - Removed 0 ArtifactHit records and 0 ArtifactHitBin records.

Star rating component

This is in continuation to discussion on Issue 88.

  1. For resources (css/js) should I place them in PopCommerceRoot/assets/lib/rating folder same as webroot or somewhere else ?

  2. Where should the schema definition go ? Do I need to create custom form xsd ? Because I think we should not be using the existing framework/xsd/xml-form-1.5.xsd as the widget resource are part of PopCommerce

  3. Same as Point 3 where should the macro definition go ?

Please let me know and I will create PR accordingly. Thanks.

New user password

When a new user is created it is possible to enter a new password and leave the 'require change password' to 'y' which is the default setting.

When however this new user is trying to login with the entered password, he is not able to, because he is notified with the message:
Authenticate failed for user [david] because account requires password change [PWDCHG].

Shouldn't the new user be able to use the entered password and be prompted for a new one?

When he presses the 'reset password' and enters his username , then he is able to enter the entered password....(?)

PopCommerce not available in newly downloaded files

Hi.

I've just downloaded moqui-1.5.2-mantle-1.0.1-HiveMind-1.1.1 bundle, put the PopCommerce zip bundle on the runtime/component, and the application doesn't run.

The data loading looks like was successful:
" - file:/hdd/home/leonardo/Documents/Projetos/Moqui/moqui/runtime/component/PopCommerce/data/PopCommerceAaaSetupData.xml

  • file:/hdd/home/leonardo/Documents/Projetos/Moqui/moqui/runtime/component/PopCommerce/data/PopCommerceAabDocumentData.xml

  • file:/hdd/home/leonardo/Documents/Projetos/Moqui/moqui/runtime/component/PopCommerce/data/PopCommerceDemoData.xml"

    And apparently it is binding:

"128 [ main] INFO xt.ExecutionContextFactoryImpl - Added component [PopCommerce] at [file:/Projects/moqui/runtime/component/PopCommerce]"

But trying to access it, I got this:
"183644 [ndlerThread[19]] WARN moqui.impl.webapp.MoquiServlet - Web Resource Not Found: Could not find subscreen or
transition or file/content [PopcAdmin] under screen [component://webroot/screen/webroot/apps.xml] while finding url for
path [apps, PopcAdmin] under from screen [component://webroot/screen/webroot.xml]
183644 [ndlerThread[19]] INFO moqui.impl.webapp.MoquiServlet - Finished request to [/apps/PopcAdmin] of content type [text/html;charset=UTF-8] in [0.011] seconds in session [c6436073b58eda0c28d15c6349129732] thread [132:RequestHandlerThread[19]]"

What can I do to run the application ?

System Ubuntu

gradle --version

Gradle 2.6

Build time: 2015-08-10 13:15:06 UTC
Build number: none
Revision: 233bbf8e47c82f72cb898b3e0a96b85d0aad166e

Groovy: 2.3.10
Ant: Apache Ant(TM) version 1.9.3 compiled on December 23 2013
JVM: 1.8.0_45 (Oracle Corporation 25.45-b02)
OS: Linux 3.13.0-36-generic amd64

Internationalization ERP app

I want ask you about internationalization ERP app (PopCommerce). Do you accept this task? If you accept, I will take care this task. I need localization (L10N) application to Vietnamese for our customers, firstly, we need internationalization (I18N) it.

Unable to login to demo application

The following Error encountered after clicking on Roles-> Admin Rights. The same error repeats on clicking View Demo-> Test User David Jones.

HTTP Status 500 - Error rendering screen [component://webroot/screen/webroot.xml]
type Status report
message Error rendering screen [component://webroot/screen/webroot.xml]
description The server encountered an internal error that prevented it from fulfilling this request.
Apache Tomcat/8.0.39

Now unable to login to demo application with test user.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.