This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div v-show="visualizacaoResumida"> | |
<q-field label="Valor fatura" > | |
<q-input v-model="item2.valor" color="secondary" class="q-pt-sm" prefix="R$" type="number"/> | |
</q-field> | |
<q-field label="Data do documento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataDocumento" type="date" format="MM/DD/YYYY" color="secondary"/> | |
</q-field> | |
<q-field label="Data de vencimento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataVencimento" type="date" format="MM/DD/YYYY" color="secondary"/> | |
</q-field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div v-show="visualizacaoResumida"> | |
<q-field label="Valor fatura" > | |
<q-input v-model="item2.valor" color="secondary" class="q-pt-sm" prefix="R$" type="number"/> | |
</q-field> | |
<q-field label="Data do documento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataDocumento" type="date" format="MM/DD/YYYY" color="secondary"/> | |
</q-field> | |
<q-field label="Data de vencimento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataVencimento" type="date" format="MM/DD/YYYY" color="secondary"/> | |
</q-field> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bg-white q-pa-sm q-mt-sm shadow-2" v-for="(item2, index2) in item.faturas" v-bind:key="index2"> | |
<!--<div v-show="!visualizacaoResumida"> | |
<fatura-view :fatura-param="item2" :empresa="item"></fatura-view> | |
</div>--> | |
<div v-show="visualizacaoResumida"> | |
<q-field label="Valor fatura" > | |
<q-input v-model="item2.valor" color="secondary" class="q-pt-sm" prefix="R$" type="number"/> | |
</q-field> | |
<q-field label="Data do documento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataDocumento" type="date" format="MM/DD/YYYY" color="secondary"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bg-white q-pa-sm q-mt-sm shadow-2" v-for="(item2, index2) in item.faturas" v-bind:key="index2"> | |
<!--<div v-show="!visualizacaoResumida"> | |
<fatura-view :fatura-param="item2" :empresa="item"></fatura-view> | |
</div>--> | |
<div v-show="visualizacaoResumida"> | |
<q-field label="Valor fatura" > | |
<q-input v-model="item2.valor" color="secondary" class="q-pt-sm" prefix="R$" type="number"/> | |
</q-field> | |
<q-field label="Data do documento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataDocumento" type="date" format="MM/DD/YYYY" color="secondary"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region assembly WindowsInput, Version=1.0.4.0, Culture=neutral, PublicKeyToken=9b287f7dc5073cad | |
// C:\Users\bruno\Documents\clientes\agapys\robotc\packages\InputSimulator.1.0.4.0\lib\net20\WindowsInput.dll | |
#endregion | |
namespace WindowsInput.Native | |
{ | |
// | |
// Resumo: | |
// The list of VirtualKeyCodes (see: http://msdn.microsoft.com/en-us/library/ms645540(VS.85).aspx) | |
public enum VirtualKeyCode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum LogStatus | |
{ | |
SUCCESS, WARNING, ERROR, INFO, DEBUG | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dynamic button1 = JObject.Parse(@"{}"); | |
button1.especific = "name"; | |
button1.value = "Print"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum SearchType | |
{ | |
CNPJ, CPF, IE | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum ChartTypesEnum | |
{ | |
BAR, HORIZONTAL_BAR, PIE, DOUGNUT, LINE | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum Spot | |
{ | |
ALL, GLOBAL, COMPUTER | |
} |