diff --git a/css/main.css b/css/main.css index a15b328eff5c488cb0f95a91d0f2d8cf6692d02c..073c052685fc7c652a49543f273f2402376a0373 100644 --- a/css/main.css +++ b/css/main.css @@ -97,6 +97,13 @@ sib-display [name="invoice-header"], [name="freelance-invoice-header"] { justify-content: space-between; } +/* Totals section (#invoice-list and #show-invoice) */ + +#invoice-list [name="ht-total"], #invoice-list [name="tva-total"], #invoice-list [name="ttc-total"], #show-invoice [name="ht-total"], #show-invoice [name="tva-total"], #show-invoice [name="ttc-total"] { + display: flex; + justify-content: space-between; +} + /* Tasks list =========================== */ .tasks-list { width: 100%; @@ -107,9 +114,7 @@ sib-display [name="invoice-header"], [name="freelance-invoice-header"] { justify-content: space-between; } -/* Invoice show ========================== */ - -#show-invoice [name="ht-total"], #show-invoice [name="tva-total"], #show-invoice [name="ttc-total"] { - display: flex; - justify-content: space-between; +.invoices_list [name="invoice-totals"] { + border: 1px solid #ccc; + margin-bottom: 0.5em; } \ No newline at end of file diff --git a/index.html b/index.html index ef665511bfaf3dbbd626e973759f4308f140123a..3a6e3a67ae5ffa7a06a5a7de62b383796168bb75 100644 --- a/index.html +++ b/index.html @@ -81,7 +81,7 @@ data-fields="title, identifier, creationDate, htAmount, tvaRate" next="invoice-list" ></sib-form> - + <sib-form id="edit-invoice" data-fields="title, identifier, creationDate, htAmount, tvaRate" @@ -92,14 +92,24 @@ <sib-display id="invoice-list" data-src="http://invoicing-module.happy-dev.fr/invoices/client-invoices/" - data-fields="invoice-section, batches" + data-fields="invoice-section, batches, invoice-totals" set-invoice-section="invoice-main, invoice-aside" set-invoice-main="invoice-header, invoice-footer" set-invoice-aside="state" set-invoice-header="title, identifier" - set-invoice-footer="creationDate, htAmount" + set-invoice-footer="invoicingDate, htAmount" + set-invoice-totals="totals-header, ht-total, tva-total, ttc-total" + value-totals-header="TOTAL DE LA FACTURE" + set-ht-total="ht-label, htAmount" + value-ht-label="Total HT" + set-tva-total="tvaRate, tvaAmount" + set-ttc-total="ttc-label, ttcAmount" + value-ttc-label="Total TTC" + template-batches="batches-template" template-htAmount="money-template" - template-batches="batches-template" + template-tvaAmount="money-template" + template-ttcAmount="money-template" + template-tvaRate="tva-rate-template" ></sib-display> <sib-display @@ -112,8 +122,8 @@ set-invoice-totals="ht-total, tva-total, ttc-total" set-ht-total="ht-label, htAmount" value-ht-label="Total HT" - set-tva-total="tvaRate, htAmount" - set-ttc-total="ttc-label, htAmount" + set-tva-total="tvaRate, tvaAmount" + set-ttc-total="ttc-label, ttcAmount" value-ttc-label="Total TTC" set-invoice-footer="hd-address, hd-legal" value-hd-address="Happy Dev adresse / TODO" @@ -122,6 +132,8 @@ template-invoicingDate="date-template" template-batches="batches-template" template-htAmount="money-template" + template-tvaAmount="money-template" + template-ttcAmount="money-template" template-tvaRate="tva-rate-template" bind-resources ></sib-display>