Return-path: <pullrequests-reply@bitbucket.org>
Envelope-to: othoniel@ssf.com.mx
Delivery-date: Fri, 08 Jan 2016 14:50:08 -0600
Received: from lb01-ash.bitbucket.org ([131.103.20.165]:25055 helo=lb01.bitbucket.org)
	by vishnu.hosting-mexico.net with esmtps (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256)
	(Exim 4.86)
	(envelope-from <pullrequests-reply@bitbucket.org>)
	id 1aHdz2-003hQP-Ry
	for othoniel@ssf.com.mx; Fri, 08 Jan 2016 14:50:08 -0600
Received: from celery-worker-102.ash1.bb-inf.net (db04.ash-private.bitbucket.org [172.17.10.20])
	by lb01.bitbucket.org (Postfix) with ESMTP id 14C1EA811D3
	for <othoniel@ssf.com.mx>; Fri,  8 Jan 2016 20:49:25 +0000 (UTC)
Received: from celery-worker-102.ash1.bb-inf.net (localhost.localdomain [127.0.0.1])
	by celery-worker-102.ash1.bb-inf.net (Postfix) with ESMTP id 1340E1050BD
	for <othoniel@ssf.com.mx>; Fri,  8 Jan 2016 20:49:25 +0000 (UTC)
Content-Type: multipart/alternative;
 boundary="===============6926772628278644427=="
MIME-Version: 1.0
Subject: Re: [Bitbucket] Pull request #22: Extrasale uuid
 (globalgassf/globalnet3)
From: "javierssf" <pullrequests-reply@bitbucket.org>
To: othoniel@ssf.com.mx
Date: Fri, 08 Jan 2016 20:49:25 -0000
Auto-Submitted: auto-generated
Message-ID: <pr-globalgassf/globalnet3/22/updated/bddb66c3b2ff4090a173a828dc6726b2@bitbucket.org>
References: <pr-globalgassf/globalnet3/22@bitbucket.org>
Precedence: bulk
In-Reply-To: <pr-globalgassf/globalnet3/22@bitbucket.org>
X-Spam-Status: No, score=-0.8
X-Spam-Score: -7
X-Spam-Bar: /
X-Ham-Report: Spam detection software, running on the system "vishnu.hosting-mexico.net",
 has NOT identified this incoming email as spam.  The original
 message has been attached to this so you can view it or label
 similar future email.  If you have any questions, see
 root\@localhost for details.
 
 Content preview:  --- you can reply above this line --- Pull request #22 has
    been updated by javierssf to include new changes. https://bitbucket.org/globalgassf/globalnet3/pull-requests/22/extrasale-uuid
    [...] 
 
 Content analysis details:   (-0.8 points, 5.0 required)
 
  pts rule name              description
 ---- ---------------------- --------------------------------------------------
  0.0 URIBL_BLOCKED          ADMINISTRATOR NOTICE: The query to URIBL was blocked.
                             See
                             http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block
                              for more information.
                             [URIs: atlassian.com]
 -2.3 RCVD_IN_DNSWL_MED      RBL: Sender listed at http://www.dnswl.org/, medium
                              trust
                             [131.103.20.165 listed in list.dnswl.org]
 -0.0 SPF_PASS               SPF: sender matches SPF record
 -0.0 RP_MATCHES_RCVD        Envelope sender domain matches handover relay domain
 -0.0 RCVD_IN_MSPIKE_H4      RBL: Very Good reputation (+4)
                             [131.103.20.165 listed in wl.mailspike.net]
  1.5 MPART_ALT_DIFF_COUNT   BODY: HTML and text parts are different
  0.0 HTML_MESSAGE           BODY: HTML included in message
 -0.0 RCVD_IN_MSPIKE_WL      Mailspike good senders
X-Spam-Flag: NO

--===============6926772628278644427==
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit

--- you can reply above this line ---

Pull request #22 has been updated by javierssf to include new changes.

