Class: Nfe::CofinsSt
- Inherits:
-
Object
- Object
- Nfe::CofinsSt
- Defined in:
- lib/nfe_reader/taxation/cofins_st.rb
Instance Attribute Summary collapse
-
#aliquot ⇒ Object
readonly
Returns the value of attribute aliquot.
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#percentage ⇒ Object
readonly
Returns the value of attribute percentage.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(attrs = {}) ⇒ CofinsSt
constructor
A new instance of CofinsSt.
Constructor Details
#initialize(attrs = {}) ⇒ CofinsSt
Returns a new instance of CofinsSt.
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 6 def initialize(attrs = {}) # Valor Base @base = attrs[:vBC] # % COFINS ST @percentage = attrs[:pCOFINS] # Quantidade @amount = attrs[:qBCProd] # Aliquota COFINS ST @aliquot = attrs[:vAliqProd] # Valor COFINS ST @value = attrs[:vCOFINS] end |
Instance Attribute Details
#aliquot ⇒ Object (readonly)
Returns the value of attribute aliquot.
4 5 6 |
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 4 def aliquot @aliquot end |
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
4 5 6 |
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 4 def amount @amount end |
#base ⇒ Object (readonly)
Returns the value of attribute base.
4 5 6 |
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 4 def base @base end |
#percentage ⇒ Object (readonly)
Returns the value of attribute percentage.
4 5 6 |
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 4 def percentage @percentage end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
4 5 6 |
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 4 def value @value end |