build v0.8.23 - fix date in product lines table

This commit is contained in:
Frede Hundewadt 2022-06-24 14:38:24 +02:00
parent 73c2b6da7e
commit aa9cd682a1
3 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@
{ {
<tr class="align-content-center"> <tr class="align-content-center">
<td> <td>
@line.DeliverDate @line.DeliveryDate
</td> </td>
<td> <td>
@line.Quantity @line.Quantity

View file

@ -18,12 +18,12 @@
}, },
"appInfo": { "appInfo": {
"name": "Wonky Client", "name": "Wonky Client",
"version": "0.8.22", "version": "0.8.23",
"isBeta": true, "isBeta": true,
"image": "grumpy-coder.png" "image": "grumpy-coder.png"
}, },
"apiConfig": { "apiConfig": {
"baseAddress": "https://staging.innotec.dk", "baseAddress": "https://dev.innotec.dk",
"tokenPath": "token", "tokenPath": "token",
"userInfo": "api/auth/userinfo", "userInfo": "api/auth/userinfo",
"companyEndpoint": "api/v2/crm/companies", "companyEndpoint": "api/v2/crm/companies",

View file

@ -2,7 +2,7 @@ namespace Wonky.Entity.DTO;
public class ProductHistoryView public class ProductHistoryView
{ {
public string DeliverDate { get; set; } = ""; public string DeliveryDate { get; set; } = "";
public string Description { get; set; } = ""; public string Description { get; set; } = "";
public string Sku { get; set; } = ""; public string Sku { get; set; } = "";
public int Quantity { get; set; } public int Quantity { get; set; }