1 | |
---|
2 | .. |n0| replace:: n\ :sub:`0` |
---|
3 | .. |m0| replace:: m\ :sub:`0` |
---|
4 | |
---|
5 | .. _label-data-entities: |
---|
6 | |
---|
7 | Data Entities |
---|
8 | ============= |
---|
9 | |
---|
10 | These are the data entities the new system is supposed to model. Each |
---|
11 | of these entities should be addable, editable, and removable as |
---|
12 | covered in more detail in :ref:`label-use-cases`. |
---|
13 | |
---|
14 | For each entity we give a short description to tell what it means, |
---|
15 | what its purpose is and in what regards (and how) it should be handled |
---|
16 | by the system. Again the more detailed actions on these entities |
---|
17 | provided by the system are described in the :ref:`label-use-cases` |
---|
18 | section. |
---|
19 | |
---|
20 | The data entities are sorted alphabetically, not by importance or |
---|
21 | similar. Used description terms should link to other respective |
---|
22 | entities/terms where possible. |
---|
23 | |
---|
24 | Each data entitiy description provides a list of use cases and other |
---|
25 | data entities connected. Connections to other data entities contain a |
---|
26 | relationship telling how many instances of the described entity are |
---|
27 | connected to how many instances of the related entity [#]_. |
---|
28 | |
---|
29 | .. _label-account: |
---|
30 | |
---|
31 | Account |
---|
32 | ------- |
---|
33 | |
---|
34 | A customer account contains the assets/debts of a :ref:`customer |
---|
35 | <label-customer>`. It is *not* a system account (see |
---|
36 | :ref:`label-login-credentials` for that) but a virtual financial |
---|
37 | account kept by the system. Basically it tells, how much money a |
---|
38 | certain :ref:`customer <label-customer>` owes or is eligible for. Each |
---|
39 | account is connected to exactly one customer. |
---|
40 | |
---|
41 | Connected to: :ref:`label-customer` (1:1), :ref:`label-payment` (1:n), |
---|
42 | :ref:`label-consumption` (1:n) |
---|
43 | |
---|
44 | Used in the following use cases: :ref:`label-uc-account-add` |
---|
45 | |
---|
46 | |
---|
47 | .. _label-contact-address: |
---|
48 | |
---|
49 | Contact Address |
---|
50 | --------------- |
---|
51 | |
---|
52 | A postal address. |
---|
53 | |
---|
54 | Connected to: :ref:`label-contact-data` (n:1) |
---|
55 | |
---|
56 | Used in the following use cases: |
---|
57 | |
---|
58 | |
---|
59 | .. _label-contact-data: |
---|
60 | |
---|
61 | Contact Data |
---|
62 | ------------ |
---|
63 | |
---|
64 | The data neccessary to contact some customer, staff person or similar |
---|
65 | entity. Contact data might contain several addresses, phone numbers, |
---|
66 | emails, etc. |
---|
67 | |
---|
68 | Connected to: :ref:`label-customer` (1:1), |
---|
69 | :ref:`label-contact-address` (1:|n0|), :ref:`label-contact-email` (1:|n0|) |
---|
70 | |
---|
71 | Used in the following use cases: |
---|
72 | |
---|
73 | |
---|
74 | .. _label-contact-email: |
---|
75 | |
---|
76 | Contact Email |
---|
77 | ------------- |
---|
78 | |
---|
79 | An email address with optional additional clear name. For email |
---|
80 | addresses we store some timestamp that indicates when the respective |
---|
81 | email address was last checked successfully (thus marking it a 'valid' |
---|
82 | one). |
---|
83 | |
---|
84 | Connected to: :ref:`label-contact-data` (|n0|:1) |
---|
85 | |
---|
86 | Used in the following use cases: |
---|
87 | |
---|
88 | |
---|
89 | .. _label-contact-phone: |
---|
90 | |
---|
91 | Contact Phone |
---|
92 | ------------- |
---|
93 | |
---|
94 | A phone number. |
---|
95 | |
---|
96 | Connected to: :ref:`label-contact-data` (|n0|:1) |
---|
97 | |
---|
98 | Used in the following use cases: |
---|
99 | |
---|
100 | |
---|
101 | .. _label-contract: |
---|
102 | |
---|
103 | Contract |
---|
104 | -------- |
---|
105 | |
---|
106 | A contract is created whenever a customer orders some service from the |
---|
107 | system. It is always connected to a customer and a service. |
---|
108 | |
---|
109 | A contract is not necessarily written on paper and signed by |
---|
110 | people. Instead it is an abstraction used inside the system. |
---|
111 | |
---|
112 | It is always created from a service, which tells about the basic data, |
---|
113 | with additional parameters set that depend on the type of service |
---|
114 | ordered. |
---|
115 | |
---|
116 | Contracts can have contract additions. |
---|
117 | |
---|
118 | Connected to: :ref:`label-service` (1:1), :ref:`label-customer` |
---|
119 | |
---|
120 | Used in the following use cases: |
---|
121 | |
---|
122 | |
---|
123 | .. _label-contract-types: |
---|
124 | |
---|
125 | Contract Types |
---|
126 | -------------- |
---|
127 | |
---|
128 | .. _label-contract-termination: |
---|
129 | |
---|
130 | Contract Termination |
---|
131 | -------------------- |
---|
132 | |
---|
133 | .. _label-consumption: |
---|
134 | |
---|
135 | Consumption |
---|
136 | ----------- |
---|
137 | |
---|
138 | .. _label-customer: |
---|
139 | |
---|
140 | Customer |
---|
141 | -------- |
---|
142 | |
---|
143 | Beneficiary of a contract |
---|
144 | |
---|
145 | .. _label-login-credentials: |
---|
146 | |
---|
147 | Login Credentials |
---|
148 | ----------------- |
---|
149 | |
---|
150 | .. _label-meter: |
---|
151 | |
---|
152 | Meter |
---|
153 | ----- |
---|
154 | |
---|
155 | .. _label-meter-status: |
---|
156 | |
---|
157 | Meter Status |
---|
158 | ------------ |
---|
159 | |
---|
160 | .. _label-meter-value: |
---|
161 | |
---|
162 | Meter Value |
---|
163 | ----------- |
---|
164 | |
---|
165 | .. _label-meter-reader: |
---|
166 | |
---|
167 | Meter Reader |
---|
168 | ------------ |
---|
169 | |
---|
170 | .. _label-payment: |
---|
171 | |
---|
172 | Payment |
---|
173 | ------- |
---|
174 | |
---|
175 | .. _label-point-of-consumption: |
---|
176 | |
---|
177 | Point of Consumption |
---|
178 | -------------------- |
---|
179 | |
---|
180 | .. _label-report: |
---|
181 | |
---|
182 | Report |
---|
183 | ------ |
---|
184 | |
---|
185 | |
---|
186 | .. _label-service: |
---|
187 | |
---|
188 | Service |
---|
189 | ------- |
---|
190 | |
---|
191 | The system will provide different services to customers. These can |
---|
192 | have arbitrary forms, including one-time services (like installation |
---|
193 | of meters) and open-ended long-time services (like delivering power |
---|
194 | based on contract). Services are managable by staff like goods offered |
---|
195 | in a shop. |
---|
196 | |
---|
197 | Services define the conditions under which they can be ordered by |
---|
198 | customers, including prices, runtimes, etc. |
---|
199 | |
---|
200 | Services also serve as factories for contracts. |
---|
201 | |
---|
202 | Connected to: :ref:`label-contract` (1:|n0|) |
---|
203 | |
---|
204 | Used in the following use cases: |
---|
205 | |
---|
206 | |
---|
207 | |
---|
208 | .. _label-timestamp: |
---|
209 | |
---|
210 | Timestamp |
---|
211 | --------- |
---|
212 | |
---|
213 | |
---|
214 | .. _label-transaction: |
---|
215 | |
---|
216 | Transaction |
---|
217 | ----------- |
---|
218 | |
---|
219 | A transaction is some business-relevant action taken. A transaction |
---|
220 | means basically, that something happened, that leads to increased or |
---|
221 | decreased customer accounts. Normally this is something like a |
---|
222 | payment, some service order or similar. |
---|
223 | |
---|
224 | Transactions do always belong to one certain customer account. They |
---|
225 | also contain some amount of money which is thereby transfered to or |
---|
226 | from a customer's account. They also always reference a service which |
---|
227 | is consumed or purchased by the respective customer. |
---|
228 | |
---|
229 | .. todo:: this is an initial draft, by no means the final version |
---|
230 | |
---|
231 | Connected to: :ref:`label-customer` (1:|n0|), :ref:`label-service` |
---|
232 | (|n0|:1) |
---|
233 | |
---|
234 | Used in the following use cases: |
---|
235 | |
---|
236 | |
---|
237 | .. [#] Relation types: (1:1): One-to-one, (1:n): One-to-many, (n:1): |
---|
238 | many-to-one, (n:m): many-to-many. ``n`` and ``m`` mean some |
---|
239 | value ``1..n``. To indicate zero or more (``0..n``) relations, |
---|
240 | we use |n0| and |m0| respectively. |
---|