Skip to content

Commit

Permalink
Cambiando due_datea posting_date
Browse files Browse the repository at this point in the history
Esto para que la partida contable del impuesto especial sea en el mismo periodo que el IVA y la factura.  Tanto para venta como para compra.
  • Loading branch information
Tropicalrambler authored Jan 16, 2019
1 parent fa50646 commit 9b7240a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions factura_electronica/special_tax.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def add_gl_entry_other_special_tax(invoice_name, accounts, invoice_type):
# Obtiene datos de Sales Invoice
data_gl_entry = frappe.db.get_values('Sales Invoice', filters={'name': invoice_name},
fieldname=['company', 'customer_name', 'party_account_currency',
'due_date', 'total', 'shs_total_otros_imp_incl'], as_dict=1)
'posting_date', 'total', 'shs_total_otros_imp_incl'], as_dict=1)
# Obtiene el valor de iva utilizado en la factura de venta normalmente 12
tax_rate = frappe.db.get_values('Sales Taxes and Charges', filters={'parent': invoice_name},
fieldname=['rate', 'account_head'], as_dict=1)
Expand All @@ -112,7 +112,7 @@ def add_gl_entry_other_special_tax(invoice_name, accounts, invoice_type):
# Obtiene datos de Purchase Invoice
data_gl_entry = frappe.db.get_values('Purchase Invoice', filters={'name': invoice_name},
fieldname=['company', 'supplier_name', 'party_account_currency',
'due_date', 'total', 'shs_pi_total_otros_imp_incl'], as_dict=1)
'posting_date', 'total', 'shs_pi_total_otros_imp_incl'], as_dict=1)
# Obtiene el valor de iva utilizado en la factura normalmente 12
tax_rate = frappe.db.get_values('Purchase Taxes and Charges', filters={'parent': invoice_name},
fieldname=['rate', 'account_head', 'cost_center'], as_dict=1)
Expand Down Expand Up @@ -145,7 +145,7 @@ def add_gl_entry_other_special_tax(invoice_name, accounts, invoice_type):
new_gl_entry_tax.cost_center = tax_rate[0]['cost_center']

new_gl_entry_tax.is_opening = 'No'
new_gl_entry_tax.posting_date = data_gl_entry[0]['due_date']
new_gl_entry_tax.posting_date = data_gl_entry[0]['posting_date']

new_gl_entry_tax.save()
except:
Expand Down

0 comments on commit 9b7240a

Please sign in to comment.