A. basic versions
graph TD
A[acta_v1.0]-->|store document| B(acta_v1.1)
B-->|store document| C(acta_v1.2)
C-->|store document| D(acta_v1.3)
D-->|store document + identify as the main version| E(acta_v2.0)
E-->|store document| F(acta_v2.1)
F-->|store document| G(acta_v2.2)
G--> H(acta_v3.0)
H-->|store document| I(acta_v3.1)
B. a basic work copy
graph TD
A[acta_v1.0]-->|store document| B(acta_v1.1)
B-->|store document| C(acta_v1.2)
B-->|create work copy| BA(copy of acta_v1.2)
C-->|store document| D(acta_v1.4)
C-->|create work copy| CA(copy of acta_v1.2)
BA-->|merge work copy| D
CA-->|merge work copy| D
D-->|store document| E(acta_v2.0)
graph TD
A[company owner]-->|create user| B(John)
B-->|see creator| A
B-->|create user| C(Jenny)
C-->|see creator| B
B-->|create user| D(someone else)
D-->|see creator| B
D-->|create user| E(....)
E-->|see creator| D
stateDiagram-v2
[*] --> No_state
No_state --> Open
No_state --> Close
Open --> Close
Open --> No_state
lining task into Document is done by linking part.. But parts of task is enabled only in serten cases
graph TD
A[Item / Task] --> B{Is linked \n to any document?}
B -->|Yes| C{Is linked document open?}
C -->|Yes| E[Show linked document parts \n and Enable change linking]
C -->|Yes/No| D[Show remove linking to document]
B -->|No| F{Is any lima document open?}
F -->|No| G[Disable any linking]
F -->|Yes| H{is open document Main copy}
H -->|Yes/No| J[Show Add linking to current document]
H -->|Yes| I[Show Create Xcopy from current docment]
Back to Home page