mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# API Controller for exporting accounting data to external accounting softwares
|
|
class API::AccountingExportsController < API::APIController
|
|
before_action :authenticate_user!
|
|
|
|
def export
|
|
authorize :accounting_export
|
|
|
|
export = Export.where(category: 'accounting', export_type: params[:type], key: params[:key])
|
|
.where(extension: params[:extension], query: params[:query])
|
|
.where('created_at > ?', Invoice.maximum('updated_at'))
|
|
.last
|
|
if export.nil? || !FileTest.exist?(export.file)
|
|
@export = Export.new(
|
|
category: 'accounting',
|
|
export_type: params[:type],
|
|
user: current_user,
|
|
extension: params[:extension],
|
|
query: params[:query],
|
|
key: params[:key]
|
|
)
|
|
if @export.save
|
|
render json: { export_id: @export.id }, status: :ok
|
|
else
|
|
render json: @export.errors, status: :unprocessable_entity
|
|
end
|
|
else
|
|
send_file Rails.root.join(export.file),
|
|
type: 'text/csv',
|
|
disposition: 'attachment'
|
|
end
|
|
end
|
|
end
|