Class: NfeReader::Pis

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

Constant Summary

Constants included from AttributeHelper

AttributeHelper::WITHELIST

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from AttributeHelper

#attributes, #attributes_to_hash

Constructor Details

#initialize(attrs = {}) ⇒ Pis

Fieds Values

cst:

PISAliq:
  01 - Operação Tributável 
       (base de cálculo = valor da operação alíquota normal (cumulativo/não cumulativo));
  02 - Operação Tributável 
       (base de cálculo = valor da operação (alíquota diferenciada));
PISQtde:
  03 - Operação Tributável 
       (base de cálculo = quantidade vendida x alíquota por unidadede produto);
PISNT:
  04 - Operação Tributável
       (tributação monofásica(alíquota zero));
  06 - Operação Tributável(alíquota zero);
  07 - Operação Isenta da Contribuição;
  08 - Operação Sem Incidência da Contribuição;
  09 - Operação com Suspensão da Contribuição;
PISOutr:
  99 - Outras Operações;


29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/nfe_reader/taxation/pis.rb', line 29

def initialize(attrs = {})
  attrs = attrs.values[0]

  # Cst PIS
  @cst = attrs[:CST]
  # Base PIS
  @base = attrs[:vBC]
  # % PIS
  @percentage = attrs[:pPIS]
  # Valor PIS
  @value = attrs[:vPIS]
  # Quantidade Vendida
  @amount = attrs[:qBCProd]
  # Alíquota do PIS
  @aliquot = attrs[:vAliqProd]
end

Instance Attribute Details

#aliquotObject (readonly)

Returns the value of attribute aliquot.



6
7
8
# File 'lib/nfe_reader/taxation/pis.rb', line 6

def aliquot
  @aliquot
end

#amountObject (readonly)

Returns the value of attribute amount.



6
7
8
# File 'lib/nfe_reader/taxation/pis.rb', line 6

def amount
  @amount
end

#baseObject (readonly)

Returns the value of attribute base.



6
7
8
# File 'lib/nfe_reader/taxation/pis.rb', line 6

def base
  @base
end

#cstObject (readonly)

Returns the value of attribute cst.



6
7
8
# File 'lib/nfe_reader/taxation/pis.rb', line 6

def cst
  @cst
end

#percentageObject (readonly)

Returns the value of attribute percentage.



6
7
8
# File 'lib/nfe_reader/taxation/pis.rb', line 6

def percentage
  @percentage
end

#valueObject (readonly)

Returns the value of attribute value.



6
7
8
# File 'lib/nfe_reader/taxation/pis.rb', line 6

def value
  @value
end