Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.languageServer": "None"
}
2 changes: 1 addition & 1 deletion l10n_ar_account_withholding_ratio/models/account_tax.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from odoo import _, api, fields, models
from odoo.exceptions import ValidationError


"prueba"
class AccountTax(models.Model):
_inherit = "account.tax"

Expand Down
2 changes: 1 addition & 1 deletion l10n_ar_purchase/models/purchase_order.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from odoo import models


"prueba 2"
class PurchaseOrder(models.Model):
_inherit = "purchase.order"

Expand Down
4 changes: 2 additions & 2 deletions l10n_ar_tax_backward_compatibility/models/account_payment.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from odoo import fields, models


"prueba 3"
class AccountPayment(models.Model):
_inherit = "account.payment"

is_backward_withholding_payment = fields.Boolean()
is_backward_withholding_payments = fields.Boolean()

# TODO: Este metodo modifica el pago para que utilize el impuesto definido en el regime_tax_id
# y cree el asiento al estilo 18
Expand Down
Loading