Changed on:
19 Sept 2025
Plugin Name | OMS |
---|
Admin components for managing a Fluent Commerce account.
fc.activity.entity
1[
2 {
3 "type": "ORCHESTRATION_AUDIT",
4 "match": {
5 "name": "NBALAGURU.core.SetState"
6 },
7 "priority": 80,
8 "value": "{{humanify context.entityType}} moved to {{attributes.props.status}} status"
9 },
10 {
11 "type": "ORCHESTRATION_AUDIT",
12 "match": {
13 "name": "Send Event"
14 },
15 "priority": 50,
16 "value": "Sent event {{attributes.Event.name}} to {{humanify attributes.Event.entityType}}"
17 },
18 {
19 "type": "ORCHESTRATION_AUDIT",
20 "match": {
21 "category": "exception"
22 },
23 "priority": 10,
24 "value": "{{humanify context.entityType}} Error Occurred: {{name}}"
25 },
26 {
27 "type": "ORCHESTRATION",
28 "match": {
29 "name": "SEND_EMAIL"
30 },
31 "priority": 100,
32 "value": "Email sent to {{attributes.emailAddress}} using {{humanify attributes.templateName}} template"
33 },
34 {
35 "type": "ORCHESTRATION",
36 "match": {
37 "name": "CREATE"
38 },
39 "priority": 100,
40 "value": "Created {{humanify context.entityType}} {{context.entityRef}}"
41 },
42 {
43 "type": "ORCHESTRATION",
44 "match": {
45 "name": "ARTICLE_ARRIVED"
46 },
47 "priority": 100,
48 "value": "{{humanify context.entityType}} deposited to {{humanify attributes.storageAreaRef}}"
49 },
50 {
51 "type": "ORCHESTRATION",
52 "match": {
53 "name": "ARTICLE_COLLECTED"
54 },
55 "priority": 100,
56 "value": "{{humanify context.entityType}} marked as collected"
57 },
58 {
59 "type": "ORCHESTRATION",
60 "match": {
61 "name": "ARTICLE_CANCEL"
62 },
63 "priority": 100,
64 "value": "{{humanify context.entityType}} marked as cancelled with reason code {{attributes.CANCELLATION_REASON}}"
65 },
66 {
67 "type": "ORCHESTRATION",
68 "match": {
69 "name": "ORDER_CANCEL"
70 },
71 "priority": 100,
72 "value": "{{humanify context.entityType}} marked as cancelled with reason code {{attributes.CANCELLATION_REASON}}"
73 },
74 {
75 "type": "ORCHESTRATION",
76 "match": {
77 "name": "CANCELLED_ASSESSMENT_OPTION_AGED_CHARITY"
78 },
79 "priority": 100,
80 "value": "{{humanify context.entityType}} Aged Charity Assessment option selected"
81 },
82 {
83 "type": "ORCHESTRATION",
84 "match": {
85 "name": "CANCELLED_ASSESSMENT_OPTION_DISPOSE"
86 },
87 "priority": 100,
88 "value": "{{humanify context.entityType}} Dispose Assessment option selected"
89 },
90 {
91 "type": "ORCHESTRATION",
92 "match": {
93 "name": "CANCELLED_ASSESSMENT_OPTION_RTS"
94 },
95 "priority": 100,
96 "value": "{{humanify context.entityType}} Return to Supplier Assessment option selected"
97 },
98 {
99 "type": "ORCHESTRATION",
100 "match": {
101 "name": "ASSESSMENT_DISPOSE_ARTICLE_AGED_CHARITY"
102 },
103 "priority": 100,
104 "value": "{{humanify context.entityType}} Aged Charity Assessment action taken"
105 },
106 {
107 "type": "ORCHESTRATION",
108 "match": {
109 "name": "ASSESSMENT_DISPOSE_ARTICLE_LSS"
110 },
111 "priority": 100,
112 "value": "{{humanify context.entityType}} Dispose Assessment action taken"
113 },
114 {
115 "type": "ORCHESTRATION",
116 "match": {
117 "name": "ASSESSMENT_RETURN_ARTICLE"
118 },
119 "priority": 100,
120 "value": "{{humanify context.entityType}} Return to Supplier Assessment action taken"
121 },
122 {
123 "type": "ORCHESTRATION",
124 "match": {
125 "name": "AWAITING_COLLECTION_RESET_PIN"
126 },
127 "priority": 100,
128 "value": "{{humanify context.entityType}} PIN reset and sent to customer"
129 },
130 {
131 "type": "ORCHESTRATION",
132 "match": {
133 "name": "Display_Locker_Button"
134 },
135 "priority": 100,
136 "value": "{{humanify context.entityType}} locker door opened remotely"
137 }
138]
The Activity component custom templates are to be configured within the settings (see the Custom template configuration).
The list of available settings:
`fc.mystique.events.templates`
:`ORDER, BILLING_ACCOUNT, INVENTORY_CATALOGUE, VIRTUAL_CATALOGUE, PRODUCT_CATALOGUE, FULFILMENT_OPTIONS, RETURN_ORDER, CREDIT_MEMO, INVENTORY_POSITION`
.`fc.mystique.events.templates`
setting exists and is turned on`fc.mystique.events.templates`
don't exist or are turned offThe list of event types available to be configured:
Priority determines the rendering order for the templates processed from higher to lower. Only the first match will be rendered.
Value configuration example:
What can I do if Activity Tab doesn’t display the entity status when changed?
`fc.mystique.events.templates`
exist. Go to Admin → Settings and filter by fc.mystique.events.templatesName | Type | Required | Default | Description |
width |
| No |
| Define the width of this component on a 12-column grid. Can use the named widths for readability or numbers directly. On mobile devices, all widths will automatically change to 12 for the best responsive experience. The default is |
showChildEntities |
| No | true | The parameter specifies whether or not the page should display activities related to child entities. |
1{
2 "component": "fc.activity.entity",
3 "dataSource": "orderById",
4 "props": {
5 "width": "12",
6 "showChildEntities": true
7 }
8}
None