sales_and_orders_decorator 0.1.3

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 52adf7fb40aeb25b51267d302b98ad4b35a18a13
4
+ data.tar.gz: d1dddc8bb4f81b293b746de28cc902fd99aa292c
5
+ SHA512:
6
+ metadata.gz: 396aff77d56ab42d12564b4e4feeb40d5ab291465bef8f7ecadd88994dc1079797a4a103d2341744ccd45698351c4af44c6586dc3111bd4b6992f286b68ef512
7
+ data.tar.gz: 0b5017cb0f6645d8a3c87cc21ce2cdd51621364c4ee3d45d3f64d36fd672d900e36965ad572ec0b7f2b1906f535ddbaa53b0398151543f58fba620128c8cbece
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.14.6
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at x16103602@student.ncirl.ie. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in sales_and_orders_decorator.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Kishore Kumar
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,41 @@
1
+ # SalesAndOrdersDecorator
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/sales_and_orders_decorator`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'sales_and_orders_decorator'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install sales_and_orders_decorator
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sales_and_orders_decorator. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ Rake::TestTask.new(:test) do |t|
5
+ t.libs << "test"
6
+ t.libs << "lib"
7
+ t.test_files = FileList['test/**/*_test.rb']
8
+ end
9
+
10
+ task :default => :test
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "sales_and_orders_decorator"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,268 @@
1
+ require "sales_and_orders_decorator/version"
2
+
3
+ # the concret component we would like to decorate, a car in our example
4
+ class BasicSales
5
+ def initialize
6
+ @sales_array = []
7
+ end
8
+
9
+ # getter method
10
+ def sales_array
11
+ return @sales_array
12
+ end
13
+
14
+ def totalSale_counter_method
15
+ return @totalSale_order
16
+ end
17
+
18
+ def totalSale_quantity_method
19
+ return @totalSale_quantity
20
+ end
21
+
22
+ def vegCounter_method
23
+ return @vegCounter
24
+ end
25
+
26
+ def nonVegCounter_method
27
+ return @nonVegCounter
28
+ end
29
+
30
+ def offeredSale_counter_method
31
+ return @offeredSale_counter
32
+ end
33
+
34
+ def nonOfferedSale_counter_method
35
+ return @nonOfferedSale_counter
36
+ end
37
+
38
+ def common_method
39
+ product_sale.each do |product|
40
+ sale_boolean = product.created_at.between?(Time.now.midnight-1.day,Time.now.midnight)
41
+ if(sale_boolean)
42
+ sales_array << product
43
+ end
44
+ end
45
+ end
46
+
47
+ end
48
+
49
+ # decorator class -- this serves as the superclass for all the concrete decorators
50
+ # the base/super class decorator (i.e. no actual decoration yet), each concrete decorator (i.e. subclass) will add its own decoration
51
+ class BuisnessDecorator
52
+ def initialize(root_sales)
53
+ @root_sales = root_sales
54
+ @totalSale_counter = 0
55
+ @totalSale_quantity = 0
56
+ @vegCounter= 0
57
+ @nonVegCounter= 0
58
+ @offeredSale_counter = 0
59
+ @nonOfferedSale_counter = 0
60
+ @profit_counter = 0
61
+ end
62
+
63
+ def sales_array
64
+ return @root_sales.sales_array
65
+ end
66
+
67
+ def totalSale_counter_method
68
+ @totalSale_counter += sd.totalSale
69
+ end
70
+
71
+ def totalSale_quantity_method
72
+ return @totalSale_quantity
73
+ end
74
+
75
+ def profit_counter_method
76
+ @profit_counter += sd.profit
77
+ end
78
+
79
+ def vegCounter_method
80
+ @vegCounter += sd.vegSale
81
+ end
82
+
83
+ def nonVegCounter_method
84
+ @nonVegCounter += sd.nonVegSale
85
+ end
86
+
87
+ def offeredSale_counter_method
88
+ @offeredSale_counter += sd.offeredSale
89
+ end
90
+
91
+ def nonOfferedSale_counter_method
92
+ @nonOfferedSale_counter += sd.nonOfferedSale
93
+ end
94
+
95
+ def check_profit
96
+ @root_sales.sales_array.each do |sd|
97
+ @totalSale_counter += sd.total_price
98
+ @totalSale_quantity += sd.quantity
99
+ end
100
+ @totalProductSold = @totalSale_quantity * 7
101
+ @profit_counter = @totalSale_counter - @totalProductSold
102
+ end
103
+
104
+ def check_offer
105
+ @root_sales.sales_array.each do |sd|
106
+ prod = Product.find(sd.product_id)
107
+ if(prod.offerPrice > 7)
108
+ @offeredSale_counter +=sd.quantity
109
+ else
110
+ @nonOfferedSale_counter +=sd.quantity
111
+ end
112
+ end
113
+ end
114
+
115
+ def check_foodType
116
+ @root_sales.sales_array.each do |sd|
117
+ prod = Product.find(sd.product_id)
118
+ if(prod.foodType == "veg")
119
+ @vegCounter +=sd.quantity
120
+ else
121
+ @nonVegCounter +=sd.quantity
122
+ end
123
+ end
124
+ end
125
+
126
+ def check
127
+
128
+ end
129
+
130
+ def common_method
131
+ @product_sale.each do |product|
132
+ sale_boolean = product.created_at.between?(Time.now.midnight-1.day,Time.now.midnight)
133
+ if(sale_boolean)
134
+ @root_sales.sales_array << product
135
+ end
136
+ end
137
+ end
138
+
139
+ def main_method
140
+ common_method
141
+ check_profit
142
+ check_offer
143
+ check_foodType
144
+ @sale_on_order.totalSale = @totalSale_counter
145
+ @sale_on_order.profit = @profit_counter
146
+ @sale_on_order.nonVegSale = @nonVegCounter
147
+ @sale_on_order.vegSale = @vegCounter
148
+ @sale_on_order.offeredSale = @offeredSale_counter
149
+ @sale_on_order.nonOfferedSale = @nonOfferedSale_counter
150
+ end
151
+
152
+ end
153
+
154
+
155
+ # a concrete decorator
156
+ class DaySalesDecorator < BuisnessDecorator
157
+ def initialize(root_sales)
158
+ super(root_sales)
159
+ @product_sale = OrderItem.all
160
+ end
161
+
162
+ def main_method
163
+ common_method
164
+ check_profit
165
+ check_offer
166
+ check_foodType
167
+ @sale_on_order = Dsale.new
168
+ @sale_on_order.day = Date.today
169
+ @sale_on_order.totalSale = @totalSale_counter
170
+ @sale_on_order.profit = @profit_counter
171
+ @sale_on_order.nonVegSale = @nonVegCounter
172
+ @sale_on_order.vegSale = @vegCounter
173
+ @sale_on_order.offeredSale = @offeredSale_counter
174
+ @sale_on_order.nonOfferedSale = @nonOfferedSale_counter
175
+ @sale_on_order.save
176
+ end
177
+ end
178
+
179
+ # another concrete decorator
180
+ class WeekSalesDecorator < BuisnessDecorator
181
+ def initialize(root_sales)
182
+ super(root_sales)
183
+ @product_sale = Dsale.all
184
+ end
185
+
186
+ def common_method
187
+ @product_sale.each do |product|
188
+ sale_boolean = product.created_at.between?(Time.now.midnight-7.day,Time.now.midnight)
189
+ if(sale_boolean)
190
+ @root_sales.sales_array << product
191
+ end
192
+ end
193
+ end
194
+
195
+ def main_method
196
+ common_method
197
+ @root_sales.sales_array.each do |sd|
198
+ totalSale_counter_method
199
+ profit_counter_method
200
+ vegCounter_method
201
+ nonVegCounter_method
202
+ offeredSale_counter_method
203
+ nonOfferedSale_counter_method
204
+ end
205
+ #totalSale_counter += sd.totalSale
206
+ #profit_counter += sd.profit
207
+ #vegCounter += sd.vegSale
208
+ #nonVegCounter += sd.nonVegSale
209
+ #offeredSale_counter += sd.offeredSale
210
+ #nonOfferedSale_counter += sd.nonOfferedSale
211
+
212
+ @sale_on_order = Dsale.new
213
+ @sale_on_order.day = Date.today
214
+ @sale_on_order.totalSale = @totalSale_counter
215
+ @sale_on_order.profit = @profit_counter
216
+ @sale_on_order.nonVegSale = @nonVegCounter
217
+ @sale_on_order.vegSale = @vegCounter
218
+ @sale_on_order.offeredSale = @offeredSale_counter
219
+ @sale_on_order.nonOfferedSale = @nonOfferedSale_counter
220
+ @sale_on_order.save
221
+ end
222
+
223
+ end
224
+
225
+ # another concrete decorator
226
+ class MonthSalesDecorator < BuisnessDecorator
227
+ def initialize(root_sales)
228
+ super(root_sales)
229
+ @product_sale = Wsale.all
230
+ end
231
+
232
+ def common_method
233
+ @product_sale.each do |product|
234
+ sale_boolean = product.created_at.between?(Time.now.midnight-1.month,Time.now.midnight)
235
+ if(sale_boolean)
236
+ @root_sales.sales_array << product
237
+ end
238
+ end
239
+ end
240
+
241
+ def main_method
242
+ common_method
243
+ @root_sales.sales_array.each do |sd|
244
+ totalSale_counter_method
245
+ profit_counter_method
246
+ vegCounter_method
247
+ nonVegCounter_method
248
+ offeredSale_counter_method
249
+ nonOfferedSale_counter_method
250
+ end
251
+ #totalSale_counter += sd.totalSale
252
+ #profit_counter += sd.profit
253
+ #vegCounter += sd.vegSale
254
+ #nonVegCounter += sd.nonVegSale
255
+ #offeredSale_counter += sd.offeredSale
256
+ #nonOfferedSale_counter += sd.nonOfferedSale
257
+
258
+ @sale_on_order = Msale.new
259
+ @sale_on_order.month = Date.today.strftime("Week : %W")
260
+ @sale_on_order.totalSale = @totalSale_counter
261
+ @sale_on_order.profit = @profit_counter
262
+ @sale_on_order.nonVegSale = @nonVegCounter
263
+ @sale_on_order.vegSale = @vegCounter
264
+ @sale_on_order.offeredSale = @offeredSale_counter
265
+ @sale_on_order.nonOfferedSale = @nonOfferedSale_counter
266
+ @sale_on_order.save
267
+ end
268
+ end
@@ -0,0 +1,3 @@
1
+ module SalesAndOrdersDecorator
2
+ VERSION = "0.1.3"
3
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'sales_and_orders_decorator/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "sales_and_orders_decorator"
8
+ spec.version = SalesAndOrdersDecorator::VERSION
9
+ spec.authors = ["Subit Benny"]
10
+ spec.email = ["x16103602@student.ncirl.ie"]
11
+
12
+ spec.summary = %q{This is sales decorator which provides and stores the resultant data into day, week, month sales into database}
13
+ spec.description = %q{This is sales decorator which provides and stores the resultant data into day, week, month sales into database}
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
17
+ f.match(%r{^(test|spec|features)/})
18
+ end
19
+ spec.bindir = "exe"
20
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.14"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "minitest", "~> 5.0"
26
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sales_and_orders_decorator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - Subit Benny
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-04-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '5.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.0'
55
+ description: This is sales decorator which provides and stores the resultant data
56
+ into day, week, month sales into database
57
+ email:
58
+ - x16103602@student.ncirl.ie
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/sales_and_orders_decorator.rb
73
+ - lib/sales_and_orders_decorator/version.rb
74
+ - sales_and_orders_decorator.gemspec
75
+ homepage:
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.5.1
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: This is sales decorator which provides and stores the resultant data into
99
+ day, week, month sales into database
100
+ test_files: []