Class: Nfe::Reader::CofinsSt

Inherits:
Object
  • Object
show all
Includes:
AttributeHelper
Defined in:
lib/nfe_reader/taxation/cofins_st.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from AttributeHelper

#attributes, #attributes_to_hash

Constructor Details

#initialize(attrs = {}) ⇒ CofinsSt

Returns a new instance of CofinsSt.



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 9

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

#aliquotObject (readonly)

Returns the value of attribute aliquot.



7
8
9
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 7

def aliquot
  @aliquot
end

#amountObject (readonly)

Returns the value of attribute amount.



7
8
9
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 7

def amount
  @amount
end

#baseObject (readonly)

Returns the value of attribute base.



7
8
9
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 7

def base
  @base
end

#percentageObject (readonly)

Returns the value of attribute percentage.



7
8
9
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 7

def percentage
  @percentage
end

#valueObject (readonly)

Returns the value of attribute value.



7
8
9
# File 'lib/nfe_reader/taxation/cofins_st.rb', line 7

def value
  @value
end