vat-gst-calculator 0.4.4 → 0.4.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/easyship/sales_tax/calculator/formula.rb +121 -116
- data/lib/easyship/sales_tax/calculator/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: bf04346cb5aa6601018c50d451a0462fee3e36aecb9ef739d46e33792ee8bdea
|
4
|
+
data.tar.gz: 3765f977a0417f08a56381a273f073e857ac2e907a4ffac55df8859d4f8f6271
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3538284b76b76838f9054ba3de537a894663c09f04791eb55201f75945bc7c57e713758ffb05414910a57cab1f9644b98f3f077f106ecb55716311bb8368e9d
|
7
|
+
data.tar.gz: 6518bc3249bcfa4a48297f00a1fc9f8c8714ccdb970d741f1716dc8e664e3d3704be906b30cf2a60db4803bde11261b57d18701100d5239ceb9bbf09033257b9
|
@@ -63,7 +63,7 @@ module Easyship
|
|
63
63
|
},
|
64
64
|
'SG' => {
|
65
65
|
sales_tax_website_name: 'GST',
|
66
|
-
sales_tax: { '_ALL': build_fee_struct(0, 0, 0, 0) },
|
66
|
+
sales_tax: { '_ALL': build_fee_struct(0.07, 0.07, 0.07, 0.07) },
|
67
67
|
provincial_sales_taxes: { '_ALL': no_taxes }
|
68
68
|
},
|
69
69
|
'HK' => {
|
@@ -71,126 +71,131 @@ module Easyship
|
|
71
71
|
sales_tax: { '_ALL': no_taxes },
|
72
72
|
provincial_sales_taxes: { '_ALL': no_taxes }
|
73
73
|
},
|
74
|
-
'NL' => {
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
},
|
74
|
+
# 'NL' => {
|
75
|
+
# sales_tax_website_name: 'VAT',
|
76
|
+
# sales_tax: { '_ALL': build_fee_struct(0.21, 0, 0.21, 0.21) },
|
77
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
78
|
+
# },
|
79
79
|
'US' => {
|
80
80
|
sales_tax_website_name: nil,
|
81
81
|
sales_tax: { '_ALL': no_taxes },
|
82
82
|
provincial_sales_taxes: { '_ALL': no_taxes }
|
83
83
|
},
|
84
|
-
'DE' => {
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
},
|
89
|
-
'FR' => {
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
},
|
94
|
-
'IT' => {
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
},
|
99
|
-
'BE' => {
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
},
|
104
|
-
'ES' => {
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
},
|
109
|
-
'PT' => {
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
},
|
114
|
-
'PL' => {
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
},
|
119
|
-
'RO' => {
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
},
|
124
|
-
'AT' => {
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
},
|
129
|
-
'
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
},
|
134
|
-
'
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
},
|
139
|
-
'
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
},
|
144
|
-
'
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
},
|
149
|
-
'
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
},
|
154
|
-
'
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
},
|
159
|
-
'
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
},
|
164
|
-
'
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
},
|
169
|
-
'
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
},
|
174
|
-
'
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
},
|
179
|
-
'
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
},
|
184
|
-
'
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
},
|
189
|
-
'
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
}
|
84
|
+
# 'DE' => {
|
85
|
+
# sales_tax_website_name: 'VAT',
|
86
|
+
# sales_tax: { '_ALL': build_fee_struct(0.19, 0, 0, 0) },
|
87
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
88
|
+
# },
|
89
|
+
# 'FR' => {
|
90
|
+
# sales_tax_website_name: 'VAT',
|
91
|
+
# sales_tax: { '_ALL': build_fee_struct(0.2, 0, 0, 0) },
|
92
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
93
|
+
# },
|
94
|
+
# 'IT' => {
|
95
|
+
# sales_tax_website_name: 'VAT',
|
96
|
+
# sales_tax: { '_ALL': build_fee_struct(0.22, 0, 0, 0) },
|
97
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
98
|
+
# },
|
99
|
+
# 'BE' => {
|
100
|
+
# sales_tax_website_name: 'VAT',
|
101
|
+
# sales_tax: { '_ALL': build_fee_struct(0.21, 0, 0, 0) },
|
102
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
103
|
+
# },
|
104
|
+
# 'ES' => {
|
105
|
+
# sales_tax_website_name: 'VAT',
|
106
|
+
# sales_tax: { '_ALL': build_fee_struct(0.21, 0, 0, 0) },
|
107
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
108
|
+
# },
|
109
|
+
# 'PT' => {
|
110
|
+
# sales_tax_website_name: 'VAT',
|
111
|
+
# sales_tax: { '_ALL': build_fee_struct(0.23, 0, 0, 0) },
|
112
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
113
|
+
# },
|
114
|
+
# 'PL' => {
|
115
|
+
# sales_tax_website_name: 'VAT',
|
116
|
+
# sales_tax: { '_ALL': build_fee_struct(0.23, 0, 0, 0) },
|
117
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
118
|
+
# },
|
119
|
+
# 'RO' => {
|
120
|
+
# sales_tax_website_name: 'VAT',
|
121
|
+
# sales_tax: { '_ALL': build_fee_struct(0.19, 0, 0, 0) },
|
122
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
123
|
+
# },
|
124
|
+
# 'AT' => {
|
125
|
+
# sales_tax_website_name: 'VAT',
|
126
|
+
# sales_tax: { '_ALL': build_fee_struct(0.2, 0, 0, 0) },
|
127
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
128
|
+
# },
|
129
|
+
# 'AE' => {
|
130
|
+
# sales_tax_website_name: 'VAT',
|
131
|
+
# sales_tax: { '_ALL': build_fee_struct(0.05, 0, 0, 0) },
|
132
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
133
|
+
# },
|
134
|
+
# 'IE' => {
|
135
|
+
# sales_tax_website_name: 'VAT',
|
136
|
+
# sales_tax: { '_ALL': build_fee_struct(0.23, 0, 0, 0) },
|
137
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
138
|
+
# },
|
139
|
+
# 'DK' => {
|
140
|
+
# sales_tax_website_name: 'VAT',
|
141
|
+
# sales_tax: { '_ALL': build_fee_struct(0.25, 0, 0, 0) },
|
142
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
143
|
+
# },
|
144
|
+
# 'SE' => {
|
145
|
+
# sales_tax_website_name: 'VAT',
|
146
|
+
# sales_tax: { '_ALL': build_fee_struct(0.25, 0, 0, 0) },
|
147
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
148
|
+
# },
|
149
|
+
# 'FI' => {
|
150
|
+
# sales_tax_website_name: 'VAT',
|
151
|
+
# sales_tax: { '_ALL': build_fee_struct(0.24, 0, 0, 0) },
|
152
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
153
|
+
# },
|
154
|
+
# 'CN' => {
|
155
|
+
# sales_tax_website_name: 'VAT',
|
156
|
+
# sales_tax: { '_ALL': build_fee_struct(0.06, 0, 0, 0) },
|
157
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
158
|
+
# },
|
159
|
+
# 'NO' => {
|
160
|
+
# sales_tax_website_name: 'VAT',
|
161
|
+
# sales_tax: { '_ALL': build_fee_struct(0.25, 0, 0, 0) },
|
162
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
163
|
+
# },
|
164
|
+
# 'CH' => {
|
165
|
+
# sales_tax_website_name: 'VAT',
|
166
|
+
# sales_tax: { '_ALL': build_fee_struct(0.077, 0, 0, 0) },
|
167
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
168
|
+
# },
|
169
|
+
# 'MY' => {
|
170
|
+
# sales_tax_website_name: 'VAT',
|
171
|
+
# sales_tax: { '_ALL': build_fee_struct(0.1, 0, 0, 0) },
|
172
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
173
|
+
# },
|
174
|
+
# 'JP' => {
|
175
|
+
# sales_tax_website_name: 'VAT',
|
176
|
+
# sales_tax: { '_ALL': build_fee_struct(0.1, 0, 0, 0) },
|
177
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
178
|
+
# },
|
179
|
+
# 'NZ' => {
|
180
|
+
# sales_tax_website_name: 'VAT',
|
181
|
+
# sales_tax: { '_ALL': build_fee_struct(0.15, 0, 0, 0) },
|
182
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
183
|
+
# },
|
184
|
+
# 'IN' => {
|
185
|
+
# sales_tax_website_name: 'VAT',
|
186
|
+
# sales_tax: { '_ALL': build_fee_struct(0.15, 0, 0, 0) },
|
187
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
188
|
+
# },
|
189
|
+
# 'KR' => {
|
190
|
+
# sales_tax_website_name: 'VAT',
|
191
|
+
# sales_tax: { '_ALL': build_fee_struct(0.1, 0, 0, 0) },
|
192
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
193
|
+
# },
|
194
|
+
# 'MX' => {
|
195
|
+
# sales_tax_website_name: 'VAT',
|
196
|
+
# sales_tax: { '_ALL': build_fee_struct(0.16, 0, 0, 0) },
|
197
|
+
# provincial_sales_taxes: { '_ALL': no_taxes }
|
198
|
+
# }
|
194
199
|
}.freeze
|
195
200
|
end
|
196
201
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vat-gst-calculator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aloha Chen
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-
|
12
|
+
date: 2021-12-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|