https://github.com/fshangala/myshop
https://github.com/fshangala/myshop
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fshangala/myshop
- Owner: fshangala
- Created: 2024-10-01T08:53:31.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T12:54:43.000Z (7 months ago)
- Last Synced: 2024-10-21T14:59:23.830Z (7 months ago)
- Language: Dart
- Size: 290 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# myshop
Generate quotations.# Invoicing
## Invoices page
- list of invoices
- create invoice modal
- invoice modal
- - add invoice item
- - update invoice item
- - delete invoice item# Data Types
## Invoices
```
Lis invoices
```
## Invoice
```
String invoiceNumber.customerName
String invoiceNumber.date
String invoiceNumber.paymentMethod
```
## InvoiceItems
```
List invoiceNumber.invoiceItems
```
## InvoiceItem
```
String invoiceNumber.invoiceItemHash.quantity
String invoiceNumber.invoiceItemHash.description
String invoiceNumber.invoiceItemHash.unitPrice
```