-
-
Notifications
You must be signed in to change notification settings - Fork 320
[ADD] l10n_it_edi_extension #4858
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ADD] l10n_it_edi_extension #4858
Conversation
/ocabot migration l10n_it_fatturapa |
/ocabot migration l10n_it_fatturapa_in |
/ocabot migration l10n_it_fatturapa_out |
/ocabot migration l10n_it_fiscal_payment_term |
/ocabot migration l10n_it_fiscalcode |
/ocabot migration l10n_it_ipa |
/ocabot migration l10n_it_pec |
/ocabot migration l10n_it_rea |
/ocabot migration l10n_it_vat_payability |
a046f6b
to
5d0b270
Compare
5d0b270
to
f852f42
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Secondo me OK
@Borruso @odooNextev cosa dite?
per me no |
cioè? |
vorrei continuare sulla mia |
@monen17 mi aspetterei di vedere il campo l10n_edi_it_create_partner qui ma non è così. Mi sfugge semplicemente qualcosa o c'è un problema nella visualizzazione? ![]() Nota: lo screenshot è stato fatto a partire da http://oca-l10n-italy-18-0-pr4858-f852f423dfd6.runboat.odoo-community.org |
Grazie della segnalazione! |
4fbad86
to
24de1ba
Compare
l10n_it_edi_extension/__init__.py
Outdated
[ | ||
( | ||
"account.move.line", | ||
"ftpa_line_number", | ||
), | ||
( | ||
"account.move.line", | ||
"sequence", | ||
), | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
questa rinomina collide con il modulo account
, nel senso che sequence
già esiste perché creato da account e quando tenta di rinominarlo va in errore. Questo è quello che sto vedendo su un cliente che sto migrando alla 18.0
l10n_it_edi_extension/__init__.py
Outdated
[ | ||
( | ||
"res.company", | ||
"fatturapa_tax_representative", | ||
), | ||
( | ||
"res.company", | ||
"l10n_it_tax_representative_partner_id", | ||
), | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
l10n_it_tax_representative_partner_id
esiste già perché definito in l10n_it_edi
https://github.com/odoo/odoo/blob/18.0/addons/l10n_it_edi/models/res_company.py#L74
, per cui anche qui va in errore la rinomina
l10n_it_edi_extension/__init__.py
Outdated
""" | ||
openupgrade.logged_query(env.cr, query) | ||
|
||
env.cr.execute("SELECT * FROM fatturapa_activity_progress LIMIT 1") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
se lo scopo di SELECT * FROM fatturapa_activity_progress LIMIT 1
è di verificare se ci sia almeno una riga non credo sia necessario dato che in quel caso la SELECT non ritornerebbe nessun record.
D'altra parte in un caso reale di migrazione mi ha dato problemi perché fatturapa_activity_progress
non è detto che esista come tabella, per cui ho modificato la condizione così:
if table_exists(env.cr, 'fatturapa_activity_progress'):
[...]
Stesso discorso per fatturapa_summary_data
poco più sotto
It was removed when migrating this wizard to 18.0, when only domain had to be removed because no more supported in onchange. Support has been removed in odoo/odoo@024fadf.
Co-authored-by: Simone Rubino <[email protected]> Co-authored-by: LorenzoC0 <[email protected]>
There is no need to update a partner that has just been created
Also align its configuration in the README to what it actually does
7816697
to
d2c7811
Compare
merge? |
|
||
1. Anteprima e Download del file XML: | ||
|
||
- Aggiunge un pulsante ("Preview XML") direttamente nel form della fattura. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Va modificato il formato di stampa.
stampa attuale:


- Manca la possibilità di scelta formato anteprima tra assosoftware -fattura ordinaria - sud tirolo (nella 16 la selezione era in Impostazioni>Contabilità>Fatture elettroniche


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Va modificato il formato di stampa
fixing with monen17#4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Manca la possibilità di scelta formato anteprima tra assosoftware -fattura ordinaria - sud tirolo
È stato deciso di lasciare solo assosoftware al momento
|
||
- Aggiunge un'opzione per creare i contatti presenti in una fattura elettronica se non esistono in anagrafica tra cui: | ||
- `<CessionarioCommittente>` e `<CedentePrestatore>` invece di scrivere solamente i dettagli nel chatter. | ||
- Creazione di altri contatti presenti in una fattura elettronica se non esistono in anagrafica tra cui: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non sono campi che serve importare ma esportare.
Manca la possibilità di abbinarli all'anagrafica di clienti e fornitori.
Rimarrebbero quindi dei contatti a se.
ES mi trovo salvato il contatto TEAMSYSTEM perchè il mio fornitore utilizza quel gestionale
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
La creazione di Cedente Prestatore funziona correttamente
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Io eliminerei questa funzionalità, sono contatti che non mi servono nel caso dei fornitori
Rimuovendo con monen17#4
- `<CessionarioCommittente>` e `<CedentePrestatore>` invece di scrivere solamente i dettagli nel chatter. | ||
- Creazione di altri contatti presenti in una fattura elettronica se non esistono in anagrafica tra cui: | ||
- `<RappresentanteFiscale>` | ||
- `<TerzoIntermediarioOSoggettoEmittente>` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
non si può aggiungere questa nuova funzionalità in una pr successiva?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non è nuova, nella 16 funzionava correttamente
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rimosso con monen17#4 , lo metteremo in modulo dedicato, vedi https://www.odoo-italia.org/web#id=945&cids=1&menu_id=206&action=328&active_id=18&model=project.task&view_type=form
- Creation of article codes during import. | ||
These codes are used to uniquely identify products/services according to different coding standards. | ||
In the XML file, these codes are in the `<CodiceArticolo>` node which can contain: | ||
- `<CodiceTipo>`: identifies the type of coding used | ||
- `<CodiceValore>`: the actual code value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Da rendere facoltativa, o limitarla ad alcuni fornitori a scelta.
Il rischio è di trovarsi l'anagrafica prodotti popolata da prodotti che acquisto solo 1 volta (es. se compro spesso da amazon)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
L'importazione non mi risulta crei nuovi prodotti, crea solo l10n_it_edi.article_code
, che trovi in "E-invoice details"
…ttoEmittente to be moved to dedicated module
/ocabot merge nobump |
This PR looks fantastic, let's merge it! |
Congratulations, your PR was merged at 38c3139. Thanks a lot for contributing to OCA. ❤️ |
Sostituisce #4411.