Articles facturés au poids

This commit is contained in:
2025-08-29 22:12:55 +02:00
parent 5124b2c3b2
commit ac53ff9e47
3 changed files with 1107 additions and 1103 deletions

View File

@@ -15,3 +15,9 @@ Article : code, article, famille_code, factpoids, prix
Ticket : id, date_ticket, adherent_id, mode_rglt
Ligne : id, ticket_id, article_code, prix_unitaire, quantite
```
### Export
```shell
psql -h 127.0.0.1 -d sql -U sql -c "\copy (select * from ligne order by id) to './ligne.csv' with csv header"
```