fix: faltaba un caso de uso

This commit is contained in:
2024-03-15 15:30:12 -03:00
parent 9ece6f89b1
commit af16d85f23

View File

@@ -3,6 +3,7 @@
* Usuario Gestiona un Producto * Usuario Gestiona un Producto
#+begin_src plantuml :file registroProducto.jpg #+begin_src plantuml :file registroProducto.jpg
@startuml @startuml
left to right direction
actor "Cliente" <<Persona>> as fc actor "Cliente" <<Persona>> as fc
rectangle GestionProductos { rectangle GestionProductos {
usecase "Gestionar Productos" as UC1 usecase "Gestionar Productos" as UC1
@@ -10,7 +11,7 @@ rectangle GestionProductos {
usecase "Modificar Productos" as UC3 usecase "Modificar Productos" as UC3
usecase "Eliminar Producto" as UC4 usecase "Eliminar Producto" as UC4
usecase "Registrar Producto" as UC5 usecase "Registrar Producto" as UC5
usecase "Seleccionar Proveedor" as uc7
usecase "Gestionar Categorias" as uc6 usecase "Gestionar Categorias" as uc6
} }
fc --> UC1 fc --> UC1
@@ -18,6 +19,7 @@ UC1 ..> UC2: "include"
UC3 ..> UC1: "extend" UC3 ..> UC1: "extend"
UC4 ..> UC1: "extend" UC4 ..> UC1: "extend"
UC5 ..> UC1: "extend" UC5 ..> UC1: "extend"
UC5 ..> uc7: "include"
UC3 .> uc6: "include" UC3 .> uc6: "include"
UC5 .> uc6: "include" UC5 .> uc6: "include"
@@ -49,6 +51,7 @@ UC5 ..> UC1: "extend"
#+begin_src plantuml :file RegistroFacturas.jpg #+begin_src plantuml :file RegistroFacturas.jpg
@startuml @startuml
left to right direction
actor "Cliente" <<Persona>> as fc actor "Cliente" <<Persona>> as fc
rectangle RegistrarFacturas { rectangle RegistrarFacturas {
usecase "Gestionar Facturas" as uc0 usecase "Gestionar Facturas" as uc0