updated e-invoice response controller - added inherit from base class

This commit is contained in:
olegphenomenon 2022-02-14 10:52:20 +02:00
parent d0236be063
commit 8201e1e0d0
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
class EisBilling::EInvoiceResponseController < ApplicationController
class EisBilling::EInvoiceResponseController < EisBilling::BaseController
def update
invoice_number = params[:invoice_number]
date = params[:date]

View file

@ -12,8 +12,8 @@ module EisBilling
invoice_subtotal: invoice.subtotal,
buyer_billing_email: invoice.buyer.billing_email,
buyer_e_invoice_iban: invoice.buyer.e_invoice_iban,
seller_country: invoice.seller_country,
buyer_country: invoice.buyer_country,
seller_country_code: invoice.seller_country_code,
buyer_country_code: invoice.buyer_country_code,
payable: payable,
initiator: INITIATOR
}