https://bitbucket.org/globalgassf/globalnet3/pull-requests/22/extrasale-uuid

Title: Extrasale uuid

Creator: javierssf

```
#!sql

CREATE TABLE IF NOT EXISTS `globalnetMigration`.`dia_festivo` (  
`id_dia_festivo` BIGINT NOT NULL auto_increment COMMENT 'Este campo hace referencia a la llave primaria de la tabla la cual no puede ser nula y es única.',  
`fecha_dia_festivo` timestamp NULL DEFAULT NULL COMMENT 'Fecha que se especifica para el dia festivo',  
`usuario` varchar(50) NOT NULL COMMENT 'Usuario que registra el dia festivo',   
`fecha_registro` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Fecha del registro del dia festivo',
uuid char(36) COMMENT 'Columna a eliminar',   PRIMARY KEY (`id_dia_festivo`), 
UNIQUE INDEX `id_dia_festivo_UNIQUE` (`id_dia_festivo` ASC),  
INDEX `dia_festivo_uuiid` (`uuid` ASC)) 
ENGINE=InnoDB  DEFAULT CHARSET=latin1  COMMENT='Tabla utilizada para el catalogo dia festivo.'


insert into globalnetMigration.dia_festivo (fecha_dia_festivo,usuario,fecha_registro,uuid)
select a.fecha_dia_festivo,a.usuario,a.fecha_registro,a.id_dia_festivo
from globalnet.dia_festivo as a
order by a.fecha_sistema;



CREATE TABLE IF NOT EXISTS `globalnetMigration`.`comision` ( 
`id_comision` BIGINT auto_increment NOT NULL  COMMENT 'Este campo hace referencia a la llave primaria de la tabla la cual no puede ser nula y es unica', 
`cuota_envases` DOUBLE NOT NULL COMMENT 'Este campo hace referencia al importe de la suma total de la nota ', 
`cuota_miles` DOUBLE NOT NULL COMMENT 'Este campo hace referecnia a la cantidad contenida en la nota, ya sea por kg o por litros.', 
`fecha_registro` TIMESTAMP NULL DEFAULT NULL COMMENT 'En este campo se guarda la fecha de creacion de un contacto del cliente.', 
uuid char(36) COMMENT 'Columna a eliminar',   
PRIMARY KEY (`id_comision`),   
UNIQUE INDEX `idproducto_UNIQUE` (`id_comision` ASC),   
INDEX `fk_comision_uuid_idx` (`uuid` ASC) ) 
ENGINE = InnoDB DEFAULT CHARACTER SET = latin1 COMMENT = 'Tabla utilizada para registrar las comisiones de los mayoristas.'

insert into globalnetMigration.comision (cuota_envases,cuota_miles,fecha_registro,uuid)
select a.cuota_envases,a.cuota_miles,a.fecha_registro,a.id_comision
from globalnet.comision as a
order by a.fecha_registro;


CREATE TABLE IF NOT EXISTS `globalnetMigration`.`condicion` ( 
`id_condicion` BIGINT auto_increment NOT NULL COMMENT 'Este campo hace referencia a la llave primaria de la tabla la cual no puede ser nula y es única.',  
`id_unidad` BIGINT NOT NULL COMMENT 'Unidad de mayorista a la que tiene asignada una condicion',  
`id_concepto_movimiento_gas`BIGINT NOT NULL COMMENT 'Llave foránea a la tabla movimientos_gas con la que cuenta una unidad de mayorista',  
`estatus` TINYINT(1) NOT NULL COMMENT 'Estatus de a condicion, activa o inactiva', 
`limite_maximo` DOUBLE NOT NULL COMMENT 'Limite maximo que puede registrar con un determinado movimiento de gas el mayorista.', 
uuid char(36) COMMENT 'Columna a eliminar',   
PRIMARY KEY (`id_condicion`, `id_unidad`, `id_concepto_movimiento_gas`),   
UNIQUE INDEX `id_condicion_UNIQUE` (`id_condicion` ASC),   
INDEX `fk_condicion_unidad` (`id_unidad` ASC),   
INDEX `fk_unidad_movimiento_gas_movimiento_gas_idx` (`id_concepto_movimiento_gas` ASC),   
INDEX `condicion_uuid_idx` (`uuid` ASC),   
CONSTRAINT `fk_condicion_concepto_movimiento_gas`     
FOREIGN KEY (`id_concepto_movimiento_gas`)     
REFERENCES `globalnetMigration`.`concepto_movimiento_gas` (`id_concepto_movimiento_gas`)    
ON DELETE NO ACTION     ON UPDATE NO ACTION,   
CONSTRAINT `fk_condicion_unidad`     F
OREIGN KEY (`id_unidad`)     
REFERENCES `globalnetMigration`.`unidad` (`id_unidad`)     
ON DELETE NO ACTION     ON UPDATE NO ACTION)
ENGINE = InnoDB DEFAULT CHARACTER SET = latin1 COMMENT = 'Tabla utilizada en la se especifica los movimientos de gas y el maximo a reportar por mayorista.'

insert into globalnetMigration.condicion (id_unidad,id_concepto_movimiento_gas,estatus,limite_maximo,uuid)
select b.id_unidad,c.id_concepto_movimiento_gas,a.estatus,a.limite_maximo,a.id_condicion
from globalnet.condicion as a
inner join globalnetMigration.unidad as b on a.id_unidad = b.uuid
inner join globalnetMigration.concepto_movimiento_gas as c on a.id_concepto_movimiento_gas = c.uuid;


CREATE TABLE IF NOT EXISTS `globalnetMigration`.`liquidacion_extra` (  
`id_liquidacion_extra` BIGINT auto_increment NOT NULL COMMENT 'Este campo hace referencia a la llave primaria de la tabla la cual no puede ser nula y es unica', 
`id_cliente` BIGINT NOT NULL COMMENT 'Este campo es una llave foranea de la tabla cliente el cual es no nulo .', 
`importe_total` DOUBLE NULL DEFAULT NULL COMMENT 'La cantidad total del importe en la liquidacion extra.',  
`fecha_registro` TIMESTAMP NULL DEFAULT NULL COMMENT 'En este campo se guarda la fecha en la que se creo el registro.', 
`descripcion` VARCHAR(300) NULL DEFAULT NULL COMMENT 'Este campo es para poder dar una descripcion de la liquidacion de lo vendido (chatarra, vehiculos, etc)',   
`id_planta` BIGINT NOT NULL COMMENT 'Llave foranea a la tabla planta para relacionar la liquidacion a una planta.',   
`fecha` DATE NOT NULL COMMENT 'FECHA DE LA LIQUIDACION',   
`id_tipo_pago` BIGINT NOT NULL COMMENT 'TIPO DE PAGO DE LA LIQUIDACION',   
`usuario` VARCHAR(50) NOT NULL COMMENT 'USUARIO QUE REALIZA LA LIQUIDACION', 
uuid char(36) COMMENT 'Columna a eliminar',   PRIMARY KEY (`id_liquidacion_extra`),   
UNIQUE INDEX `idproducto_UNIQUE` (`id_liquidacion_extra` ASC),   
INDEX `fk_liquidacion_extra_cliente1_idx` (`id_cliente` ASC),   
INDEX `fk_liquidacion_extra_planta_idx` (`id_planta` ASC),   
INDEX `fk_liquidacion_extra_tipo_pago` (`id_tipo_pago` ASC),   
INDEX `fk_liquidacion_extra_uuid` (`uuid` ASC),   
CONSTRAINT `fk_liquidacion_extra_cliente1`     
FOREIGN KEY (`id_cliente`)     
REFERENCES `globalnetMigration`.`cliente` (`id_cliente`)    
ON DELETE NO ACTION     ON UPDATE NO ACTION,   
CONSTRAINT `fk_liquidacion_extra_planta`     
FOREIGN KEY (`id_planta`)     
REFERENCES `globalnetMigration`.`planta` (`id_planta`)     
ON DELETE NO ACTION     ON UPDATE NO ACTION,   
CONSTRAINT `fk_liquidacion_extra_tipo_pago`     
FOREIGN KEY (`id_tipo_pago`)     REFERENCES `globalnetMigration`.`tipo_pago` (`id_tipo_pago`))
 ENGINE = InnoDB DEFAULT CHARACTER SET = latin1 COMMENT = 'Tabla utilizada para el registro de liquidaciones de material que no sea venta de gas.'



CREATE TABLE IF NOT EXISTS `globalnetMigration`.`comision_cobrador` ( 
`id_comision_cobrador` BIGINT auto_increment NOT NULL COMMENT 'Este campo hace referencia a la llave primaria de la tabla la cual no puede ser nula y es única',  
`comision` DOUBLE NOT NULL COMMENT 'Comision registrada.',   `total_cobrado` DOUBLE NOT NULL COMMENT 'Total cobrado.',
`fecha_sistema` TIMESTAMP NULL DEFAULT NULL COMMENT 'Fecha en que se registro la comision',  
`id_usuario` BIGINT NOT NULL COMMENT 'Usuario que registro la comision', 
`id_empleado` BIGINT NOT NULL COMMENT 'Nombre del cobrador que esta relacionado a la comision',   
`fecha_inicial` TIMESTAMP NULL DEFAULT NULL COMMENT 'Fecha inicial de la comision',   
`fecha_final` TIMESTAMP NULL DEFAULT NULL COMMENT 'Fecha final de la comsion', 
uuid char(36) COMMENT 'Columna a eliminar',   PRIMARY KEY (`id_comision_cobrador`),   
UNIQUE INDEX `id_comision_cobrador_UNIQUE` (`id_comision_cobrador` ASC),   
INDEX `fk_comision_cobrador_usuario_idx` (`id_usuario` ASC),   
INDEX `fk_comision_cobrador_empleado_idx` (`id_empleado` ASC),   
INDEX `fk_comision_cobrador_uuid_idx` (`uuid` ASC),   
CONSTRAINT `fk_comision_cobrador_empleado`     
FOREIGN KEY (`id_empleado`)     
REFERENCES `globalnetMigration`.`empleado` (`id_empleado`)    
 ON DELETE NO ACTION     ON UPDATE NO ACTION,   
 CONSTRAINT `fk_comision_cobrador_usuario`     
 FOREIGN KEY (`id_usuario`)     
 REFERENCES `globalnetMigration`.`usuario` (`id_usuario`)     
 ON DELETE NO ACTION     ON UPDATE NO ACTION) 
ENGINE = InnoDB DEFAULT CHARACTER SET = latin1 COMMENT = 'Tabla utilizada para llevar el registro de las comisiones de los cobradores.'

insert into globalnetMigration.comision_cobrador (comision,total_cobrado,fecha_sistema,id_usuario,id_empleado,fecha_inicial,fecha_final,uuid)
select a.comision,a.total_cobrado,a.fecha_sistema,b.id_usuario,c.id_empleado,a.fecha_inicial,a.fecha_final,id_comision_cobrador
from globalnet.comision_cobrador as a
inner join globalnetMigration.usuario as b on a.id_usuario = b.uuid
inner join globalnetMigration.empleado as c on a.id_empleado = c.uuid
order by a.fecha_sistema;

CREATE TABLE IF NOT EXISTS `globalnetMigration`. `detalle_comision_cobrador` (
  `id_detalle_comision_cobrador` BIGINT auto_increment NOT NULL  COMMENT 'Este campo hace referencia a la llave primaria de la tabla la cual no puede ser nula y es unica',
  `id_movimiento_contable` char(36) NOT NULL COMMENT 'Llave foranea a la tabla movimiento contable.',
  `id_comision_cobrador` char(36) NOT NULL COMMENT 'Llave foranea a la tabla comision cobrador.',
  uuid char(36) COMMENT 'Columna a eliminar',
  PRIMARY KEY (`id_detalle_comision_cobrador`),
  UNIQUE KEY `id_colonia_UNIQUE` (`id_detalle_comision_cobrador`),
  KEY `fk_comision_cobrador_movimiento_contable_idx` (`id_movimiento_contable`),
  KEY `fk_detalle_comision_cobrador_detalle_comision_cobrador_idx` (`id_comision_cobrador`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='Tabla utilizada para acumular los detalles dentro de una comision de un cobrador.';

insert into globalnetMigration.detalle_comision_cobrador (id_movimiento_contable,id_comision_cobrador,uuid)
select a.id_movimiento_contable,a.id_comision_cobrador, a.id_detalle_comision_cobrador,
from globalnet.detalle_comision_cobrador as a
inner join globalnetMigration.movimiento_contable as b on a.id_movimiento_contable = b.uuid
inner join globalnetMigration.comision_cobrador as c on a.id_comision_cobrador = c.uuid;


```


