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
Object scripting API – object lang
Object evalGlobalObj defines functionality available for the object scripting using the lang
object.
Usable only in the application (locally processed) scripts. All data in the lang module are strictly read only.
All definitions are in the TypeScript latest edition.
class evalProvObj {
readonly provider: iresProvider
readonly thisFieldName: string
/** Returns name of the field from which the evaluation is called */
get me(): string
/** Returns translations from the filed that has the same name as this one but with appendix
* @example meadd('_header') called in the field 'Mine' returns translation from Mine_add
*/
getApp(appendix: string): string
/** Returns translation or other provider source */
get(what: string): string
}