1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/controllers/api/wallet_controller.rb

41 lines
1.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
# API Controller for resources of type Wallet
2016-07-18 18:16:54 +02:00
class API::WalletController < API::ApiController
before_action :authenticate_user!
def by_user
invoicing_profile = InvoicingProfile.find_by(user_id: params[:user_id])
@wallet = Wallet.find_by(invoicing_profile_id: invoicing_profile.id)
authorize @wallet
2016-07-18 18:16:54 +02:00
render :show
end
2016-07-05 13:20:25 +02:00
def transactions
@wallet = Wallet.find(params[:id])
authorize @wallet
2022-12-01 15:43:16 +01:00
@wallet_transactions = @wallet.wallet_transactions.includes(:invoice, :invoicing_profile, :payment_schedule).order(created_at: :desc)
2016-07-05 13:20:25 +02:00
end
def credit
return head :unprocessable_entity unless Setting.get('wallet_module')
2020-02-12 18:15:44 +01:00
@wallet = Wallet.find(credit_params[:id])
authorize @wallet
service = WalletService.new(user: current_user, wallet: @wallet)
2022-12-12 16:25:29 +01:00
transaction = service.credit(credit_params[:amount].to_f)
if transaction
service.create_avoir(transaction, credit_params[:avoir_date], credit_params[:avoir_description]) if credit_params[:avoir]
render :show
else
head :unprocessable_entity
end
end
private
2019-01-07 12:48:22 +01:00
def credit_params
params.permit(:id, :amount, :avoir, :avoir_date, :avoir_description)
end
2016-07-18 18:16:54 +02:00
end