Related links
Sales & Asset management
Sales related services
Description of a part of the AM module - sales partFI - Finance Management
Framework Core functionality
- AyMINE Framework Server
- frmFrm – provided functionality
- System Rights
- System messaging
- AyMINE Business – Price calculation
- Strings and translations
- Export collection of objects
- AyMINE Framework management FAQ
- The AyMINE licence model
- AyMINE On-premise
- System events
- Mutli-client architecture
- Import collection of objects
- User sessions
- Default server methods
- Client-defined object attributes
- Common Libraries
Module - support for management
Libraries & Lincences
Mobile & Web Application
- Runtime debugging
- System console
- AyMINE Application
- In-line table edit support
- Object scripting API – object lang
- Application object structure
- Multilingual support
- View of a single object – detail
- Is using EVAL / feval method risky?
- Included library – String operations
- Cliplink
- Object API – object <g>
- API – Data object
- Object scripting API – object User
- Object view definition
- Framework support for Drag & Drop
- Common libraries
- Multiple-object update implementation
- fClip & fCliplist
- Offline persistent objects
- Mobile application
HR - Human Resources
System Management (part of framework)
Task, Project, Quality
Task & Task pattern
CMS - Content Management & Web API services
Mobile application
AyMINE offers a mobile app. However, there are a few necessities that the server must meet.
CORS settings
To make mobile application work properly, AyMINE server has to allow certain cross-orgin communication. These permission have to be set up in three places.
- frm/FE/request.php (handled by code)
- sys/FE/sysPoint.php (handled by code)
- nginx configuration (described below)
NGINX configuration
Cross-origin requesting of static files has to be allowed in appropritate .conf file, which has to set Access-Control-Allow-Origin heder to * for files with static extensions (so far:css,js,scss,json,jsonc,png,svg,woff2)
Implementation
"location ~* \.(css|js|scss|json|jsonc|png|svg|woff2)$ {
add_header Access-Control-Allow-Origin *;
}
"