killbill-avatax 3.0.5 → 3.1.0.pre.1
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 +4 -4
- data/app/views/avatax/configuration/_exemptions_form.html.erb +26 -10
- data/app/views/avatax/configuration/_exemptions_table.html.erb +2 -2
- data/app/views/avatax/configuration/_plugin_form.html.erb +28 -15
- data/app/views/avatax/configuration/_products_form.html.erb +26 -10
- data/app/views/avatax/configuration/_products_table.html.erb +2 -2
- data/app/views/avatax/configuration/index.html.erb +72 -25
- data/app/views/avatax/configuration/plugin_configuration.html.erb +14 -7
- data/app/views/avatax/configuration/set_exemption.html.erb +11 -7
- data/app/views/avatax/configuration/set_tax_code.html.erb +11 -7
- data/app/views/kaui/components/breadcrumb/_breadcrumb.html.erb +8 -0
- data/app/views/kaui/components/button/_button.html.erb +8 -0
- data/app/views/kaui/layouts/kaui_setting_sidebar.html.erb +8 -0
- data/lib/avatax/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f95ddbfc3db7cf0b63db7c565449b64281e2b02afd4d3981085765860405374
|
4
|
+
data.tar.gz: '022955568f287d96c11c36a121e0a9a2eaa79acfe2f086a4f30a77f417dd0567'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70b522efcd17732cfca1e1d29c3e50ad125af688ce4cee282ccd4d7a41c91345e42bdd8d77b021d3d55a68367b34c636ee22d0b83a151894cef3f439ee95a40d
|
7
|
+
data.tar.gz: '00007026384e5ee60fc51f535b901e2684fcf454b0c45f4e445a71870a2fbe8691d264386183699c3707f8f289cbddffa0c6e406dfa90fe589b21752a5aac94e'
|
@@ -1,20 +1,36 @@
|
|
1
1
|
<%= form_tag do_set_exemption_configuration_path, :class => 'form-horizontal' do %>
|
2
|
-
<div class="form-group">
|
3
|
-
<%= label_tag :account_id, 'Account ID', :class => 'col-sm-
|
2
|
+
<div class="form-group d-flex pb-3">
|
3
|
+
<%= label_tag :account_id, 'Account ID', :class => 'col-sm-3 control-label' %>
|
4
4
|
|
5
|
-
<div class="col-sm-
|
5
|
+
<div class="col-sm-9">
|
6
6
|
<%= text_field_tag :account_id, nil, :class => 'form-control' %>
|
7
7
|
</div>
|
8
8
|
</div>
|
9
|
-
<div class="form-group">
|
10
|
-
<%= label_tag :customer_usage_type, 'Customer Usage Type', :class => 'col-sm-
|
11
|
-
<div class="col-sm-
|
9
|
+
<div class="form-group d-flex pb-3 border-bottom mb-3">
|
10
|
+
<%= label_tag :customer_usage_type, 'Customer Usage Type', :class => 'col-sm-3 control-label' %>
|
11
|
+
<div class="col-sm-9">
|
12
12
|
<%= text_field_tag :customer_usage_type, nil, :class => 'form-control' %>
|
13
13
|
</div>
|
14
14
|
</div>
|
15
|
-
<div class="form-group">
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
<div class="form-group d-flex justify-content-end pb-3">
|
16
|
+
<%= render "kaui/components/button/button", {
|
17
|
+
label: 'Close',
|
18
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
19
|
+
type: "button",
|
20
|
+
html_class: "kaui-button custom-hover mx-2",
|
21
|
+
html_options: {
|
22
|
+
id: "closeButton",
|
23
|
+
onclick: "window.history.back();"
|
24
|
+
}
|
25
|
+
} %>
|
26
|
+
<%= render "kaui/components/button/button", {
|
27
|
+
label: 'Save',
|
28
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
29
|
+
type: "submit",
|
30
|
+
html_class: "kaui-dropdown custom-hover",
|
31
|
+
html_options: {
|
32
|
+
id: "saveButton"
|
33
|
+
}
|
34
|
+
} %>
|
19
35
|
</div>
|
20
36
|
<% end %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<table id="exemptions-table" class="
|
1
|
+
<table id="exemptions-table" class="configuration-table">
|
2
2
|
<thead>
|
3
3
|
<tr>
|
4
4
|
<th>Account ID</th>
|
@@ -12,7 +12,7 @@
|
|
12
12
|
<td><%= exemption[:account_id] %></td>
|
13
13
|
<td><%= exemption[:customer_usage_type] %></td>
|
14
14
|
<td>
|
15
|
-
<%= link_to '
|
15
|
+
<%= link_to 'Remove'.html_safe, remove_exemption_configuration_path(:account_id => exemption[:account_id]), :method => :delete %>
|
16
16
|
</td>
|
17
17
|
</tr>
|
18
18
|
<% end %>
|
@@ -1,24 +1,24 @@
|
|
1
1
|
<%= form_tag update_plugin_configuration_path, :class => 'form-horizontal' do %>
|
2
|
-
<div class="form-group">
|
3
|
-
<%= label_tag :account_id, 'Account ID', :class => 'col-sm-
|
4
|
-
<div class="col-sm-
|
2
|
+
<div class="form-group d-flex pb-3">
|
3
|
+
<%= label_tag :account_id, 'Account ID', :class => 'col-sm-3 control-label', :data => {:toggle=>"popover", :trigger=> "hover", :content=> "Your AvaTax account number"} %>
|
4
|
+
<div class="col-sm-9">
|
5
5
|
<%= text_field_tag :account_id, @configuration[:account_id], :class => 'form-control', :required => true %>
|
6
6
|
</div>
|
7
7
|
</div>
|
8
|
-
<div class="form-group">
|
9
|
-
<%= label_tag :license_key, 'License key', :class => 'col-sm-
|
10
|
-
<div class="col-sm-
|
8
|
+
<div class="form-group d-flex pb-3">
|
9
|
+
<%= label_tag :license_key, 'License key', :class => 'col-sm-3 control-label', :data => {:toggle=>"popover", :trigger=> "hover", :content=> "Your AvaTax license key"} %>
|
10
|
+
<div class="col-sm-9">
|
11
11
|
<%= text_field_tag :license_key, @configuration[:license_key], :class => 'form-control', :required => true %>
|
12
12
|
</div>
|
13
13
|
</div>
|
14
|
-
<div class="form-group">
|
15
|
-
<%= label_tag :company_code, 'Company code', :class => 'col-sm-
|
16
|
-
<div class="col-sm-
|
14
|
+
<div class="form-group d-flex pb-3">
|
15
|
+
<%= label_tag :company_code, 'Company code', :class => 'col-sm-3 control-label', :data => {:toggle=>"popover", :trigger=> "hover", :content=> "Your company code"} %>
|
16
|
+
<div class="col-sm-9">
|
17
17
|
<%= text_field_tag :company_code, @configuration[:company_code], :class => 'form-control', :required => true %>
|
18
18
|
</div>
|
19
19
|
</div>
|
20
|
-
<div class="form-group">
|
21
|
-
<div class="col-sm-
|
20
|
+
<div class="form-group d-flex justify-content-end pb-3 border-bottom mb-3">
|
21
|
+
<div class="col-sm-9">
|
22
22
|
<div class="checkbox">
|
23
23
|
<%= label_tag :commit_documents, 'Commit documents', :class => 'control-label' do %>
|
24
24
|
<%= check_box_tag :commit_documents, '1', @configuration[:commit_documents] %>Commit documents?
|
@@ -26,10 +26,23 @@
|
|
26
26
|
</div>
|
27
27
|
</div>
|
28
28
|
</div>
|
29
|
-
<div class="form-group">
|
30
|
-
|
31
|
-
|
32
|
-
|
29
|
+
<div class="form-group d-flex justify-content-end pb-3">
|
30
|
+
<%= render "kaui/components/button/button", {
|
31
|
+
label: 'Close',
|
32
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
33
|
+
type: "button",
|
34
|
+
html_class: "kaui-button custom-hover mx-2",
|
35
|
+
html_options: {
|
36
|
+
id: "closeButton",
|
37
|
+
onclick: "window.history.back();"
|
38
|
+
}
|
39
|
+
} %>
|
40
|
+
<%= render "kaui/components/button/button", {
|
41
|
+
label: 'Save',
|
42
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
43
|
+
type: "submit",
|
44
|
+
html_class: "kaui-dropdown custom-hover",
|
45
|
+
} %>
|
33
46
|
</div>
|
34
47
|
<% end %>
|
35
48
|
|
@@ -1,20 +1,36 @@
|
|
1
1
|
<%= form_tag do_set_tax_code_configuration_path, :class => 'form-horizontal' do %>
|
2
|
-
<div class="form-group">
|
3
|
-
<%= label_tag :product_name, 'Product name', :class => 'col-sm-
|
2
|
+
<div class="form-group d-flex pb-3">
|
3
|
+
<%= label_tag :product_name, 'Product name', :class => 'col-sm-3 control-label' %>
|
4
4
|
|
5
|
-
<div class="col-sm-
|
5
|
+
<div class="col-sm-9">
|
6
6
|
<%= select_tag :product_name, options_for_select(@products), :class => 'form-control' %>
|
7
7
|
</div>
|
8
8
|
</div>
|
9
|
-
<div class="form-group">
|
10
|
-
<%= label_tag :tax_code, 'Tax code', :class => 'col-sm-
|
11
|
-
<div class="col-sm-
|
9
|
+
<div class="form-group d-flex pb-3 border-bottom mb-3">
|
10
|
+
<%= label_tag :tax_code, 'Tax code', :class => 'col-sm-3 control-label' %>
|
11
|
+
<div class="col-sm-9">
|
12
12
|
<%= text_field_tag :tax_code, nil, :class => 'form-control' %>
|
13
13
|
</div>
|
14
14
|
</div>
|
15
|
-
<div class="form-group">
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
<div class="form-group d-flex justify-content-end pb-3">
|
16
|
+
<%= render "kaui/components/button/button", {
|
17
|
+
label: 'Close',
|
18
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
19
|
+
type: "button",
|
20
|
+
html_class: "kaui-button custom-hover mx-2",
|
21
|
+
html_options: {
|
22
|
+
id: "closeButton",
|
23
|
+
onclick: "window.history.back();"
|
24
|
+
}
|
25
|
+
} %>
|
26
|
+
<%= render "kaui/components/button/button", {
|
27
|
+
label: 'Save',
|
28
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
29
|
+
type: "submit",
|
30
|
+
html_class: "kaui-dropdown custom-hover",
|
31
|
+
html_options: {
|
32
|
+
id: "saveButton"
|
33
|
+
}
|
34
|
+
} %>
|
19
35
|
</div>
|
20
36
|
<% end %>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<table id="products-table" class="
|
1
|
+
<table id="products-table" class="configuration-table">
|
2
2
|
<thead>
|
3
3
|
<tr>
|
4
4
|
<th>Product name</th>
|
@@ -12,7 +12,7 @@
|
|
12
12
|
<td><%= tax_code[:productName] %></td>
|
13
13
|
<td><%= tax_code[:taxCode] %></td>
|
14
14
|
<td>
|
15
|
-
<%= link_to '
|
15
|
+
<%= link_to 'Remove'.html_safe, remove_tax_code_configuration_path(:product_name => tax_code[:productName]), :method => :delete %>
|
16
16
|
</td>
|
17
17
|
</tr>
|
18
18
|
<% end %>
|
@@ -1,30 +1,77 @@
|
|
1
|
-
<div class="
|
2
|
-
|
3
|
-
<div class="
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
1
|
+
<div class="kaui-container configuration-index">
|
2
|
+
<%= render "kaui/components/breadcrumb/breadcrumb" %>
|
3
|
+
<div class="d-flex " style="gap: 4rem;">
|
4
|
+
<div class="configuration" style="max-width: '80rem';">
|
5
|
+
<div class="d-flex flex-column ">
|
6
|
+
<div class="configuration-header mb-4">
|
7
|
+
<div class="d-flex align-items-center">
|
8
|
+
<h2>Configured products</h2>
|
9
|
+
</div>
|
10
|
+
<span>
|
11
|
+
<%= link_to set_tax_code_configuration_path do %>
|
12
|
+
<%= render "kaui/components/button/button", {
|
13
|
+
label: "Add Product",
|
14
|
+
icon: "kaui/plus.svg",
|
15
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
16
|
+
type: "button",
|
17
|
+
html_class: "kaui-dropdown custom-hover",
|
18
|
+
} %>
|
19
|
+
<% end %>
|
20
|
+
</span>
|
21
|
+
</div>
|
22
|
+
<%= render :partial => 'avatax/configuration/products_table', :locals => {:tax_codes => @tax_codes} %>
|
23
|
+
</div>
|
24
|
+
</div>
|
11
25
|
</div>
|
26
|
+
</div>
|
12
27
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
28
|
+
<div class="kaui-container configuration-index">
|
29
|
+
<div class="d-flex " style="gap: 4rem;">
|
30
|
+
<div class="configuration" style="max-width: '80rem';">
|
31
|
+
<div class="d-flex flex-column ">
|
32
|
+
<div class="configuration-header mb-4">
|
33
|
+
<div class="d-flex align-items-center">
|
34
|
+
<h2>Exempt accounts</h2>
|
35
|
+
</div>
|
36
|
+
<span>
|
37
|
+
<%= link_to set_exemption_configuration_path do %>
|
38
|
+
<%= render "kaui/components/button/button", {
|
39
|
+
label: "Add Exemption",
|
40
|
+
icon: "kaui/plus.svg",
|
41
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
42
|
+
type: "button",
|
43
|
+
html_class: "kaui-dropdown custom-hover",
|
44
|
+
} %>
|
45
|
+
<% end %>
|
46
|
+
</span>
|
47
|
+
</div>
|
48
|
+
<%= render :partial => 'avatax/configuration/exemptions_table', :locals => {:exemptions => @exemptions} %>
|
49
|
+
</div>
|
50
|
+
</div>
|
23
51
|
</div>
|
52
|
+
</div>
|
24
53
|
|
25
|
-
|
26
|
-
<
|
27
|
-
|
28
|
-
|
29
|
-
|
54
|
+
<div class="kaui-container configuration-index">
|
55
|
+
<div class="d-flex " style="gap: 4rem;">
|
56
|
+
<div class="configuration" style="max-width: '80rem';">
|
57
|
+
<div class="d-flex flex-column ">
|
58
|
+
<div class="configuration-header mb-4">
|
59
|
+
<div class="d-flex align-items-center">
|
60
|
+
<h2>Plugin configuration</h2>
|
61
|
+
</div>
|
62
|
+
<span>
|
63
|
+
<%= link_to plugin_configuration_path do %>
|
64
|
+
<%= render "kaui/components/button/button", {
|
65
|
+
label: "Update Plugin Configuration",
|
66
|
+
icon: "kaui/plus.svg",
|
67
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
68
|
+
type: "button",
|
69
|
+
html_class: "kaui-dropdown custom-hover",
|
70
|
+
} %>
|
71
|
+
<% end %>
|
72
|
+
</span>
|
73
|
+
</div>
|
74
|
+
</div>
|
75
|
+
</div>
|
76
|
+
</div>
|
30
77
|
</div>
|
@@ -1,7 +1,14 @@
|
|
1
|
-
<div class="
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
<div class="register configure-plugin-configuration-form">
|
2
|
+
<div class="mx-auto" style="max-width: 37.5rem;">
|
3
|
+
<h5 class="add-account-title">
|
4
|
+
<span class="icon-container">
|
5
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M13.3333 5.83333C13.3333 7.67428 11.8409 9.16667 9.99996 9.16667C8.15901 9.16667 6.66663 7.67428 6.66663 5.83333C6.66663 3.99238 8.15901 2.5 9.99996 2.5C11.8409 2.5 13.3333 3.99238 13.3333 5.83333Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
7
|
+
<path d="M15.8333 15.8332C15.8333 13.532 13.9678 11.6665 11.6666 11.6665H8.33329C6.03211 11.6665 4.16663 13.532 4.16663 15.8332V17.4998H15.8333V15.8332Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
8
|
+
</svg>
|
9
|
+
</span>
|
10
|
+
Plugin configuration
|
11
|
+
</h5>
|
12
|
+
<%= render :partial => 'avatax/configuration/plugin_form' %>
|
13
|
+
</div>
|
14
|
+
</div>
|
@@ -1,10 +1,14 @@
|
|
1
|
-
<div class="register">
|
2
|
-
<div class="
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
<div class="register configure-exemption-form">
|
2
|
+
<div class="mx-auto" style="max-width: 37.5rem;">
|
3
|
+
<h5 class="add-account-title">
|
4
|
+
<span class="icon-container">
|
5
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M13.3333 5.83333C13.3333 7.67428 11.8409 9.16667 9.99996 9.16667C8.15901 9.16667 6.66663 7.67428 6.66663 5.83333C6.66663 3.99238 8.15901 2.5 9.99996 2.5C11.8409 2.5 13.3333 3.99238 13.3333 5.83333Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
7
|
+
<path d="M15.8333 15.8332C15.8333 13.532 13.9678 11.6665 11.6666 11.6665H8.33329C6.03211 11.6665 4.16663 13.532 4.16663 15.8332V17.4998H15.8333V15.8332Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
8
|
+
</svg>
|
9
|
+
</span>
|
10
|
+
Set exemption
|
11
|
+
</h5>
|
6
12
|
<%= render 'exemptions_form' %>
|
7
|
-
</div>
|
8
|
-
|
9
13
|
</div>
|
10
14
|
</div>
|
@@ -1,10 +1,14 @@
|
|
1
|
-
<div class="register">
|
2
|
-
<div class="
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
<div class="register configure-product-form">
|
2
|
+
<div class="mx-auto" style="max-width: 37.5rem;">
|
3
|
+
<h5 class="add-account-title">
|
4
|
+
<span class="icon-container">
|
5
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
6
|
+
<path d="M13.3333 5.83333C13.3333 7.67428 11.8409 9.16667 9.99996 9.16667C8.15901 9.16667 6.66663 7.67428 6.66663 5.83333C6.66663 3.99238 8.15901 2.5 9.99996 2.5C11.8409 2.5 13.3333 3.99238 13.3333 5.83333Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
7
|
+
<path d="M15.8333 15.8332C15.8333 13.532 13.9678 11.6665 11.6666 11.6665H8.33329C6.03211 11.6665 4.16663 13.532 4.16663 15.8332V17.4998H15.8333V15.8332Z" stroke="#414651" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
8
|
+
</svg>
|
9
|
+
</span>
|
10
|
+
Configure product
|
11
|
+
</h5>
|
6
12
|
<%= render 'products_form' %>
|
7
|
-
</div>
|
8
|
-
|
9
13
|
</div>
|
10
14
|
</div>
|
data/lib/avatax/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: killbill-avatax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.1.0.pre.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kill Bill core team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: killbill-assets-ui
|
@@ -79,6 +79,9 @@ files:
|
|
79
79
|
- app/views/avatax/configuration/set_exemption.html.erb
|
80
80
|
- app/views/avatax/configuration/set_tax_code.html.erb
|
81
81
|
- app/views/avatax/layouts/avatax_application.html.erb
|
82
|
+
- app/views/kaui/components/breadcrumb/_breadcrumb.html.erb
|
83
|
+
- app/views/kaui/components/button/_button.html.erb
|
84
|
+
- app/views/kaui/layouts/kaui_setting_sidebar.html.erb
|
82
85
|
- config/routes.rb
|
83
86
|
- lib/avatax.rb
|
84
87
|
- lib/avatax/client.rb
|
@@ -101,9 +104,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
101
104
|
version: '0'
|
102
105
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
106
|
requirements:
|
104
|
-
- - "
|
107
|
+
- - ">"
|
105
108
|
- !ruby/object:Gem::Version
|
106
|
-
version:
|
109
|
+
version: 1.3.1
|
107
110
|
requirements: []
|
108
111
|
rubygems_version: 3.4.10
|
109
112
|
signing_key:
|