ba_spree_bank_transfer 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.rspec +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +6 -0
- data/Gemfile +19 -0
- data/LICENSE +26 -0
- data/README.md +110 -0
- data/Rakefile +15 -0
- data/Versionfile +7 -0
- data/app/assets/images/payment_details.png +0 -0
- data/app/assets/javascripts/spree/backend/spree_bank_transfer.js +0 -0
- data/app/assets/javascripts/spree/frontend/spree_bank_transfer.js.erb +37 -0
- data/app/assets/stylesheets/spree/backend/spree_bank_transfer.css +0 -0
- data/app/assets/stylesheets/spree/frontend/spree_bank_transfer.css +9 -0
- data/app/controllers/spree/admin/banks_controller.rb +13 -0
- data/app/controllers/spree/content_controller_decorator.rb +8 -0
- data/app/controllers/spree/payments_controller.rb +35 -0
- data/app/helpers/.DS_Store +0 -0
- data/app/helpers/spree/.DS_Store +0 -0
- data/app/helpers/spree/admin/banks_helper.rb +19 -0
- data/app/models/.DS_Store +0 -0
- data/app/models/spree/.DS_Store +0 -0
- data/app/models/spree/bank.rb +8 -0
- data/app/models/spree/order_decorator.rb +3 -0
- data/app/models/spree/payment_decorator.rb +40 -0
- data/app/models/spree/payment_method/bank_transfer.rb +48 -0
- data/app/overrides/add_bank_details_form_to_order_show.rb +6 -0
- data/app/overrides/add_bank_transfer_instructions_link_to_payment.rb +10 -0
- data/app/overrides/add_payment_reference_details.rb +32 -0
- data/app/overrides/filter_results_by_transaction_reference_no.rb +17 -0
- data/app/views/.DS_Store +0 -0
- data/app/views/spree/admin/banks/_form.html.erb +26 -0
- data/app/views/spree/admin/banks/edit.html.erb +14 -0
- data/app/views/spree/admin/banks/index.html.erb +48 -0
- data/app/views/spree/admin/banks/new.html.erb +17 -0
- data/app/views/spree/admin/banks/toggle_activation.js.erb +10 -0
- data/app/views/spree/admin/payments/source_forms/_banktransfer.html.erb +0 -0
- data/app/views/spree/admin/payments/source_views/_banktransfer.html.erb +0 -0
- data/app/views/spree/checkout/.DS_Store +0 -0
- data/app/views/spree/checkout/payment/_banktransfer.html.erb +16 -0
- data/app/views/spree/content/bank_transfer.html.erb +38 -0
- data/app/views/spree/orders/_bank_transfer_form.html.erb +40 -0
- data/ba_spree_bank_transfer.gemspec +39 -0
- data/bin/rails +6 -0
- data/config/locales/en.yml +25 -0
- data/config/locales/it.yml +24 -0
- data/config/locales/ja.yml +25 -0
- data/config/locales/pl.yml +24 -0
- data/config/locales/pt.yml +24 -0
- data/config/locales/th.yml +27 -0
- data/config/routes.rb +10 -0
- data/db/migrate/20130717071443_create_table_bank.rb +11 -0
- data/db/migrate/20130717125312_add_index_on_active_on_spree_bank.rb +5 -0
- data/db/migrate/20140519125402_add_bank_name_account_number_and_transaction_reference_number_to_payments.rb +7 -0
- data/db/migrate/20140530055151_add_column_deposited_on_to_spree_payments.rb +5 -0
- data/db/migrate/20140612131656_add_col_additional_details_to_banks.rb +5 -0
- data/lib/ba_spree_bank_transfer.rb +6 -0
- data/lib/generators/spree_bank_transfer/.DS_Store +0 -0
- data/lib/generators/spree_bank_transfer/install/install_generator.rb +30 -0
- data/lib/payment_details.rb +21 -0
- data/lib/spree_bank_transfer/engine.rb +40 -0
- data/lib/spree_bank_transfer/version.rb +3 -0
- data/spec/controllers/spree/admin/banks_controller_spec.rb +82 -0
- data/spec/controllers/spree/content_controller_spec.rb +16 -0
- data/spec/controllers/spree/payments_controller_spec.rb +98 -0
- data/spec/lib/payment_details_spec.rb +84 -0
- data/spec/models/spree/bank_spec.rb +19 -0
- data/spec/models/spree/payment_method/bank_transfer_spec.rb +114 -0
- data/spec/models/spree/payment_spec.rb +81 -0
- data/spec/models/spree/user_spec.rb +5 -0
- data/spec/spec_helper.rb +98 -0
- metadata +321 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d394fa151a642a15400acd2c8d756a3150d6adb95471c5f852563c1363739fc7
|
4
|
+
data.tar.gz: 3428007a4a548aeb27c36cbe0242bac5a16d6efb8c0072f01fa6e42f4a4a1219
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d40c0c552f0c8cf76854b9f3f3cc9bf28ea9566197103e5a2c3ba62962ad92ffd35b1c1e276b089b53915cebeb4717a9d625e48e206ee409a6aca0e6ea052fe1
|
7
|
+
data.tar.gz: 68563e5f073e51c3c23ebdd9b4dcb34635e2b141c01bc23e5634152fb4ab76c5d4995ad030b0bd61793f0af0f2c3a91e23e29efe260fdb0cff9b85db50a8fa97
|
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
3.1.4
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Provides basic authentication functionality for testing parts of your engine
|
4
|
+
spree_version = 'master'
|
5
|
+
gem 'spree', github: 'spree/spree', branch: spree_version
|
6
|
+
gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: spree_version
|
7
|
+
|
8
|
+
gem 'coffee-rails', '~> 5.0.0'
|
9
|
+
gem "sass-rails", '~> 6.0.0'
|
10
|
+
|
11
|
+
group :test do
|
12
|
+
gem 'minitest'
|
13
|
+
gem 'rspec-rails', '~> 4.0.0'
|
14
|
+
gem 'shoulda-matchers', '~> 4.3.0'
|
15
|
+
gem 'rspec-activemodel-mocks', '~> 1.1.0'
|
16
|
+
gem 'simplecov', require: false
|
17
|
+
gem 'database_cleaner'
|
18
|
+
end
|
19
|
+
gemspec
|
data/LICENSE
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
Copyright (c) 2014 Vinsol
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without modification,
|
5
|
+
are permitted provided that the following conditions are met:
|
6
|
+
|
7
|
+
* Redistributions of source code must retain the above copyright notice,
|
8
|
+
this list of conditions and the following disclaimer.
|
9
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
10
|
+
this list of conditions and the following disclaimer in the documentation
|
11
|
+
and/or other materials provided with the distribution.
|
12
|
+
* Neither the name Spree nor the names of its contributors may be used to
|
13
|
+
endorse or promote products derived from this software without specific
|
14
|
+
prior written permission.
|
15
|
+
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
20
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
21
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
22
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
23
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
24
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
25
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
26
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
# ba_spree_bank_transfer
|
2
|
+
|
3
|
+
This is a fork of [spree_bank_transfer](https://github.com/vinsol-spree-contrib/spree_bank_transfer) with additional features and improvements.
|
4
|
+
|
5
|
+
ba_spree_bank_transfer is an extension which allows adding a new payment method "Bank Transfer" to existing spree e-commerce store. With the help of this payment method customer can place an order online and pay by transferring money directly into merchant's Bank account. This extension allow merchants to provide their bank account(s) details which in turn is used by customers to order and pay using this method. This extension also facilitate admin to Activate/Deactivate attached Bank accounts. Admin can also filter orders on the basis of the available payment transaction reference numbers with this extension.
|
6
|
+
|
7
|
+
## Features
|
8
|
+
|
9
|
+
* Supports Ruby 3.1
|
10
|
+
* Supports Rails 7.1
|
11
|
+
* Supports Spree 4.10
|
12
|
+
* Japanese translations included
|
13
|
+
* Actively maintained with contributions back to the original project
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
|
17
|
+
1. Add ba_spree_bank_transfer to your Gemfile:
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
gem 'ba_spree_bank_transfer'
|
21
|
+
```
|
22
|
+
|
23
|
+
2. Install the gem using Bundler:
|
24
|
+
|
25
|
+
```shell
|
26
|
+
bundle install
|
27
|
+
```
|
28
|
+
|
29
|
+
3. Copy & run migrations:
|
30
|
+
|
31
|
+
```shell
|
32
|
+
bundle exec rails g ba_spree_bank_transfer:install
|
33
|
+
```
|
34
|
+
|
35
|
+
## How it works
|
36
|
+
|
37
|
+
* To add Bank Transfer feature, Admin needs to add "Bank Transfer" payment method:
|
38
|
+
|
39
|
+
Configuration -> Payment Methods -> New payment Method
|
40
|
+
|
41
|
+
You need to select "Spree::PaymentMethod::BankTransfer" as the Provider
|
42
|
+
|
43
|
+
* Add bank account information from "Banks" link on "Configuration" page.
|
44
|
+
|
45
|
+
- Provide Name of the bank
|
46
|
+
- Provide Account number
|
47
|
+
- Select "Status" check box
|
48
|
+
- Provide "Additional Details", like "Branch Name", "Bank code" etc.
|
49
|
+
|
50
|
+
**Bank Account will be visible on Checkout Page only if it is Active.**
|
51
|
+
|
52
|
+
* After adding the payment method and bank details (as stated above), this payment method will be visible on Checkout page while making payment against an order.
|
53
|
+
|
54
|
+
* Active merchant **accounts number** will also be visible on Checkout page under this method.
|
55
|
+
|
56
|
+
**"How Bank Transfer Works" link will open a pop-up window. It will list all steps to complete order with this method.**
|
57
|
+
|
58
|
+
* Customer will be able to order by completing the order with this method and can transfer money equal to total order value directly into any one of the merchant's bank account.
|
59
|
+
|
60
|
+
* After customer deposits money into merchant's account, a payment transaction reference number is provided by the bank. Customer needs to add this payment reference details with the respective order by going to order detail page.
|
61
|
+
|
62
|
+
My Account -> Order no. -> Add details (Payment information column) -> Submit
|
63
|
+
|
64
|
+
* Admin will be able to see the payment reference details, added by customer, on the Order detail page.
|
65
|
+
|
66
|
+
Orders -> Order no. -> Payments
|
67
|
+
|
68
|
+
* The order will not be marked Completed until admin captures the payment as mentioned in step above.
|
69
|
+
|
70
|
+
Note: Admin needs to manually verify the transaction details from their bank account before capturing the payment
|
71
|
+
|
72
|
+
* Admin can filter orders which has payment transaction reference number by clicking the check box "only show orders with bank transfer payment reference number" on "Orders" page.
|
73
|
+
|
74
|
+
## Contributing
|
75
|
+
|
76
|
+
1. Fork the repo.
|
77
|
+
2. Clone your repo.
|
78
|
+
3. Run `bundle install`.
|
79
|
+
4. Run `bundle exec rake test_app` to create the test application in `spec/test_app`.
|
80
|
+
5. Make your changes.
|
81
|
+
6. Ensure specs pass by running `bundle exec rspec spec`.
|
82
|
+
7. Submit your pull request.
|
83
|
+
|
84
|
+
## Testing
|
85
|
+
|
86
|
+
Be sure to bundle your dependencies and then create a dummy test app for the specs to run against.
|
87
|
+
|
88
|
+
```shell
|
89
|
+
bundle
|
90
|
+
bundle exec rake test_app
|
91
|
+
bundle exec rspec spec
|
92
|
+
```
|
93
|
+
|
94
|
+
When testing your applications integration with this extension you may use its factories.
|
95
|
+
Simply add this require statement to your spec_helper:
|
96
|
+
|
97
|
+
```ruby
|
98
|
+
require 'ba_spree_bank_transfer/factories'
|
99
|
+
```
|
100
|
+
|
101
|
+
## License
|
102
|
+
|
103
|
+
This extension is available as open source under the terms of either:
|
104
|
+
* [GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later)](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
105
|
+
* [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause)
|
106
|
+
|
107
|
+
## Credits
|
108
|
+
|
109
|
+
Originally created by Vinsol.
|
110
|
+
Fork maintained by [be agile Co., Ltd.](https://be-agile.jp/).%
|
data/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'bundler'
|
2
|
+
Bundler::GemHelper.install_tasks
|
3
|
+
|
4
|
+
require 'rspec/core/rake_task'
|
5
|
+
require 'spree/testing_support/extension_rake'
|
6
|
+
|
7
|
+
RSpec::Core::RakeTask.new
|
8
|
+
|
9
|
+
task default: [:spec]
|
10
|
+
|
11
|
+
desc 'Generates a dummy app for testing'
|
12
|
+
task :test_app do
|
13
|
+
ENV['LIB_NAME'] = 'spree_bank_transfer'
|
14
|
+
Rake::Task['extension:test_app'].invoke
|
15
|
+
end
|
data/Versionfile
ADDED
Binary file
|
File without changes
|
@@ -0,0 +1,37 @@
|
|
1
|
+
//= require jquery-ui/widgets/datepicker
|
2
|
+
$(document).ready(function() {
|
3
|
+
$('#banktransfer_instructions').on("click", function(event) {
|
4
|
+
newwindow = window.open($(this).attr('href'), 'bank transfer', 'left=20,top=20,width=650,height=750,toolbar=0,resizable=0,scrollbars=1');
|
5
|
+
if (window.focus) {
|
6
|
+
newwindow.focus();
|
7
|
+
}
|
8
|
+
return false;
|
9
|
+
});
|
10
|
+
|
11
|
+
var options = $.extend(
|
12
|
+
{}, // empty object
|
13
|
+
$.datepicker.regional['<%= I18n.default_locale %>'], // I18n locale
|
14
|
+
{dateFormat: '<%= Spree.t(:js_format, scope: "date_picker", default: "yy/mm/dd") %>',
|
15
|
+
firstDay: '<%= Spree.t(:first_day, scope: "date_picker", default: "0") %>'}
|
16
|
+
);
|
17
|
+
$.datepicker.setDefaults(options);
|
18
|
+
$('[name="payment[deposited_on]"]').datepicker();
|
19
|
+
|
20
|
+
$('.add_bt_details').on("click", function() {
|
21
|
+
$(this).hide();
|
22
|
+
$('.bt_payment_form').show();
|
23
|
+
});
|
24
|
+
|
25
|
+
$('.bt_payment_form input[type="submit"]').on("click", function(event) {
|
26
|
+
var empty_fields = $('.required_field').filter(function() { return !$(this).val().trim().length }), empty_fields_names = []
|
27
|
+
if ($(empty_fields).length) {
|
28
|
+
$(empty_fields).each(function() {
|
29
|
+
empty_fields_names.push($(this).attr('field-name'));
|
30
|
+
});
|
31
|
+
|
32
|
+
alert(empty_fields_names.join(', ') + " can't be blank");
|
33
|
+
event.preventDefault();
|
34
|
+
return false;
|
35
|
+
}
|
36
|
+
});
|
37
|
+
});
|
File without changes
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module Spree
|
2
|
+
class PaymentsController < Spree::StoreController
|
3
|
+
### Uncomment for not allow continue as Guest ###
|
4
|
+
# before_action :authenticate_spree_user!
|
5
|
+
before_action :find_payment
|
6
|
+
|
7
|
+
def update
|
8
|
+
payment_details = PaymentDetails.new(@payment, payment_params)
|
9
|
+
if payment_details.save
|
10
|
+
flash[:notice] = Spree.t(:payment_successfully_updated)
|
11
|
+
else
|
12
|
+
flash[:error] = payment_details.errors.to_sentence
|
13
|
+
end
|
14
|
+
redirect_back(fallback_location: root_path)
|
15
|
+
end
|
16
|
+
|
17
|
+
def find_payment
|
18
|
+
@payment = if spree_current_user
|
19
|
+
spree_current_user.payments.find_by(number: params[:id])
|
20
|
+
else
|
21
|
+
Payment.joins(:order).find_by(number: params[:id], spree_orders: {user_id: nil})
|
22
|
+
end
|
23
|
+
|
24
|
+
unless @payment
|
25
|
+
flash[:error] = Spree.t(:payment_not_found)
|
26
|
+
redirect_back(fallback_location: root_path)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
def payment_params
|
32
|
+
params.require(:payment).permit(:deposited_on, :bank_name, :account_no, :transaction_reference_no, :receipt)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
Binary file
|
Binary file
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Spree
|
2
|
+
module Admin
|
3
|
+
module BanksHelper
|
4
|
+
|
5
|
+
def bank_status(bank)
|
6
|
+
bank.active? ? Spree.t(:active) : Spree.t(:inactive)
|
7
|
+
end
|
8
|
+
|
9
|
+
def action_to_toggle_bank_status(bank)
|
10
|
+
bank.active? ? Spree.t(:deactivate) : Spree.t(:activate)
|
11
|
+
end
|
12
|
+
|
13
|
+
def action_text_to_toggle_bank_status(bank)
|
14
|
+
bank.active? ? 'remove-sign' : 'ok-sign'
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
Binary file
|
Binary file
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Spree
|
4
|
+
module PaymentDecorator
|
5
|
+
def self.prepended(base)
|
6
|
+
base.class_eval do
|
7
|
+
attr_accessor :validate_bank_details
|
8
|
+
|
9
|
+
has_one_attached :receipt
|
10
|
+
belongs_to :order
|
11
|
+
validates :bank_name, :deposited_on, :receipt, presence: true, if: :validate_bank_details
|
12
|
+
after_save :update_order_state, if: :validate_bank_details
|
13
|
+
before_save :update_source_type, if: :validate_bank_details
|
14
|
+
|
15
|
+
scope :from_bank_transfer, lambda {
|
16
|
+
joins(:payment_method).where(spree_payment_methods: { type: 'Spree::PaymentMethod::BankTransfer' })
|
17
|
+
}
|
18
|
+
|
19
|
+
self.whitelisted_ransackable_attributes = %w[bank_name state]
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def details_submitted?
|
24
|
+
bank_name?
|
25
|
+
end
|
26
|
+
|
27
|
+
private
|
28
|
+
|
29
|
+
def update_source_type
|
30
|
+
self.source_type = 'Spree::PaymentMethod::BankTransfer'
|
31
|
+
end
|
32
|
+
|
33
|
+
def update_order_state
|
34
|
+
order.update(payment_state: :paid)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
# Register the decorator
|
40
|
+
Spree::Payment.prepend(Spree::PaymentDecorator)
|
@@ -0,0 +1,48 @@
|
|
1
|
+
module Spree
|
2
|
+
class PaymentMethod::BankTransfer < PaymentMethod
|
3
|
+
|
4
|
+
def actions
|
5
|
+
%w{capture void}
|
6
|
+
end
|
7
|
+
|
8
|
+
# Indicates whether its possible to capture the payment
|
9
|
+
def can_capture?(payment)
|
10
|
+
['checkout', 'pending'].include?(payment.state)
|
11
|
+
end
|
12
|
+
|
13
|
+
# Indicates whether its possible to void the payment.
|
14
|
+
def can_void?(payment)
|
15
|
+
payment.state != 'void'
|
16
|
+
end
|
17
|
+
|
18
|
+
def capture(*args)
|
19
|
+
simulated_successful_billing_response
|
20
|
+
end
|
21
|
+
|
22
|
+
def void(*args)
|
23
|
+
simulated_successful_billing_response
|
24
|
+
end
|
25
|
+
|
26
|
+
def source_required?
|
27
|
+
false
|
28
|
+
end
|
29
|
+
|
30
|
+
def credit(*args)
|
31
|
+
simulated_successful_billing_response
|
32
|
+
end
|
33
|
+
|
34
|
+
def public_preferences
|
35
|
+
super.merge(bank_accounts: Spree::Bank.active)
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def simulated_successful_billing_response
|
41
|
+
ActiveMerchant::Billing::Response.new(true, "", {}, {})
|
42
|
+
end
|
43
|
+
|
44
|
+
def public_preference_keys
|
45
|
+
super + [:bank_accounts]
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
Deface::Override.new(
|
2
|
+
virtual_path: 'spree/checkout/_payment',
|
3
|
+
name: 'add_bank_transfer_instructions_link_to_payment',
|
4
|
+
insert_after: "#payment-method-fields",
|
5
|
+
text: %q{
|
6
|
+
<% if @order.available_payment_methods.any? { |pm| pm.type == 'Spree::PaymentMethod::BankTransfer' } %>
|
7
|
+
<p><%= link_to Spree.t(:how_bank_transfer_works), bank_transfer_instructions_path, id: 'banktransfer_instructions', target: "_blank" %></p>
|
8
|
+
<% end %>
|
9
|
+
}
|
10
|
+
)
|
@@ -0,0 +1,32 @@
|
|
1
|
+
Deface::Override.new(
|
2
|
+
virtual_path: 'spree/admin/payments/_list',
|
3
|
+
name: 'add_payment_reference_details',
|
4
|
+
insert_after: "#payments",
|
5
|
+
text: %q{
|
6
|
+
<% if bank_transfer_payment = @order.payments.from_bank_transfer.first %>
|
7
|
+
<fieldset class="no-border-bottom" >
|
8
|
+
<legend align="center"><%= Spree.t(:payment_reference_details) %></legend>
|
9
|
+
<table class="index table">
|
10
|
+
<thead>
|
11
|
+
<tr data-hook="payments_header" class="table-active">
|
12
|
+
<th><%= Spree.t(:deposited_on) %></th>
|
13
|
+
<th><%= Spree.t(:bank_name) %></th>
|
14
|
+
<th><%= Spree.t(:receipt) %></th>
|
15
|
+
</tr>
|
16
|
+
</thead>
|
17
|
+
<tbody>
|
18
|
+
<tr>
|
19
|
+
<td class='align-center'><%= bank_transfer_payment.deposited_on %></td>
|
20
|
+
<td class='align-center'><%= bank_transfer_payment.bank_name %></td>
|
21
|
+
<td class='align-center' width="450px">
|
22
|
+
<% if bank_transfer_payment.receipt.attached? %>
|
23
|
+
<%= image_tag main_app.url_for(bank_transfer_payment.receipt), class: "w-100" %>
|
24
|
+
<% end %>
|
25
|
+
</td>
|
26
|
+
</tr>
|
27
|
+
</tbody>
|
28
|
+
</table>
|
29
|
+
</fieldset>
|
30
|
+
<% end %>
|
31
|
+
}
|
32
|
+
)
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Deface::Override.new(
|
2
|
+
virtual_path: 'spree/admin/orders/index',
|
3
|
+
name: 'filter_results_by_transaction_reference_no',
|
4
|
+
insert_before: ".form-actions",
|
5
|
+
text: %q{
|
6
|
+
<div class="row">
|
7
|
+
<div class="col-md-4">
|
8
|
+
<div class="form-group">
|
9
|
+
<%= label_tag nil, Spree.t(:payment_state) %>
|
10
|
+
<%= f.select :payments_state_eq, Spree::Payment.state_machines[:state].states.collect {|s| [s.name, s.value]},
|
11
|
+
{include_blank: true},
|
12
|
+
{class: 'select2 form-control'} %>
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
}
|
17
|
+
)
|
data/app/views/.DS_Store
ADDED
Binary file
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<div data-hook="admin_banks_form_fields">
|
2
|
+
<div class="row">
|
3
|
+
<%= f.field_container :name, class: ['form-group'] do %>
|
4
|
+
<%= f.label :name, Spree.t(:name) %> <span class="required">*</span><br />
|
5
|
+
<%= f.error_message_on :name, class: 'fullwidth title' %>
|
6
|
+
<%= f.text_field :name, class: 'form-control' %>
|
7
|
+
<% end %>
|
8
|
+
|
9
|
+
<%= f.field_container :account_no, class: ['form-group'] do %>
|
10
|
+
<%= f.label :account_no, Spree.t(:account_no) %><span class="required">*</span><br />
|
11
|
+
<%= f.text_field :account_no, class: 'form-control' %>
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<%= f.field_container :additional_details, class: ['form-group'] do %>
|
15
|
+
<%= f.label :additional_details, Spree.t(:additional_details) %><br />
|
16
|
+
<%= f.text_area :additional_details, rows: 10, class: 'form-control' %>
|
17
|
+
<% end %>
|
18
|
+
|
19
|
+
<%= f.field_container :active, class: ['checkbox'] do %>
|
20
|
+
<%= f.label :active do %>
|
21
|
+
<%= f.check_box :active %>
|
22
|
+
<%= Spree.t(:active) %>
|
23
|
+
<% end %>
|
24
|
+
<% end %>
|
25
|
+
</div>
|
26
|
+
</div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<% content_for :page_title do %>
|
2
|
+
<%= Spree.t(:editing_resource, resource: Spree::Bank.model_name.human) %> / <%= @bank.name %>
|
3
|
+
<% end %>
|
4
|
+
|
5
|
+
<%= render partial: 'spree/admin/shared/error_messages', locals: { target: @bank } %>
|
6
|
+
|
7
|
+
<%= form_for @bank, url: admin_bank_path(@bank) do |f| %>
|
8
|
+
<fieldset>
|
9
|
+
<%= render partial: 'form', locals: { f: f } %>
|
10
|
+
<div data-hook="buttons" class="actions">
|
11
|
+
<%= button Spree.t('actions.update'), 'save' %>
|
12
|
+
</div>
|
13
|
+
</fieldset>
|
14
|
+
<% end %>
|
@@ -0,0 +1,48 @@
|
|
1
|
+
|
2
|
+
<% content_for :page_title do %>
|
3
|
+
<%= plural_resource_name(Spree::Bank) %>
|
4
|
+
<% end %>
|
5
|
+
|
6
|
+
<% content_for :page_actions do %>
|
7
|
+
<%= button_link_to Spree.t(:new_bank), new_object_url, class: "btn-success", icon: 'add', id: 'admin_new_bank_link' %>
|
8
|
+
<% end %>
|
9
|
+
|
10
|
+
<% if @banks.present? %>
|
11
|
+
|
12
|
+
<table class="table" id='listing_banks'>
|
13
|
+
<thead>
|
14
|
+
<tr data-hook="admin_banks_index_headers">
|
15
|
+
<th><%= Spree.t(:bank_name) %></th>
|
16
|
+
<th><%= Spree.t(:account_no) %></th>
|
17
|
+
<th><%= Spree.t(:additional_details) %></th>
|
18
|
+
<th><%= Spree.t(:status) %></th>
|
19
|
+
</tr>
|
20
|
+
</thead>
|
21
|
+
<tbody>
|
22
|
+
<% @banks.each do |bank|%>
|
23
|
+
<tr id="<%= spree_dom_id bank %>" data-hook="admin_banks_index_rows">
|
24
|
+
<td><%= bank.name %></td>
|
25
|
+
<td><%= bank.account_no %></td>
|
26
|
+
<td><%= bank.additional_details %></td>
|
27
|
+
<td id='active-status-<%= bank.id %>'><%= bank_status(bank) %></td>
|
28
|
+
<td data-hook="admin_banks_index_row_status" id='toggle-status-<%= bank.id %>' class="actions actions-2 text-right">
|
29
|
+
<% action_class = bank.active ? "btn-danger" : "btn-success" %>
|
30
|
+
<% btn_class = 'btn ' + action_class + ' btn-sm' %>
|
31
|
+
<% status = bank.active ? "active" : "inactive" %>
|
32
|
+
<% bank_id = 'bank-' + bank[:id].to_s %>
|
33
|
+
<%= link_to_with_icon(action_text_to_toggle_bank_status(bank), action_to_toggle_bank_status(bank), toggle_activation_admin_bank_path(bank), {class: btn_class, id: bank_id, rel: status, remote: true, method: :put}) %>
|
34
|
+
</td>
|
35
|
+
<td data-hook="admin_banks_index_row_actions" class="actions actions-2 text-right">
|
36
|
+
<%= (link_to_edit bank) if can? :edit, bank %>
|
37
|
+
</td>
|
38
|
+
</tr>
|
39
|
+
<% end %>
|
40
|
+
</tbody>
|
41
|
+
</table>
|
42
|
+
|
43
|
+
<% else %>
|
44
|
+
<div class="alert alert-info no-objects-found">
|
45
|
+
<%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::Bank)) %>,
|
46
|
+
<%= link_to(Spree.t(:add_one), new_object_url) if can? :create, Spree::Bank %>!
|
47
|
+
</div>
|
48
|
+
<% end %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
<% content_for :page_title do %>
|
3
|
+
<%= Spree.t(:new_bank) %>
|
4
|
+
<% end %>
|
5
|
+
|
6
|
+
<% content_for :page_actions do %>
|
7
|
+
<%= link_to_with_icon 'arrow-left', Spree.t(:back_to_banks_list), admin_banks_path, class: 'btn btn-primary' %>
|
8
|
+
<% end %>
|
9
|
+
|
10
|
+
<%= render partial: 'spree/admin/shared/error_messages', locals: { target: @bank } %>
|
11
|
+
|
12
|
+
<%= form_for [:admin, @bank] do |f| %>
|
13
|
+
<fieldset>
|
14
|
+
<%= render partial: 'form', locals: { f: f } %>
|
15
|
+
<%= render partial: 'spree/admin/shared/new_resource_links' %>
|
16
|
+
</fieldset>
|
17
|
+
<% end %>
|