SlideShare uma empresa Scribd logo
1 de 9
Las fases del ciclo de vida del software




           Yustin Daniela Liscano Bohorquez
          Anyela Alejandra Andrade Aldana




                 Carlos Javier Pastrana




                     ADSI (409862)
Centro de la Industria, La Empresa Y Los Servicios (CIES)

                         Neiva
                       25/02/2013
1. Identificación de Requerimientos:


Construir un software para conocer las ventas del día:
Rta: los requerimientos que pide en estos momentos el cliente es realizar un software para llevar
las ventas del día y que muestre el valor total de las ventas.




    2. Análisis de Requerimientos


Los pasos que se deben seguir pueden ser:


    1.   Rta: para el análisis de requerimiento lo primero que se debe de hacer es como su
         nombre lo dice analizar lo que está pidiendo el usuario que en el momento es hacer un
         software para las ventas del día; entonces lo primero que se debe de hacer es identificar
         las variables que vamos a utilizar; que son:

    -    P1, P2, P3, P4, P5;
    -    Pr1, Pr2, Pr3, Pr4, Pr5;
    -    Total;

    2. Luego de esto cuantos botones utilizaremos para este caso solo utilizare 6botones; 5 que
       se llamaran Compra para cada uno de los casos, y 1 que se llamara ventas del día.

    3. En este punto también se hace la construcción del diccionario de datos que es donde se
       va a puntualizar los datos que vamos a necesitar en el desarrollo del programa
       incluyendo el nombre, descripción, contenido y organización:

    3.1. Diccionario de Datos:

         Nombre: Ventas del día.
         ¿Qué queremos con esto?:
    Desarrollar un programa que muestre las ventas del día y al final del día muestreen pantalla
    el resultado total de las ventas y esto lo realizaremos con el leguaje unificado de JavaScript.
         Para ello utilizaremos una serie de variables adecuadas, unas funciones y botones para
         desarrollar más adecuadamente lo que pide el usuario.




   1. Construir el diagrama de flujo del proceso (representación o modelo de la solución)
(Aquí va el diagrama de flujo para las ventas del día)
Diagrama de Flujo:
Inicio


P1=0, P2=0, P3=0, P4=0,
P5=0;Pr1=0, Pr2=0, Pr3=0,
Pr4=0, Pr5=0;Total=0;

P1=P1+1; Pr1=Pr1+1; Pr1=0;


P2=P2+1; Pr2=Pr2+1; Pr2=0;

P3=P3+1; Pr3=Pr3+1; Pr3=0;


P4=P4+1; Pr4=Pr4+1 ; Pr4=0:


P5=P5+1; Pr5=Pr5+1; Pr5=0;

;
Total=P1 + P2 + P3 + P4 + P5


        Mostrar Total


              Fin
3. Diseño

Rta: Aquí le mostrare el diseño preliminar de como quedara el ejecutable del problema
planteado por el usuario que en el momento es ventas del día.
Con los botos que si da Click contara cuantos zapatos está comprando y después de terminar el
día mostrar el resultado de las ventas totales del día.
4. Desarrollo