Updated list of changes:

000f628b17ea by javierssf: "extrasale"
4adc70764fbf by javierssf: "extrasale"
a2ef96fdd55d by javierssf: "Merge branch 'servicio' of https://bitbucket.org/globalgassf/globalnet3 into ext…"
45d780295a04 by javierssf: "extra sale"
bfd07ae842f1 by javierssf: "servicio"
... and 2 more.



--

Unwatch this pull request to stop receiving email updates:
https://bitbucket.org/globalgassf/globalnet3/pull-requests/22/unwatch/ogutierrezssg/c064a5d44379b2ee50b25c67038d3300aa76b9db/

--===============6926772628278644427==
MIME-Version: 1.0
Content-Type: text/html; charset="utf-8"
Content-Transfer-Encoding: 7bit

<!DOCTYPE HTML>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
  </head>
  <body style="font: 14px/1.4285714 Arial, sans-serif; color: #333;">
    <table style="width: 100%; border-collapse: collapse;">
      <tbody>
        <tr>
          <td style="background: #f5f5f5; padding: 10px 10px 0; font: 14px/1.4285714 Arial, sans-serif;">
            <table style="width: 100%; border-collapse: collapse;">
              <tbody>
                
                
                
                
                  
                     <tr>
  <td id="main" style="font: 14px/1.4285714 Arial, sans-serif; padding: 0; background-color: #ffffff; border-radius: 5px">
    <div style="border: 1px solid #cccccc; border-radius: 5px; padding: 20px">
      <table style="width: 100%; border-collapse: collapse">
        <tbody>
          <tr>
            <td style="font: 14px/1.4285714 Arial, sans-serif; padding: 0">
              <table style="width: 100%; border-collapse: collapse">
                <tbody>
                  <tr>
                    <td id="avatar" style="font: 14px/1.4285714 Arial, sans-serif; padding: 0; width: 32px; vertical-align: top">
                      
                      <img width="32" height="32" alt="javierssf" src="https://avatar-cdn.atlassian.com/dd0f8d1bf4eb654591571782af85b0f3?s=32&amp;ts=1452283236" style="border-radius: 3px">
                      
                    </td>
                    <td id="content" style="font: 14px/1.4285714 Arial, sans-serif; padding: 0 0 0 10px">
                      
