killbill-avatax 4.0.1 → 4.0.2
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/assets/config/avatax_manifest.js +2 -2
- data/app/views/avatax/configuration/index.html.erb +54 -60
- data/lib/avatax/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cdbdfc313c128a86835be16793cb54e9bc6f25a0f243e05454281cc828480457
|
|
4
|
+
data.tar.gz: d05a886280fcf3811cfeaeca822ee1d73d0337ff8e1b44be71a10b46093973d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 709389016cc1b4e1d6f54434fc96568494e932c02b31ad742a8e92e07a9b37eec880507caff05e60562a6a8eaa685c946580f9c6df3801af2a48dbf37e459b98
|
|
7
|
+
data.tar.gz: 87c798a51593d91335fcf2b86c8ad82fd5b0a7da0dedd90b78154fe8fbcd5bece4cc6a86d36676c04049b542c480c2eb4455741d477e1604d09a23e16da1fe8d
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
//= link_tree ../images
|
|
2
|
-
//=
|
|
3
|
-
//=
|
|
2
|
+
//= link avatax/avatax.js
|
|
3
|
+
//= link avatax/avatax.css
|
|
@@ -9,75 +9,69 @@
|
|
|
9
9
|
<div class="d-flex" style="gap: 4rem;">
|
|
10
10
|
<%= render template: 'kaui/layouts/kaui_setting_sidebar' %>
|
|
11
11
|
|
|
12
|
-
<div class="
|
|
13
|
-
<div class="
|
|
14
|
-
<div class="
|
|
15
|
-
<div class="
|
|
16
|
-
|
|
12
|
+
<div class="d-flex flex-column" style="max-width: 80rem; flex: 1; gap: 2rem;">
|
|
13
|
+
<div class="configuration">
|
|
14
|
+
<div class="d-flex flex-column">
|
|
15
|
+
<div class="configuration-header mb-4">
|
|
16
|
+
<div class="d-flex align-items-center">
|
|
17
|
+
<h2>Configured products</h2>
|
|
18
|
+
</div>
|
|
19
|
+
<span>
|
|
20
|
+
<%= link_to set_tax_code_configuration_path do %>
|
|
21
|
+
<%= render "kaui/components/button/button", {
|
|
22
|
+
label: "Add Product",
|
|
23
|
+
icon: "kaui/plus.svg",
|
|
24
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
|
25
|
+
type: "button",
|
|
26
|
+
html_class: "kaui-dropdown custom-hover",
|
|
27
|
+
} %>
|
|
28
|
+
<% end %>
|
|
29
|
+
</span>
|
|
17
30
|
</div>
|
|
18
|
-
|
|
19
|
-
<%= link_to set_tax_code_configuration_path do %>
|
|
20
|
-
<%= render "kaui/components/button/button", {
|
|
21
|
-
label: "Add Product",
|
|
22
|
-
icon: "kaui/plus.svg",
|
|
23
|
-
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
|
24
|
-
type: "button",
|
|
25
|
-
html_class: "kaui-dropdown custom-hover",
|
|
26
|
-
} %>
|
|
27
|
-
<% end %>
|
|
28
|
-
</span>
|
|
31
|
+
<%= render :partial => 'avatax/configuration/products_table', :locals => {:tax_codes => @tax_codes} %>
|
|
29
32
|
</div>
|
|
30
|
-
<%= render :partial => 'avatax/configuration/products_table', :locals => {:tax_codes => @tax_codes} %>
|
|
31
33
|
</div>
|
|
32
|
-
</div>
|
|
33
|
-
</div>
|
|
34
|
-
</div>
|
|
35
34
|
|
|
36
|
-
<div class="
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
35
|
+
<div class="configuration">
|
|
36
|
+
<div class="d-flex flex-column">
|
|
37
|
+
<div class="configuration-header mb-4">
|
|
38
|
+
<div class="d-flex align-items-center">
|
|
39
|
+
<h2>Exempt accounts</h2>
|
|
40
|
+
</div>
|
|
41
|
+
<span>
|
|
42
|
+
<%= link_to set_exemption_configuration_path do %>
|
|
43
|
+
<%= render "kaui/components/button/button", {
|
|
44
|
+
label: "Add Exemption",
|
|
45
|
+
icon: "kaui/plus.svg",
|
|
46
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
|
47
|
+
type: "button",
|
|
48
|
+
html_class: "kaui-dropdown custom-hover",
|
|
49
|
+
} %>
|
|
50
|
+
<% end %>
|
|
51
|
+
</span>
|
|
43
52
|
</div>
|
|
44
|
-
|
|
45
|
-
<%= link_to set_exemption_configuration_path do %>
|
|
46
|
-
<%= render "kaui/components/button/button", {
|
|
47
|
-
label: "Add Exemption",
|
|
48
|
-
icon: "kaui/plus.svg",
|
|
49
|
-
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
|
50
|
-
type: "button",
|
|
51
|
-
html_class: "kaui-dropdown custom-hover",
|
|
52
|
-
} %>
|
|
53
|
-
<% end %>
|
|
54
|
-
</span>
|
|
53
|
+
<%= render :partial => 'avatax/configuration/exemptions_table', :locals => {:exemptions => @exemptions} %>
|
|
55
54
|
</div>
|
|
56
|
-
<%= render :partial => 'avatax/configuration/exemptions_table', :locals => {:exemptions => @exemptions} %>
|
|
57
55
|
</div>
|
|
58
|
-
</div>
|
|
59
|
-
</div>
|
|
60
|
-
</div>
|
|
61
56
|
|
|
62
|
-
<div class="
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
57
|
+
<div class="configuration">
|
|
58
|
+
<div class="d-flex flex-column">
|
|
59
|
+
<div class="configuration-header mb-4">
|
|
60
|
+
<div class="d-flex align-items-center">
|
|
61
|
+
<h2>Plugin configuration</h2>
|
|
62
|
+
</div>
|
|
63
|
+
<span>
|
|
64
|
+
<%= link_to plugin_configuration_path do %>
|
|
65
|
+
<%= render "kaui/components/button/button", {
|
|
66
|
+
label: "Update Plugin Configuration",
|
|
67
|
+
icon: "kaui/plus.svg",
|
|
68
|
+
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
|
69
|
+
type: "button",
|
|
70
|
+
html_class: "kaui-dropdown custom-hover",
|
|
71
|
+
} %>
|
|
72
|
+
<% end %>
|
|
73
|
+
</span>
|
|
69
74
|
</div>
|
|
70
|
-
<span>
|
|
71
|
-
<%= link_to plugin_configuration_path do %>
|
|
72
|
-
<%= render "kaui/components/button/button", {
|
|
73
|
-
label: "Update Plugin Configuration",
|
|
74
|
-
icon: "kaui/plus.svg",
|
|
75
|
-
variant: "outline-secondary d-inline-flex align-items-center gap-1",
|
|
76
|
-
type: "button",
|
|
77
|
-
html_class: "kaui-dropdown custom-hover",
|
|
78
|
-
} %>
|
|
79
|
-
<% end %>
|
|
80
|
-
</span>
|
|
81
75
|
</div>
|
|
82
76
|
</div>
|
|
83
77
|
</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: 4.0.
|
|
4
|
+
version: 4.0.2
|
|
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: 2026-03-
|
|
11
|
+
date: 2026-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: killbill-assets-ui
|