qbwc_requests 0.4.8 → 0.4.9
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b399da883ca32c21a800031683bf19ad30afd2ce
|
|
4
|
+
data.tar.gz: dfcefe6aa0a76c1d3804031a6d07292f5203da04
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0ed79cd7e9878b56a4dbfa7131de8d87fed250cae6a3fc866a24d65ffad47be7c9b74aa0191d4d07ec9881245973d91922697fcc643c3b00d361c9847f62488
|
|
7
|
+
data.tar.gz: a052ec5f2bc7760b14e8234ea8eefaeb7ae77cc23a1930065d9eaa7aed13081839ba52a8cc42ed23009a58a142639aa0331a08c6df292e9413ea062807251347
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
module QbwcRequests
|
|
2
|
+
module CustomDetailReport
|
|
3
|
+
module V07
|
|
4
|
+
class Query < QbwcRequests::Base
|
|
5
|
+
field :max_returned
|
|
6
|
+
field :custom_detail_report_type
|
|
7
|
+
field :report_date_macro
|
|
8
|
+
field :report_entity_filter
|
|
9
|
+
field :report_txn_type_filter
|
|
10
|
+
field :report_posting_status_filter
|
|
11
|
+
field :summarize_rows_by
|
|
12
|
+
field :include_column
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
data/lib/qbwc_requests.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qbwc_requests
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexandre Mondaini Calvão
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: qbxml
|
|
@@ -115,6 +115,7 @@ files:
|
|
|
115
115
|
- lib/qbwc_requests/base.rb
|
|
116
116
|
- lib/qbwc_requests/bill/v07/add.rb
|
|
117
117
|
- lib/qbwc_requests/bill/v07/query.rb
|
|
118
|
+
- lib/qbwc_requests/custom_detail_report/v07/query.rb
|
|
118
119
|
- lib/qbwc_requests/customer/v07/add.rb
|
|
119
120
|
- lib/qbwc_requests/customer/v07/query.rb
|
|
120
121
|
- lib/qbwc_requests/estimate/v07/add.rb
|
|
@@ -219,6 +220,7 @@ files:
|
|
|
219
220
|
- scripts/dtd_to_classes.rb
|
|
220
221
|
- spec/account_qbxml_spec.rb
|
|
221
222
|
- spec/bill_qbxml_spec.rb
|
|
223
|
+
- spec/custom_detail_report_qbxml_spec.rb
|
|
222
224
|
- spec/customer_qbxml_spec.rb
|
|
223
225
|
- spec/estimate_qbxml_spec.rb
|
|
224
226
|
- spec/general_detail_report_qbxml_spec.rb
|
|
@@ -268,6 +270,7 @@ summary: This gem helps you generate Qbxml requests
|
|
|
268
270
|
test_files:
|
|
269
271
|
- spec/account_qbxml_spec.rb
|
|
270
272
|
- spec/bill_qbxml_spec.rb
|
|
273
|
+
- spec/custom_detail_report_qbxml_spec.rb
|
|
271
274
|
- spec/customer_qbxml_spec.rb
|
|
272
275
|
- spec/estimate_qbxml_spec.rb
|
|
273
276
|
- spec/general_detail_report_qbxml_spec.rb
|