<html>
<head><i><center><font color="black" size="+4"> Ventas Del Día</font></i></center>
<title> Ventas Del Día</title>
</head>
<body bgcolor="white">
<script type ="text/javascript">

       var total = 0;
       var p1 = 0;
       var p2 = 0;
       var p3 = 0;
       var p4 = 0;
       var p5 = 0;
       var p6 = 0;
       var p7 = 0;
       var p8 = 0;
       var pr1 = 0, pr2 = 0, pr3 = 0, pr4 = 0, pr5 = 0, pr6 = 0, pr7 = 0, pr8 = 0;

       function Comprar(c)
       {
               if (c == 1)
               {
               total = total+85000;
               p1 = p1+1;
               pr1 = pr1+1;
               alert("A comprado " + pr1 + " zapato con el valor de $ 85.000 ");
               pr1=0;
               }
                         else if (c == 2)
                         {
                         total = total+98000;
                         p2 = p2+1;
                         pr2 = pr2+1;
                         alert("A comprado " + pr2 + " zapato con el valor de $ 98.000");
                         pr2=0;
                         }
                                   else if (c == 3)
                                   {
                                   total = total+60000;
                                   p3 = p3+1;
                                   pr3 = pr3+1;
                                   alert("A comprado " + pr3 + " zapato con el valor de $ 60.000");
                                   pr3=0;
                                   }
                                             else if (c == 4)
{
                                       total = total+75000;
                                       p4 = p4+1;
                                       pr4 = pr4+1;
                                       alert("A comprado " + pr4 + " zapato con el valor de $
75.000");
                                       pr4=0;
                                       }
                                                else if (c == 5)
                                                {
                                                total = total+180000;
                                                p5 = p5+1;
                                                pr5 = pr5+1;
                                                alert("A comprado " + pr5 + " zapato con el valor
de $ 180.000");
                                                pr5=0;
                                                }
                                                else if (c == 6)
                                                {
                                                total = total+76000;
                                                p6 = p6+1;
                                                pr6 = pr6+1;
                                                alert("A comprado " + pr6 + " zapato con el valor
de $ 76.000");
                                                pr6=0;
                                                         }
                                                         else
                                                         {
                                                         total = total+180000;
                                                         p7 = p7+1;
                                                         pr7 = pr7+1;
                                                         alert("A comprado " + pr7 + " zapato con el
valor de $ 180.000");
                                                         pr7=0;
                                                         }

       }

       function ventas()
       {
               if (p1 > 0)
               {
               alert("Usted lleva " + p1 + " CASUAL(ES) por un valor de " + (p1*85000) + " pesos");
               }
                        if (p2 > 0)
                        {
                        alert("Usted lleva " + p2 + " BOTIN(ES) BLACK por un valor de " +
(p2*98000) + " pesos");
}
                                  if (p3 > 0)
                                  {
                                  alert("Usted lleva " + p3 + " NATURAL PRINT por un valor de " +
(p3*60000) + " pesos");
                                  }
                                          if (p4 > 0)
                                          {
                                          alert("Usted lleva " + p4 + " SEASONS por un valor de " +
(p4*75000) + " pesos");
                                          }
                                                   if (p5 > 0)
                                                   {
                                                   alert("Usted lleva " + p5 + " FIESTA NOCTURNA por
un valor de " + (p5*180000) + " pesos");
                                                   }
                                                            if (p6 > 0)
                                                            {
                                                            alert("Usted lleva " + p6 + " PLATAFORMA
por un valor de " + (p5*76000) + " pesos");
                                                            }
                                                                      if (p7 > 0)
                                                                      {
                                                                      alert("Usted lleva " + p7 + " TACON
ALTO PLEASER por un valor de " + (p5*180000) + " pesos");
                                                                      }

        alert("El valor total de la venta es " + total + " pesos");
        }
</script>
</head>
</body>
<form>

<br>
<center>
<font face="Comic Sans MS, cursive"> Oprimiendo en cada boton el numero de articulos que
desea llevar
<p>
<table border =1>
<tr><td>
<img src="Productos/C1.png" alt="Producto_1" border="1">
</td>
<td>
<p><B>Nombre: CASUAL</B>
<p>Referencia: 021
<p>Valor Unitario: $ 85.000
</td>
<td>
<p><input type="button" value="Comprar" onClick="Comprar(1)">
</td></tr>
<tr><td>
<img src="Productos/C2.png" alt="Producto_2" border="1">
</td>
<td>
<p><B>Nombre: BOTIN BLACK </B>
<p>Referencia: 082
<p>Valor Unitario: $ 98.000
</td>
<td>
<p><input type="button" value="Comprar" onClick="Comprar(2)">
</td></tr>
<tr><td>
<img src="Productos/C3.png" alt="Producto_3" border="1">
</td>
<td>
<p><B>Nombre: NATURAL PRINT </B>
<p>Referencia: 001
<p>Valor Unitario: $ 60.000
</td>
<td>
<p><input type="button" value="Comprar" onClick="Comprar(3)">
</td></tr>
<tr><td>
<img src="Productos/C4.png" alt="Producto_4" border="1">
</td>
<td>
<p><B>Nombre: SEASONS </B>
<p>Referencia: 074
<p>Valor Unitario: $ 75.000
</td>
<td>
<p><input type="button" value="Comprar" onClick="Comprar(4)">
</td></tr>
<tr><td>
<img src="Productos/C5.png" alt="Producto_5" border="1">
</td>
<td>
<p><B>Nombre: FIESTA NOCTURNA </B>
<p>Referencia: 075
<p>Valor Unitario: $ 180.000
</td>
<td>
<p><input type="button" value="Comprar" onClick="Comprar(5)">
</td></tr>
<tr><td>
<img src="Productos/C6.jpg" alt="Producto_6" border="1">
</td>
<td>
<p><B>Nombre: PLATAFORMA</B>
<p>Referencia: 075
<p>Valor Unitario: $ 76.000
</td>
<td>
<p><input type="button" value="Comprar" onClick="Comprar(5)">
</td></tr>
<tr><td>
<img src="Productos/C7.png" alt="Producto_7" border="1">
</td>
<td>
<p><B>Nombre: TACON ALTO PLEASER </B>
<p>Referencia: 075
<p>Valor Unitario: $ 180.000
</td>
<td>
<p><input type="button" value="Comprar" onClick="Comprar(7)">
</td></tr>
</table>
<p><input type="button" value="Ventas del día" onClick="ventas()">
</center>
</font>
</form>
</body>
</html>

Mais conteúdo relacionado

Destaque

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destaque (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Ventas del dia

  • 1. Las fases del ciclo de vida del software Yustin Daniela Liscano Bohorquez Anyela Alejandra Andrade Aldana Carlos Javier Pastrana ADSI (409862) Centro de la Industria, La Empresa Y Los Servicios (CIES) Neiva 25/02/2013
  • 2. 1. Identificación de Requerimientos: Construir un software para conocer las ventas del día: Rta: los requerimientos que pide en estos momentos el cliente es realizar un software para llevar las ventas del día y que muestre el valor total de las ventas. 2. Análisis de Requerimientos Los pasos que se deben seguir pueden ser: 1. Rta: para el análisis de requerimiento lo primero que se debe de hacer es como su nombre lo dice analizar lo que está pidiendo el usuario que en el momento es hacer un software para las ventas del día; entonces lo primero que se debe de hacer es identificar las variables que vamos a utilizar; que son: - P1, P2, P3, P4, P5; - Pr1, Pr2, Pr3, Pr4, Pr5; - Total; 2. Luego de esto cuantos botones utilizaremos para este caso solo utilizare 6botones; 5 que se llamaran Compra para cada uno de los casos, y 1 que se llamara ventas del día. 3. En este punto también se hace la construcción del diccionario de datos que es donde se va a puntualizar los datos que vamos a necesitar en el desarrollo del programa incluyendo el nombre, descripción, contenido y organización: 3.1. Diccionario de Datos: Nombre: Ventas del día. ¿Qué queremos con esto?: Desarrollar un programa que muestre las ventas del día y al final del día muestreen pantalla el resultado total de las ventas y esto lo realizaremos con el leguaje unificado de JavaScript. Para ello utilizaremos una serie de variables adecuadas, unas funciones y botones para desarrollar más adecuadamente lo que pide el usuario. 1. Construir el diagrama de flujo del proceso (representación o modelo de la solución) (Aquí va el diagrama de flujo para las ventas del día) Diagrama de Flujo:
  • 3. Inicio P1=0, P2=0, P3=0, P4=0, P5=0;Pr1=0, Pr2=0, Pr3=0, Pr4=0, Pr5=0;Total=0; P1=P1+1; Pr1=Pr1+1; Pr1=0; P2=P2+1; Pr2=Pr2+1; Pr2=0; P3=P3+1; Pr3=Pr3+1; Pr3=0; P4=P4+1; Pr4=Pr4+1 ; Pr4=0: P5=P5+1; Pr5=Pr5+1; Pr5=0; ; Total=P1 + P2 + P3 + P4 + P5 Mostrar Total Fin
  • 4. 3. Diseño Rta: Aquí le mostrare el diseño preliminar de como quedara el ejecutable del problema planteado por el usuario que en el momento es ventas del día. Con los botos que si da Click contara cuantos zapatos está comprando y después de terminar el día mostrar el resultado de las ventas totales del día.
  • 5. 4. Desarrollo <html> <head><i><center><font color="black" size="+4"> Ventas Del Día</font></i></center> <title> Ventas Del Día</title> </head> <body bgcolor="white"> <script type ="text/javascript"> var total = 0; var p1 = 0; var p2 = 0; var p3 = 0; var p4 = 0; var p5 = 0; var p6 = 0; var p7 = 0; var p8 = 0; var pr1 = 0, pr2 = 0, pr3 = 0, pr4 = 0, pr5 = 0, pr6 = 0, pr7 = 0, pr8 = 0; function Comprar(c) { if (c == 1) { total = total+85000; p1 = p1+1; pr1 = pr1+1; alert("A comprado " + pr1 + " zapato con el valor de $ 85.000 "); pr1=0; } else if (c == 2) { total = total+98000; p2 = p2+1; pr2 = pr2+1; alert("A comprado " + pr2 + " zapato con el valor de $ 98.000"); pr2=0; } else if (c == 3) { total = total+60000; p3 = p3+1; pr3 = pr3+1; alert("A comprado " + pr3 + " zapato con el valor de $ 60.000"); pr3=0; } else if (c == 4)
  • 6. { total = total+75000; p4 = p4+1; pr4 = pr4+1; alert("A comprado " + pr4 + " zapato con el valor de $ 75.000"); pr4=0; } else if (c == 5) { total = total+180000; p5 = p5+1; pr5 = pr5+1; alert("A comprado " + pr5 + " zapato con el valor de $ 180.000"); pr5=0; } else if (c == 6) { total = total+76000; p6 = p6+1; pr6 = pr6+1; alert("A comprado " + pr6 + " zapato con el valor de $ 76.000"); pr6=0; } else { total = total+180000; p7 = p7+1; pr7 = pr7+1; alert("A comprado " + pr7 + " zapato con el valor de $ 180.000"); pr7=0; } } function ventas() { if (p1 > 0) { alert("Usted lleva " + p1 + " CASUAL(ES) por un valor de " + (p1*85000) + " pesos"); } if (p2 > 0) { alert("Usted lleva " + p2 + " BOTIN(ES) BLACK por un valor de " + (p2*98000) + " pesos");
  • 7. } if (p3 > 0) { alert("Usted lleva " + p3 + " NATURAL PRINT por un valor de " + (p3*60000) + " pesos"); } if (p4 > 0) { alert("Usted lleva " + p4 + " SEASONS por un valor de " + (p4*75000) + " pesos"); } if (p5 > 0) { alert("Usted lleva " + p5 + " FIESTA NOCTURNA por un valor de " + (p5*180000) + " pesos"); } if (p6 > 0) { alert("Usted lleva " + p6 + " PLATAFORMA por un valor de " + (p5*76000) + " pesos"); } if (p7 > 0) { alert("Usted lleva " + p7 + " TACON ALTO PLEASER por un valor de " + (p5*180000) + " pesos"); } alert("El valor total de la venta es " + total + " pesos"); } </script> </head> </body> <form> <br> <center> <font face="Comic Sans MS, cursive"> Oprimiendo en cada boton el numero de articulos que desea llevar <p> <table border =1> <tr><td> <img src="Productos/C1.png" alt="Producto_1" border="1"> </td> <td> <p><B>Nombre: CASUAL</B> <p>Referencia: 021 <p>Valor Unitario: $ 85.000 </td>
  • 8. <td> <p><input type="button" value="Comprar" onClick="Comprar(1)"> </td></tr> <tr><td> <img src="Productos/C2.png" alt="Producto_2" border="1"> </td> <td> <p><B>Nombre: BOTIN BLACK </B> <p>Referencia: 082 <p>Valor Unitario: $ 98.000 </td> <td> <p><input type="button" value="Comprar" onClick="Comprar(2)"> </td></tr> <tr><td> <img src="Productos/C3.png" alt="Producto_3" border="1"> </td> <td> <p><B>Nombre: NATURAL PRINT </B> <p>Referencia: 001 <p>Valor Unitario: $ 60.000 </td> <td> <p><input type="button" value="Comprar" onClick="Comprar(3)"> </td></tr> <tr><td> <img src="Productos/C4.png" alt="Producto_4" border="1"> </td> <td> <p><B>Nombre: SEASONS </B> <p>Referencia: 074 <p>Valor Unitario: $ 75.000 </td> <td> <p><input type="button" value="Comprar" onClick="Comprar(4)"> </td></tr> <tr><td> <img src="Productos/C5.png" alt="Producto_5" border="1"> </td> <td> <p><B>Nombre: FIESTA NOCTURNA </B> <p>Referencia: 075 <p>Valor Unitario: $ 180.000 </td> <td> <p><input type="button" value="Comprar" onClick="Comprar(5)"> </td></tr> <tr><td>
  • 9. <img src="Productos/C6.jpg" alt="Producto_6" border="1"> </td> <td> <p><B>Nombre: PLATAFORMA</B> <p>Referencia: 075 <p>Valor Unitario: $ 76.000 </td> <td> <p><input type="button" value="Comprar" onClick="Comprar(5)"> </td></tr> <tr><td> <img src="Productos/C7.png" alt="Producto_7" border="1"> </td> <td> <p><B>Nombre: TACON ALTO PLEASER </B> <p>Referencia: 075 <p>Valor Unitario: $ 180.000 </td> <td> <p><input type="button" value="Comprar" onClick="Comprar(7)"> </td></tr> </table> <p><input type="button" value="Ventas del día" onClick="ventas()"> </center> </font> </form> </body> </html>