This file contains hidden or 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 interface AddressProxy { | |
public void setStreet(String street); | |
public String getStreet(); | |
public void setTown(String town); | |
public String getTown(); |
This file contains hidden or 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 interface SaveIssuerRequest extends SaveRequest<IssuerProxy, IssuerProxy> { | |
public IssuerProxy getModel(); | |
public void setModel(IssuerProxy model); | |
} | |
public interface IssuerProxy extends RecordResult<IssuerProxy> { | |
This file contains hidden or 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
Initializing App Engine server | |
may 20, 2015 12:30:57 PM com.google.apphosting.utils.config.AppEngineWebXmlReader readAppEngineWebXml | |
Información: Successfully processed C:\Users\Daniel\git\VBILicenseManager\VBILicenseManager\war\WEB-INF/appengine-web.xml | |
may 20, 2015 12:30:57 PM com.google.apphosting.utils.config.AbstractConfigXmlReader readConfigXml | |
Información: Successfully processed C:\Users\Daniel\git\VBILicenseManager\VBILicenseManager\war\WEB-INF/web.xml | |
may 20, 2015 12:30:57 PM com.google.appengine.tools.development.SystemPropertiesManager setSystemProperties | |
Información: Overwriting system property key 'java.util.logging.config.file', value 'C:\Users\Daniel\.m2\repository\com\google\appengine\appengine-java-sdk\1.9.17\appengine-java-sdk\appengine-java-sdk-1.9.17\config\sdk\logging.properties' with value 'WEB-INF/logging.properties' from 'C:\Users\Daniel\git\VBILicenseManager\VBILicenseManager\war\WEB-INF\appengine-web.xml' | |
may 20, 2015 12:30:57 PM com.google.apphosting.utils.jetty.JettyLogger info | |
Inf |
This file contains hidden or 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
CREATE TABLE [dbo].[IndicadoresDeProductos]( | |
[Id] [decimal](18, 0) IDENTITY(1,1) NOT NULL, | |
[IdGasolinera] [decimal](18, 0) NOT NULL, | |
[Fecha] [datetime] NOT NULL, | |
[IdProducto] [decimal](18, 0) NOT NULL, | |
[CantidadVenta] [decimal](18, 2) NOT NULL, | |
[Jarreo] [decimal](18, 2) NULL, | |
[MontoVenta] [decimal](18, 2) NULL, | |
[SaldoInicial] [decimal](18, 2) NULL, | |
[Entradas] [decimal](18, 2) NULL, |
This file contains hidden or 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
ALTER TABLE dbo.Valor ADD | |
Contado varchar(1) NULL | |
GO | |
update Valor set Contado='S' where TipoDeValor in ('Efectivo','Vales/Tarjetas') | |
GO | |
update Valor set Contado='N' where Contado is null | |
GO | |
ALTER TABLE dbo.MediosDePago ADD | |
MontoContado decimal(18, 2) NULL | |
GO |
This file contains hidden or 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
package com.asbitec.vbi.framework.client.chart; | |
import java.util.ArrayList; | |
import java.util.Collections; | |
import java.util.List; | |
import com.asbitec.vbi.framework.client.dashboard.DimensionModel; | |
import com.asbitec.vbi.framework.client.dimesions.CategoryConfig; | |
import com.asbitec.vbi.framework.client.dimesions.DimensionConfig; | |
import com.asbitec.vbi.framework.client.dimesions.PropertyEditorValueProvider; |
This file contains hidden or 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
19:32:38.105 [ERROR] [vbiapp] Uncaught exception escaped | |
com.google.gwt.event.shared.UmbrellaException: Exception caught: Exception caught: null | |
at com.google.gwt.event.shared.HandlerManager.fireEvent(HandlerManager.java:129) | |
at com.sencha.gxt.chart.client.chart.series.Series.onMouseDown(Series.java:403) | |
at com.sencha.gxt.chart.client.chart.Chart.onMouseDown(Chart.java:509) | |
at com.sencha.gxt.chart.client.draw.DrawComponent.onBrowserEvent(DrawComponent.java:189) | |
at com.google.gwt.user.client.DOM.dispatchEventImpl(DOM.java:1467) | |
at com.google.gwt.user.client.DOM.dispatchEvent(DOM.java:1406) | |
at com.google.gwt.user.client.impl.DOMImplStandard.dispatchEvent(DOMImplStandard.java:323) |
This file contains hidden or 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
package com.foo.client.utils; | |
import com.foo.client.constants.CSS; | |
import com.foo.shared.log.Logger; | |
import com.foo.shared.log.LoggerFactory; | |
import com.google.gwt.dom.client.Document; | |
import com.google.gwt.dom.client.Element; | |
import com.google.gwt.user.client.ui.Widget; | |
This file contains hidden or 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 abstract class Example implements IsWidget { | |
private String title; | |
public Example(String title) { | |
super(); | |
this.title = title; | |
} | |
public String getTitle() { | |
return title; |
This file contains hidden or 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
package com.asbitec.vbi.test.client.examples.charts; | |
import java.io.Serializable; | |
import java.util.ArrayList; | |
import java.util.Date; | |
import java.util.List; | |
import com.asbitec.vbi.test.client.examples.Example; | |
import com.google.gwt.core.client.Scheduler; | |
import com.google.gwt.core.client.Scheduler.ScheduledCommand; |