Adjust look and feel for data export
|
@ -5,11 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
- New component added to export orders in CSV format. Allows users to download orders.
|
- New component added to export orders in CSV format. Allows users to download orders.
|
||||||
|
|
||||||
## [1.3.1] - 2022-10-08
|
## [1.3.1] - 2022-10-08
|
||||||
|
|
||||||
## Fixed
|
### Fixed
|
||||||
|
|
||||||
- Bug [#7](https://gitlab.com/pitmutt/zgo/-/issues/7) for saving a viewing key.
|
- Bug [#7](https://gitlab.com/pitmutt/zgo/-/issues/7) for saving a viewing key.
|
||||||
|
|
||||||
|
|
BIN
clouds.png
Before Width: | Height: | Size: 267 KiB |
BIN
img_client.png
Before Width: | Height: | Size: 28 KiB |
BIN
img_cloud.png
Before Width: | Height: | Size: 12 KiB |
BIN
img_invoice.png
Before Width: | Height: | Size: 14 KiB |
BIN
img_mail.png
Before Width: | Height: | Size: 22 KiB |
BIN
mail_icons.png
Before Width: | Height: | Size: 182 KiB |
|
@ -1,41 +0,0 @@
|
||||||
{
|
|
||||||
"Invoice": { "InvoiceID": "96df0dff-43ec-4899-a7d9-e9d63ef12b19" },
|
|
||||||
"Account": { "Code": "001" },
|
|
||||||
"Date": "2022-08-25",
|
|
||||||
"Amount": 32.06
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
{
|
|
||||||
"Invoice": { "InvoiceNumber": "INV-0041" },
|
|
||||||
"Account": { "Code": "001" },
|
|
||||||
"Date": "2022-08-25",
|
|
||||||
"Amount": 32.06
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
POST -> https://api.xero.com/api.xro/2.0/Payments
|
|
||||||
|
|
||||||
Authorization Bearer ey****
|
|
||||||
Xero-Tenant-Id 5ae23193-e4b4-4001-99e9-b98634d6040e
|
|
||||||
Accept application/json
|
|
||||||
Content-Type application/json
|
|
||||||
|
|
||||||
|
|
||||||
Payload
|
|
||||||
|
|
||||||
{
|
|
||||||
"Payments": [
|
|
||||||
{
|
|
||||||
"Invoice": {
|
|
||||||
"LineItems": [],
|
|
||||||
"InvoiceID": "00000000-0000-0000-0000-000000000000"
|
|
||||||
},
|
|
||||||
"Account": {
|
|
||||||
"Code": "970"
|
|
||||||
},
|
|
||||||
"Date": "2019-03-12",
|
|
||||||
"Amount": 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
BIN
people.png
Before Width: | Height: | Size: 768 KiB |
BIN
pmtflow.odg
|
@ -8,7 +8,6 @@
|
||||||
padding-bottom: 20px;
|
padding-bottom: 20px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: indianred;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<br>
|
<br>
|
||||||
You have no orders created.
|
You have no orders created.
|
||||||
<br>
|
<br>
|
||||||
Nothig to do
|
Nothing to do.
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
|
@ -45,12 +45,8 @@
|
||||||
Close
|
Close
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<div class="downloadbtn"
|
<a mat-raised-button *ngIf="checkReady()" color="primary" [href]="fileUrl"
|
||||||
*ngIf="checkReady()">
|
|
||||||
<a [href]="fileUrl"
|
|
||||||
class="downloadbtntxt"
|
|
||||||
download="orders.csv">Download</a>
|
download="orders.csv">Download</a>
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div style="height: 20px;
|
<div style="height: 20px;
|
||||||
|
|