parent
b4cb921834
commit
5e7da0303f
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ventaboletosadm</artifactId>
|
||||
<version>1.0.61</version>
|
||||
<version>1.0.62</version>
|
||||
<packaging>war</packaging>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -1922,15 +1922,20 @@ public void onClick$btnTestEmailFlexBus(Event ev) throws InterruptedException {
|
|||
|
||||
RetornoStoreVO retornoStoreVO = MercadoPagoService.getInstance().retornarStoreMercadoPago(
|
||||
txtUserIdMercadoPago.getValue(), txtUrlApiMercadoPago.getValue(), txtTokenMercadoPago.getValue());
|
||||
|
||||
if (retornoStoreVO != null){
|
||||
for (StoreVO vo : retornoStoreVO.getResults()) {
|
||||
if (store != null && vo.toString().equals(store)) {
|
||||
this.storeVO = vo;
|
||||
}
|
||||
lsStoreMercadoPago.add(vo);
|
||||
}
|
||||
}
|
||||
|
||||
RetornoPosVO retornoPosVO = MercadoPagoService.getInstance()
|
||||
.retornarPosMercadoPago(txtUrlApiMercadoPago.getValue(), txtTokenMercadoPago.getValue());
|
||||
|
||||
if (retornoPosVO != null) {
|
||||
for (PosVO vo : retornoPosVO.getResults()) {
|
||||
if (pos != null && vo.toString().equals(pos)) {
|
||||
this.posVO = vo;
|
||||
|
@ -1938,6 +1943,7 @@ public void onClick$btnTestEmailFlexBus(Event ev) throws InterruptedException {
|
|||
lsPosMercadoPago.add(vo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public Combobox getCmbEstadoInscEstadual() {
|
||||
return cmbEstadoInscEstadual;
|
||||
|
|
Loading…
Reference in New Issue