<table style="width: 100%; border-collapse: collapse">
  <tr>
    <td class="user-action" style="font: 14px/1.4285714 Arial, sans-serif; padding: 0; line-height: 1">
      <span>
        
          <strong>javierssf</strong> updated pull request #22:
        
      </span>
    </td>
  </tr>
  <tr>
    <td class="title" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px 0 0; font-weight: bold; line-height: 1.2">
      <a href="https://bitbucket.org/globalgassf/globalnet3/pull-requests/22/extrasale-uuid" style="color: #3572b0; text-decoration: none">Extrasale uuid</a>
    </td>
  </tr>
  <tr>
    <td class="commit-list-container" style="font: 14px/1.4285714 Arial, sans-serif; padding: 10px 0 20px">
      

<table class="commit-list" style="width: 100%; border-collapse: collapse">
  <tr>
    <th class="user" style="border-bottom: 1px solid #ccc; text-align: left; font-weight: bold; padding: 5px; width: 132px">Author</th>
    <th class="commit" style="border-bottom: 1px solid #ccc; text-align: left; font-weight: bold; padding: 5px; width: 50px">Commit</th>
    <th class="message" style="border-bottom: 1px solid #ccc; text-align: left; font-weight: bold; padding: 5px">Message</th>
    <th class="date" style="border-bottom: 1px solid #ccc; text-align: left; font-weight: bold; padding: 5px; width: 100px">Date</th>
  </tr>
  
    <tr>
      <td class="user" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 132px">
        
          
            
              <img height="24" width="24" alt="javierssf" src="https://avatar-cdn.atlassian.com/dd0f8d1bf4eb654591571782af85b0f3?s=24&amp;ts=1452283236" style="vertical-align: top; border-radius: 3px">
            
            <span style="padding: 0 0 0 5px">javierssf</span>
          
        
      </td>
      <td class="commit" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 50px; font-family: Monaco, monospace; font-size: 12px">
        
        <a href="https://bitbucket.org/globalgassf/globalnet3/commits/000f628b17ea4b613476f6f69972629421dfe827" style="color: #3572b0; text-decoration: none">000f628</a>
      </td>
      <td class="message" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070">
        extrasale
      </td>
      <td class="date" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 100px">
        <div>
          8 Jan 2016
        </div>
      </td>
    </tr>
  
    <tr>
      <td class="user" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 132px">
        
          
            
              <img height="24" width="24" alt="javierssf" src="https://avatar-cdn.atlassian.com/dd0f8d1bf4eb654591571782af85b0f3?s=24&amp;ts=1452283236" style="vertical-align: top; border-radius: 3px">
            
            <span style="padding: 0 0 0 5px">javierssf</span>
          
        
      </td>
      <td class="commit" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 50px; font-family: Monaco, monospace; font-size: 12px">
        
        <a href="https://bitbucket.org/globalgassf/globalnet3/commits/4adc70764fbf16fcd1512ae716dcb3059ed31588" style="color: #3572b0; text-decoration: none">4adc707</a>
      </td>
      <td class="message" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070">
        extrasale
      </td>
      <td class="date" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 100px">
        <div>
          8 Jan 2016
        </div>
      </td>
    </tr>
  
    <tr>
      <td class="user" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 132px">
        
          
            
              <img height="24" width="24" alt="javierssf" src="https://avatar-cdn.atlassian.com/dd0f8d1bf4eb654591571782af85b0f3?s=24&amp;ts=1452283236" style="vertical-align: top; border-radius: 3px">
            
            <span style="padding: 0 0 0 5px">javierssf</span>
          
        
      </td>
      <td class="commit" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 50px; font-family: Monaco, monospace; font-size: 12px">
        
        <a href="https://bitbucket.org/globalgassf/globalnet3/commits/a2ef96fdd55dcc3394e133467f07e9ff3a970c54" style="color: #3572b0; text-decoration: none">a2ef96f</a>
      </td>
      <td class="message" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070">
        Merge branch 'servicio' of https://bitbucket.org/globalgassf/globalnet3 into extrasale-UUID
      </td>
      <td class="date" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 100px">
        <div>
          8 Jan 2016
        </div>
      </td>
    </tr>
  
    <tr>
      <td class="user" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 132px">
        
          
            
              <img height="24" width="24" alt="javierssf" src="https://avatar-cdn.atlassian.com/dd0f8d1bf4eb654591571782af85b0f3?s=24&amp;ts=1452283236" style="vertical-align: top; border-radius: 3px">
            
            <span style="padding: 0 0 0 5px">javierssf</span>
          
        
      </td>
      <td class="commit" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 50px; font-family: Monaco, monospace; font-size: 12px">
        
        <a href="https://bitbucket.org/globalgassf/globalnet3/commits/45d780295a04c2a904e67d002ab1a6644ed7725a" style="color: #3572b0; text-decoration: none">45d7802</a>
      </td>
      <td class="message" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070">
        extra sale
      </td>
      <td class="date" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 100px">
        <div>
          8 Jan 2016
        </div>
      </td>
    </tr>
  
    <tr>
      <td class="user" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 132px">
        
          
            
              <img height="24" width="24" alt="javierssf" src="https://avatar-cdn.atlassian.com/dd0f8d1bf4eb654591571782af85b0f3?s=24&amp;ts=1452283236" style="vertical-align: top; border-radius: 3px">
            
            <span style="padding: 0 0 0 5px">javierssf</span>
          
        
      </td>
      <td class="commit" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 50px; font-family: Monaco, monospace; font-size: 12px">
        
        <a href="https://bitbucket.org/globalgassf/globalnet3/commits/bfd07ae842f1fd16fb5a8ea26b6f83c4afd21635" style="color: #3572b0; text-decoration: none">bfd07ae</a>
      </td>
      <td class="message" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070">
        servicio
      </td>
      <td class="date" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070; width: 100px">
        <div>
          8 Jan 2016
        </div>
      </td>
    </tr>
  

  <tr>
    <td colspan="4" style="font: 14px/1.4285714 Arial, sans-serif; padding: 5px; border-bottom: 1px solid #ccc; line-height: 24px; color: #707070">
      
        2 more commits.
      
    </td>
  </tr>

