[10719] | 1 | |
---|
| 2 | .. |n0| replace:: n\ :sub:`0` |
---|
| 3 | .. |m0| replace:: m\ :sub:`0` |
---|
| 4 | |
---|
[10699] | 5 | .. _label-data-entities: |
---|
| 6 | |
---|
[10696] | 7 | Data Entities |
---|
| 8 | ============= |
---|
| 9 | |
---|
[10699] | 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`. |
---|
[10696] | 13 | |
---|
[10699] | 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 | |
---|
[10701] | 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 |
---|
[10743] | 27 | connected to how many instances of the related entity. |
---|
[10701] | 28 | |
---|
[10743] | 29 | The following relation types may occur (in both directions): |
---|
[10699] | 30 | |
---|
[10743] | 31 | - 1:1 (one on one) |
---|
| 32 | - n:1 (many on one) |
---|
| 33 | - n:m (many on many) |
---|
| 34 | - p:1 (many or none on one) |
---|
| 35 | - p:q (many or none on many or none) |
---|
| 36 | - p:n (many or none on many) |
---|
| 37 | - b:1 (one or none on one) |
---|
| 38 | |
---|
| 39 | with |
---|
| 40 | |
---|
| 41 | - n, m element of {1, 2, ...}, |
---|
| 42 | - p, q element of {0, 1, 2, ...} |
---|
| 43 | - b element of {0, 1} |
---|
| 44 | |
---|
| 45 | Examples: |
---|
| 46 | |
---|
| 47 | 1:p service-contract relation means that each service |
---|
| 48 | offered can result in various contracts, but each contract is |
---|
[10745] | 49 | only based on one service. |
---|
[10743] | 50 | |
---|
| 51 | p:q user-userrole relation means that each user can have no role or |
---|
| 52 | several roles and each role can be assigned to no user or several users. |
---|
| 53 | |
---|
| 54 | Relations can always be read in two directions. |
---|
| 55 | |
---|
[10717] | 56 | .. _label-contact-address: |
---|
| 57 | |
---|
| 58 | Contact Address |
---|
| 59 | --------------- |
---|
| 60 | |
---|
| 61 | A postal address. |
---|
| 62 | |
---|
[10745] | 63 | Connected to: :ref:`label-contact-data` (p:1) |
---|
[10717] | 64 | |
---|
[10701] | 65 | Used in the following use cases: |
---|
| 66 | |
---|
[10716] | 67 | |
---|
[10699] | 68 | .. _label-contact-data: |
---|
| 69 | |
---|
[10701] | 70 | Contact Data |
---|
| 71 | ------------ |
---|
[10699] | 72 | |
---|
[10732] | 73 | The data neccessary to contact some :ref:`label-customer`, staff |
---|
| 74 | person or similar entity. Contact data might contain several |
---|
| 75 | addresses, phone numbers, emails, etc. |
---|
[10699] | 76 | |
---|
[10717] | 77 | Connected to: :ref:`label-customer` (1:1), |
---|
[10742] | 78 | :ref:`label-contact-address` (1:p), :ref:`label-contact-email` |
---|
| 79 | (1:n), :ref:`label-contact-phone` (1:p) |
---|
[10716] | 80 | |
---|
| 81 | Used in the following use cases: |
---|
| 82 | |
---|
| 83 | |
---|
[10719] | 84 | .. _label-contact-email: |
---|
| 85 | |
---|
| 86 | Contact Email |
---|
| 87 | ------------- |
---|
| 88 | |
---|
| 89 | An email address with optional additional clear name. For email |
---|
| 90 | addresses we store some timestamp that indicates when the respective |
---|
| 91 | email address was last checked successfully (thus marking it a 'valid' |
---|
[10742] | 92 | one). No timestamp means, the email address has never been checked. |
---|
[10719] | 93 | |
---|
[10742] | 94 | Connected to: :ref:`label-contact-data` (n:1), |
---|
| 95 | :ref:`label-timestamp` (1:q) |
---|
[10719] | 96 | |
---|
| 97 | Used in the following use cases: |
---|
| 98 | |
---|
| 99 | |
---|
| 100 | .. _label-contact-phone: |
---|
| 101 | |
---|
| 102 | Contact Phone |
---|
| 103 | ------------- |
---|
| 104 | |
---|
[10737] | 105 | Mobile phone number which is capable of receiving sms text messages. |
---|
[10719] | 106 | |
---|
[10745] | 107 | Connected to: :ref:`label-contact-data` (p:1) |
---|
[10719] | 108 | |
---|
| 109 | Used in the following use cases: |
---|
| 110 | |
---|
| 111 | |
---|
[10699] | 112 | .. _label-contract: |
---|
| 113 | |
---|
[10701] | 114 | Contract |
---|
| 115 | -------- |
---|
[10699] | 116 | |
---|
[10730] | 117 | A contract is created whenever a :ref:`label-customer` orders some |
---|
| 118 | :ref:`label-service` from the system. It is always connected to a |
---|
| 119 | :ref:`label-customer` and a :ref:`label-service` . |
---|
[10729] | 120 | |
---|
| 121 | A contract is not necessarily written on paper and signed by |
---|
| 122 | people. Instead it is an abstraction used inside the system. |
---|
| 123 | |
---|
[10743] | 124 | It is always created from a :ref:`label-service`, which tells about |
---|
[10730] | 125 | the basic data, with additional parameters set that depend on the type |
---|
| 126 | of :ref:`label-service` ordered. |
---|
[10729] | 127 | |
---|
[10732] | 128 | Contracts can trigger :ref:`label-transaction`\ s. For instance if some |
---|
| 129 | :ref:`label-customer` orders a service. When the service charges |
---|
| 130 | become due, a respective :ref:`label-transaction` is triggered. |
---|
| 131 | |
---|
[10742] | 132 | Contracts can have multiple :ref:`label-contract-addon`\ s. |
---|
[10729] | 133 | |
---|
[10742] | 134 | Connected to: :ref:`label-service` (p:1), :ref:`label-customer` (p:1), |
---|
[10745] | 135 | :ref:`label-contract-addon` (1:p), :ref:`label-transaction` (1:p), |
---|
| 136 | :ref:`label-meter` (1:b) |
---|
[10729] | 137 | |
---|
| 138 | Used in the following use cases: |
---|
| 139 | |
---|
| 140 | |
---|
[10730] | 141 | .. _label-contract-addon: |
---|
| 142 | |
---|
| 143 | Contract Addon |
---|
| 144 | -------------- |
---|
| 145 | |
---|
| 146 | Kind of 'sub contract' that always belongs to some already existing |
---|
[10732] | 147 | :ref:`label-contract` but comes with an own set of |
---|
| 148 | parameters. Contract addons are created by :ref:`label-contract`\ s. |
---|
[10730] | 149 | |
---|
[10743] | 150 | Connected to: :ref:`label-contract` (p:1), |
---|
| 151 | :ref:`label-service` (p:1), :ref:`label-customer` (p:1), |
---|
| 152 | :ref:`label-transaction` (1:p) |
---|
[10730] | 153 | |
---|
| 154 | |
---|
[10699] | 155 | .. _label-customer: |
---|
| 156 | |
---|
[10701] | 157 | Customer |
---|
| 158 | -------- |
---|
[10696] | 159 | |
---|
[10746] | 160 | Beneficiary of :ref:`label-contract`\ s. |
---|
[10701] | 161 | |
---|
[10738] | 162 | Customers are added to the system by initial import (migration phase), |
---|
| 163 | being created by staff or can self-register themselves to the system. |
---|
[10733] | 164 | |
---|
[10738] | 165 | Customers have to provide :ref:`label-contact-data` and get |
---|
| 166 | :ref:`label-login-credentials` to login to the system. |
---|
| 167 | |
---|
| 168 | Once logged in, customers get a 'My Eko-Disco' page where they can |
---|
| 169 | |
---|
| 170 | - see their current orders |
---|
| 171 | |
---|
| 172 | - watch their consumption |
---|
| 173 | |
---|
| 174 | - order more services |
---|
| 175 | |
---|
| 176 | - handle contractual problems |
---|
| 177 | |
---|
| 178 | - get help if problems arise |
---|
| 179 | |
---|
[10742] | 180 | - retrieve bills |
---|
[10738] | 181 | |
---|
[10742] | 182 | - change their passwords |
---|
[10738] | 183 | |
---|
| 184 | Customers can order :ref:`label-service`\ s and pay these (kinds of |
---|
| 185 | payment depend on the type of service/good ordered and the available |
---|
| 186 | payment methods). |
---|
| 187 | |
---|
| 188 | Customers and their data can be managed by customers themselves (for |
---|
| 189 | instance when postal addresses change), and by staff members. |
---|
| 190 | |
---|
[10742] | 191 | Connected to: :ref:`label-contract` (1:p), |
---|
[10746] | 192 | :ref:`label-contact-data` (1:1), :ref:`label-login-credentials` (1:1), |
---|
| 193 | :ref:`label-user` (b:1) |
---|
[10738] | 194 | |
---|
| 195 | |
---|
| 196 | .. _label-location: |
---|
| 197 | |
---|
| 198 | Location |
---|
| 199 | -------- |
---|
| 200 | |
---|
| 201 | A real-world location. Used for instance for meters to store |
---|
[10744] | 202 | information about their place. The location of a meter does not necessarily |
---|
| 203 | correspond with one of the :ref:`label-contact-address`\ es. |
---|
| 204 | Locations can either be less formal, for instance describing a location |
---|
| 205 | in words, or very precise by using GPS data. |
---|
[10738] | 206 | |
---|
[10742] | 207 | Connected to: :ref:`label-meter` (1:p) |
---|
[10738] | 208 | |
---|
| 209 | |
---|
[10699] | 210 | .. _label-login-credentials: |
---|
| 211 | |
---|
[10701] | 212 | Login Credentials |
---|
| 213 | ----------------- |
---|
[10699] | 214 | |
---|
[10738] | 215 | A set of username/password assigned to system users. Passwords are |
---|
| 216 | stored inside the system using strong cryptographic hash functions. |
---|
[10733] | 217 | |
---|
[10738] | 218 | Passwords can be reset on request. |
---|
| 219 | |
---|
[10742] | 220 | Connected to: :ref:`label-customer` (1:1) |
---|
[10738] | 221 | |
---|
| 222 | |
---|
[10699] | 223 | .. _label-meter: |
---|
| 224 | |
---|
[10701] | 225 | Meter |
---|
| 226 | ----- |
---|
[10696] | 227 | |
---|
[10738] | 228 | A meter measures power consumption. It has a place where it is |
---|
| 229 | installed and might be connected to one or several contracts. For a |
---|
| 230 | given time a meter can be connected to one or zero contracts. |
---|
[10733] | 231 | |
---|
[10738] | 232 | Each meter has to provide a :ref:`label-location` that tells, where it |
---|
| 233 | is installed. |
---|
[10699] | 234 | |
---|
[10738] | 235 | Meters also contain a history of meter values |
---|
| 236 | (:ref:`label-meter-value`), which is basically a list of meter values |
---|
| 237 | at a given time. |
---|
[10696] | 238 | |
---|
[10742] | 239 | Connected to: :ref:`label-contract` (b:1), |
---|
| 240 | :ref:`label-meter-value` (1:n), :ref:`label-location` (p:1) |
---|
[10733] | 241 | |
---|
[10738] | 242 | |
---|
[10699] | 243 | .. _label-meter-value: |
---|
[10696] | 244 | |
---|
[10701] | 245 | Meter Value |
---|
| 246 | ----------- |
---|
[10696] | 247 | |
---|
[10738] | 248 | The value of a :ref:`label-meter` at a certain point in time |
---|
| 249 | (providing a :ref:`label-timestamp`) authorized by some |
---|
| 250 | :ref:`label-user` or device. |
---|
[10733] | 251 | |
---|
[10738] | 252 | It serves mainly for computing power consumption of |
---|
| 253 | :ref:`label-customer`\ s. |
---|
[10696] | 254 | |
---|
[10738] | 255 | When a new meter value is added to the system (the respective |
---|
| 256 | :ref:`label-meter` is 'updated'), the system also registers how the |
---|
| 257 | the new value was entered, i.e. by whom and when. |
---|
[10696] | 258 | |
---|
[10738] | 259 | The system will be prepared to collect meter values in two ways: |
---|
[10696] | 260 | |
---|
[10738] | 261 | a) (push-method): by being fed with respective data by authorized |
---|
| 262 | users (staff members) |
---|
[10701] | 263 | |
---|
[10738] | 264 | b) (pull-method): by polling dedicated hardware that provides the |
---|
| 265 | neccessary interface (automatic remote-reading). |
---|
[10701] | 266 | |
---|
[10738] | 267 | The second choice requires appropriate hardware to be in place, which |
---|
| 268 | in detail is not part of this specs. The system will, however, be |
---|
| 269 | prepared to collect meter data from external devices. |
---|
[10733] | 270 | |
---|
[10745] | 271 | Connected to: :ref:`label-meter` (n:1), :ref:`label-timestamp` (1:1), |
---|
[10742] | 272 | :ref:`label-user` (p:1) |
---|
[10738] | 273 | |
---|
| 274 | |
---|
[10746] | 275 | .. _label-officer: |
---|
| 276 | |
---|
| 277 | Officer |
---|
| 278 | ------- |
---|
| 279 | |
---|
| 280 | Officers are staff members with certain permissions to manage portal data. |
---|
| 281 | |
---|
[10747] | 282 | Actors are called :ref:`Manager <label-manager>` if they are officers with with local managing permission. |
---|
[10746] | 283 | |
---|
| 284 | Connected to: :ref:`label-login-credentials` (1:1), |
---|
| 285 | :ref:`label-user` (b:1), |
---|
| 286 | :ref:`label-user-role` (1:p) |
---|
| 287 | |
---|
| 288 | |
---|
| 289 | |
---|
[10699] | 290 | .. _label-report: |
---|
[10696] | 291 | |
---|
[10701] | 292 | Report |
---|
| 293 | ------ |
---|
[10699] | 294 | |
---|
[10738] | 295 | Administrative report or list to give overviews over current state of |
---|
| 296 | business. Includes lists of customers sorted by various categories |
---|
| 297 | (type of contract, amount of fees paid, etc.), lists of services |
---|
| 298 | sorted by various categories, etc. |
---|
[10720] | 299 | |
---|
[10738] | 300 | Reports are generated as PDF documents and are available for download |
---|
| 301 | by authorized :ref:`label-user`\ s. |
---|
| 302 | |
---|
| 303 | Connected to: (almost everything else) |
---|
| 304 | |
---|
| 305 | |
---|
[10720] | 306 | .. _label-service: |
---|
| 307 | |
---|
| 308 | Service |
---|
| 309 | ------- |
---|
| 310 | |
---|
[10732] | 311 | The system will provide different services to |
---|
| 312 | :ref:`label-customer`\ s. These can have arbitrary forms, including |
---|
| 313 | one-time services (like installation of meters) and open-ended |
---|
| 314 | long-time services (like delivering power based on contract). Services |
---|
| 315 | are managable by staff like goods offered in a shop. |
---|
[10720] | 316 | |
---|
[10729] | 317 | Services define the conditions under which they can be ordered by |
---|
[10732] | 318 | :ref:`label-customer`\ s, including prices, runtimes, etc. |
---|
[10729] | 319 | |
---|
[10732] | 320 | Services also serve as factories for :ref:`label-contract`\ s. |
---|
[10729] | 321 | |
---|
[10742] | 322 | Connected to: :ref:`label-contract` (1:p) |
---|
[10730] | 323 | |
---|
[10729] | 324 | Used in the following use cases: |
---|
| 325 | |
---|
| 326 | |
---|
[10699] | 327 | .. _label-timestamp: |
---|
| 328 | |
---|
[10701] | 329 | Timestamp |
---|
| 330 | --------- |
---|
| 331 | |
---|
[10738] | 332 | A timestamp can be a calendar date or a calendar date plus some day |
---|
| 333 | time. |
---|
[10720] | 334 | |
---|
[10738] | 335 | The system will internally use UTC-based timestamps only to minimize |
---|
| 336 | ambiguities. In menus, frontends, etc. timestamps are displayed in |
---|
| 337 | local Lagos time. |
---|
| 338 | |
---|
| 339 | Connected to: :ref:`label-meter-value` (1:1), |
---|
[10742] | 340 | :ref:`label-contact-email` (p:1) |
---|
[10738] | 341 | |
---|
| 342 | |
---|
[10720] | 343 | .. _label-transaction: |
---|
| 344 | |
---|
| 345 | Transaction |
---|
| 346 | ----------- |
---|
| 347 | |
---|
| 348 | A transaction is some business-relevant action taken. A transaction |
---|
| 349 | means basically, that something happened, that leads to increased or |
---|
| 350 | decreased customer accounts. Normally this is something like a |
---|
| 351 | payment, some service order or similar. |
---|
| 352 | |
---|
| 353 | Transactions do always belong to one certain customer account. They |
---|
| 354 | also contain some amount of money which is thereby transfered to or |
---|
| 355 | from a customer's account. They also always reference a service which |
---|
[10730] | 356 | is consumed, purchased, or (pre-)paid by the respective customer. |
---|
[10720] | 357 | |
---|
[10742] | 358 | Connected to: :ref:`label-customer` (p:1), :ref:`label-service` |
---|
[10743] | 359 | (p:1), :ref:`label-contract` (p:1) |
---|
[10720] | 360 | |
---|
| 361 | Used in the following use cases: |
---|
| 362 | |
---|
| 363 | |
---|
[10738] | 364 | .. _label-user: |
---|
| 365 | |
---|
| 366 | User |
---|
| 367 | ---- |
---|
| 368 | |
---|
| 369 | A system user. |
---|
| 370 | |
---|
| 371 | Users can have :ref:`label-user-role`\ s managed by the |
---|
| 372 | system. Real-world staff members and customers are different to the |
---|
| 373 | system as they will have different roles. Also anonymous users are |
---|
| 374 | accepted by the system to provide marketing pages, service offers, |
---|
| 375 | etc. |
---|
| 376 | |
---|
| 377 | Each user has one set of :ref:`label-login-credentials` to authenticate |
---|
| 378 | against the system. |
---|
| 379 | |
---|
| 380 | Users can be blocked or removed from the system. |
---|
| 381 | |
---|
[10745] | 382 | Connected to: :ref:`label-login-credentials` (1:1), |
---|
[10746] | 383 | :ref:`label-customer` (1:b), |
---|
[10745] | 384 | :ref:`label-user-role` (p:q) |
---|
[10738] | 385 | |
---|
| 386 | |
---|
| 387 | .. _label-user-role: |
---|
| 388 | |
---|
| 389 | User Role |
---|
| 390 | --------- |
---|
| 391 | |
---|
[10746] | 392 | A set of permissions assigned to a group of :ref:`label-user`\ s. |
---|
[10738] | 393 | |
---|
[10742] | 394 | Connected to: :ref:`label-user` (p:q) |
---|
[10738] | 395 | |
---|