cats_core 1.1.32 → 1.1.33
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc7dd4f19838153db58356a4d33eb5f0fcff634279643a00e221084b170bd840
|
4
|
+
data.tar.gz: b423a14678d56634fb1b2d1f10ee7c9df20ef0129de0ac245b956a6943cf8029
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ebaeba514c4ebba0f6f3288efbadd58546cf94e5f5b1028808a037767c8b36df516b357ea404e1d7046fb26729334eed0d90c11b31fe267cff1f05ccf20b98e
|
7
|
+
data.tar.gz: 89514042663c0b651b09da15c7897e4c7f87b4a8df2648661181c692ea9b99b3c6575f4e592a595fe364e419ccc1175a1d08412a55d8d9a55231cbfe6de50943
|
@@ -12,12 +12,13 @@ module Cats
|
|
12
12
|
|
13
13
|
def message
|
14
14
|
allocation_item = params[:allocation_item]
|
15
|
-
|
15
|
+
commodity = allocation_item.allocation.commodity.name
|
16
|
+
title = "Allocation Notification - #{commodity}"
|
16
17
|
date = Date.today
|
17
18
|
body = <<~BODY
|
18
19
|
Commodity with the following specification has been allocated to you:
|
19
20
|
Batch No. = #{allocation_item.allocation.commodity.batch_no}
|
20
|
-
Commodity = #{
|
21
|
+
Commodity = #{commodity}
|
21
22
|
Quantity = #{allocation_item.quantity}
|
22
23
|
The commodity is expected to be delivered from #{allocation_item.from} to #{allocation_item.to}
|
23
24
|
BODY
|
@@ -7,13 +7,14 @@ module Cats
|
|
7
7
|
|
8
8
|
def message
|
9
9
|
dispatch = params[:dispatch]
|
10
|
-
|
10
|
+
commodity = dispatch.allocation_item.allocation.commodity.name
|
11
|
+
title = "Dispatch Notification - #{commodity}"
|
11
12
|
date = Date.today
|
12
13
|
body = <<~BODY
|
13
14
|
Commodity with the following details has been dispatched to you:
|
14
15
|
Dispatch Ref. = #{dispatch.reference_no}
|
15
16
|
Batch No. = #{dispatch.allocation_item.allocation.commodity.batch_no}
|
16
|
-
Commodity = #{
|
17
|
+
Commodity = #{commodity}
|
17
18
|
Allocated Quantity = #{dispatch.allocation_item.quantity}
|
18
19
|
Quantity = #{dispatch.quantity}
|
19
20
|
Truck Plate No. = #{dispatch.plate_no}
|
data/lib/cats/core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cats_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henock L.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-10-
|
11
|
+
date: 2021-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: active_model_serializers
|