</table>

    </td>
  </tr>
</table>

                    </td>
                  </tr>
                </tbody>
              </table>
            </td>
          </tr>
          
  <tr>
    <td class="actions" colspan="2" style="font: 14px/1.4285714 Arial, sans-serif; padding: 10px 0 0; border-top: 1px solid #cccccc; line-height: 1">
      
      
        
          <a href="https://bitbucket.org/globalgassf/globalnet3/pull-requests/22/extrasale-uuid" style="color: #3572b0; text-decoration: none">View this pull request</a> or add a comment by replying to this email.
        
      
    </td>
  </tr>

        </tbody>
      </table>
    </div>
  </td>
</tr>

                  
                
                <tr>
                  

<td style="padding: 20px 0; color: #707070;">
  <table style="width: 100%; border-collapse: collapse;">
    <tbody>
      <tr>
        <td style="padding: 0">
          
            
            
              
              
                
                  <a style="color: #3572b0; text-decoration: none;" href="https://bitbucket.org/globalgassf/globalnet3/pull-requests/22/unwatch/ogutierrezssg/c064a5d44379b2ee50b25c67038d3300aa76b9db/">Unwatch this pull request</a> to stop receiving email updates.
                
              
            
          
          
        </td>
        <td style="padding: 0">
          
            

  <img width="1" height="1" src="https://bitbucket.org/account/notifications/mark-read/249064934/12923c1589b353c5f8486a0e18d5facd178c24c9/">


          
        </td>
        <td style="text-align: right; width: 100px; padding: 0">
          <a href="https://bitbucket.org" style="color: #3572b0; text-decoration: none;">
            <img width="100" height="18" src="https://d3oaxc4q5k2d6q.cloudfront.net/m/20ccbc52706b/img/email/logo.gif" alt="Bitbucket" />
          </a>
        </td>
      </tr>
    </tbody>
  </table>
</td>

                </tr>
              </tbody>
            </table>
          </td>
        </tr>
      </tbody>
    </table>
  </body>
</html>

--===============6926772628278644427==--
