-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ALTO ANGULAR PAPA #23
base: master
Are you sure you want to change the base?
Conversation
No veo foto. El PR tiene que ir acompañado de uno o dos screenshots. |
<tbody> | ||
<tr ng-repeat="cliente in clientes"> | ||
<td>{{ cliente.id }}</td> | ||
<td>{{ cliente.razon_social }}</td> | ||
<td ng-repeat="(key, value) in cliente">{{ value }}</td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Qué pasa si del backend te llegan en otro orden los atributos del cliente?
Entiendo la idea de hacer todo super genérico y con un loop, pero acá no hace falta ni tampoco mejora las cosas.
THs estáticos, y TD's "estáticos". Que sólo se iteren los TRs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Y el botón de eliminar?
@dragonnegro78 pegale una mirada porfa, y después devolvéselo a Bimbo |
$scope.headers = [ | ||
'ID', | ||
'Razon Social', | ||
'Saldo Positivo', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
¿Que es esto de saldo positivo y saldo negativo?
En la tabla del listado de clientes tiene que haber una unica columna "Patrimonio neto" que sea la diferencia entre el activo y el pasivo (salvo positivo y negativo respectivamente en tu caso).
O sea, no esta mal que en $scope.clientes tengas ambos, pero si esta mal que se muestren ambos al usuario.
Si no flasheo, podes hacer <td>{{ cliente.saldo_positivo - cliente.salgo_negativo }}</td>
en html/cliente/listado.html
No se puede mergear a master bimbo. |
¿Quien es Fernando Arias? |
<tbody> | ||
<tr ng-repeat="cliente in clientes"> | ||
<td>{{ cliente.id }}</td> | ||
<td>{{ cliente.razon_social }}</td> | ||
<td>{{ cliente.id }}</td><td>{{ cliente.razon_social }}</td><td>{{ cliente.saldo_positivo }}</td><td>{{ cliente.saldo_negativo }}</td><td><button class="btn btn-danger">X</button></td> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Intenta poner estas cosas en multiples lineas porque facilita la lectura, de vos y del resto.
No se si sera un bug del editor de texto que usas pero con phpstorm casi siempre te empieza cosas en la linea siguiente. ¿Lo desconfiguraste?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sí por favor, múltiples lineas.
Separé el botón de aceptar de la parte de NUEVO de manera cabeza. Si alguien lo quiere poner de forma prolija, díganme cómo.