Beschreibt die Properties eines Todo-Eintrags
| name | data type | constraints | description |
|---|---|---|---|
| type | TodoEntryType | Typ des Todo-Eintrags. Es kann sich um ein Projekt, einen Auftrag, oder um ein Los handeln. | |
| cnr | string | ||
| partnerName | string | ||
| title | string | ||
| dueDateMs | number | required | |
| comment | string | ||
| details | TodoDetailEntryList | ||
| manufacturingPlace | string | ||
| startDateMs | number | required | Die (früheste) Beginnzeit des Loses/Auftrags |
| orderCnr | string | Liefert die Auftragsnummer, die das Los erzeugt hat | |
| documents | TodoDocumentEntryList | Die Dokumente eines Todo-Eintrags | |
| formattedDeliveryAddress | string | ||
Properties inherited from BaseEntryId |
|||
| id | number | Die eindeutige Id des Eintrags | |
Example
{
"type" : "ORDER",
"cnr" : "...",
"partnerName" : "...",
"title" : "...",
"dueDateMs" : 12345,
"comment" : "...",
"details" : {
"entries" : [ {
"detailType" : "IDENT",
"id" : 12345
}, {
"detailType" : "PROJECTDETAIL",
"id" : 12345
} ],
"rowCount" : 12345
},
"manufacturingPlace" : "...",
"startDateMs" : 12345,
"orderCnr" : "...",
"documents" : {
"rowCount" : 12345,
"entries" : [ {
"name" : "...",
"mimeType" : "...",
"content" : "...",
"documentType" : "...",
"description" : "..."
}, {
"name" : "...",
"mimeType" : "...",
"content" : "...",
"documentType" : "...",
"description" : "..."
} ]
},
"formattedDeliveryAddress" : "...",
"id" : 12345
}