Removed total

This commit is contained in:
Joaquin 2025-06-02 15:59:34 +02:00
parent 0fdfe651a2
commit cf5eaac593
4 changed files with 0 additions and 15 deletions

View file

@ -87,7 +87,6 @@ select
i.total_tax_in_gbp as header_total_tax_in_gbp, i.total_tax_in_gbp as header_total_tax_in_gbp,
i.total_due_local_curr as header_total_due_local_curr, i.total_due_local_curr as header_total_due_local_curr,
i.total_due_in_gbp as header_total_due_in_gbp, i.total_due_in_gbp as header_total_due_in_gbp,
od.total_outstanding_in_gbp,
od.outstanding_type as outstanding_type, od.outstanding_type as outstanding_type,
c.id_contact as id_contact, c.id_contact as id_contact,
@ -164,7 +163,6 @@ select
cn.total_tax_in_gbp * -1, cn.total_tax_in_gbp * -1,
cn.remaining_credit_local_curr * -1, cn.remaining_credit_local_curr * -1,
cn.remaining_credit_in_gbp * -1, cn.remaining_credit_in_gbp * -1,
od.total_outstanding_in_gbp,
od.outstanding_type as outstanding_type, od.outstanding_type as outstanding_type,
c.id_contact, c.id_contact,

View file

@ -322,12 +322,6 @@ models:
data_type: numeric data_type: numeric
description: "" description: ""
- name: total_outstanding_in_gbp
data_type: numeric
description: |
The total amount outstanding in GBP, which is the sum of all authorized documents
or due amounts for the deal account. This includes both invoices and credit notes.
- name: outstanding_type - name: outstanding_type
data_type: character varying data_type: character varying
description: | description: |

View file

@ -1426,12 +1426,6 @@ models:
data_type: numeric data_type: numeric
description: "" description: ""
- name: total_outstanding_in_gbp
data_type: numeric
description: |
The total amount outstanding in GBP, which is the sum of all authorized documents
or due amounts for the deal account. This includes both invoices and credit notes.
- name: outstanding_type - name: outstanding_type
data_type: character varying data_type: character varying
description: | description: |

View file

@ -40,7 +40,6 @@ select
sdm.header_total_tax_in_gbp as header_total_tax_in_gbp, sdm.header_total_tax_in_gbp as header_total_tax_in_gbp,
sdm.header_total_due_local_curr as header_total_due_local_curr, sdm.header_total_due_local_curr as header_total_due_local_curr,
sdm.header_total_due_in_gbp as header_total_due_in_gbp, sdm.header_total_due_in_gbp as header_total_due_in_gbp,
sdm.total_outstanding_in_gbp as total_outstanding_in_gbp,
sdm.outstanding_type as outstanding_type, sdm.outstanding_type as outstanding_type,
sdm.id_contact as id_contact, sdm.id_contact as id_contact,
sdm.id_deal as id_deal, sdm.id_deal as id_deal,