mirror of
https://github.com/internetee/registry.git
synced 2025-07-30 14:36:22 +02:00
82 lines
2.1 KiB
Ruby
82 lines
2.1 KiB
Ruby
module EisBilling
|
|
class InvoicesController < BaseController
|
|
TYPE = 'PaymentOrders::EveryPay'.freeze
|
|
PAID = 'paid'.freeze
|
|
CANCELLED = 'cancelled'.freeze
|
|
ISSUED = 'unpaid'.freeze
|
|
FAILED = 'failed'.freeze
|
|
|
|
before_action :load_invoice, only: :update
|
|
|
|
def update
|
|
if @invoice.update(modified_params) && payment_orders_handler
|
|
|
|
render json: {
|
|
message: 'Invoice data was successfully updated',
|
|
}, status: :ok
|
|
else
|
|
render json: {
|
|
error: {
|
|
message: @invoice.errors.full_messages
|
|
}
|
|
}, status: :unprocessable_entity
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def payment_orders_handler
|
|
return false if @invoice.cancelled? && status.paid? || @invoice.cancelled? && status.issued?
|
|
return false if @invoice.paid? && (status.failed? || status.cancelled?)
|
|
|
|
case
|
|
when @invoice.paid? && status.paid?
|
|
true
|
|
when @invoice.unpaid? && status.issued?
|
|
true
|
|
when @invoice.cancelled? && (status.cancelled? || status.failed?)
|
|
true
|
|
when status.issued?
|
|
@invoice.cancel_manualy
|
|
when status.paid?
|
|
@invoice.autobind_manually
|
|
else
|
|
@invoice.cancel
|
|
end
|
|
end
|
|
|
|
def status
|
|
status = case params[:status]
|
|
when 'paid'
|
|
'paid'
|
|
when 'cancelled'
|
|
'cancelled'
|
|
when 'failed'
|
|
'failed'
|
|
else
|
|
'unpaid'
|
|
end
|
|
|
|
Struct.new(:paid?, :cancelled?, :issued?, :failed?)
|
|
.new(status == PAID, status == CANCELLED, status == ISSUED, status == FAILED)
|
|
end
|
|
|
|
def load_invoice
|
|
@invoice = Invoice.find_by(number: params[:invoice][:invoice_number])
|
|
return if @invoice.present?
|
|
|
|
render json: {
|
|
error: {
|
|
message: "Invoice with #{params[:invoice][:invoice_number]} number not found",
|
|
}
|
|
}, status: :not_found and return
|
|
end
|
|
|
|
def modified_params
|
|
{
|
|
in_directo: params[:invoice][:in_directo],
|
|
e_invoice_sent_at: params[:invoice][:sent_at_omniva],
|
|
}
|
|
end
|
|
end
|
|
end
|