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
332 <158>1 2016-09-30T23:59:12.550028+00:00 heroku router - - at=error code=H12 desc="Request timeout" method=POST path="/perfil/2234/recurrencias/16730" host=aliada.mx request_id=145563d4-4725-4526-9edb-e7e877d28d5b fwd="189.210.196.206" dyno=web.1 connect=1ms service=30000ms status=503 bytes=0 | |
1334 <190>1 2016-10-01T00:01:18.338685+00:00 app web.1 - - {"method":"POST","path":"/perfil/2234/recurrencias/16730","format":"*/*","controller":"recurrences","action":"update","status":200,"duration":89575.48,"view":0.61,"db":40204.56,"params":{"utf8":"✓","authenticity_token":"HVCIh61IfAK+0uAODUd+nHN2c/j8SvNK |
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
<table class="button radius purple"> | |
<tr> | |
<td> | |
<a href="\{{EDIT_SERVICE_URL}}" title="Modificar el servicio"> | |
Modificar el servicio | |
</a> | |
</td> | |
</tr> | |
</table> | |
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
<table class="button radius purple"> | |
<tr> | |
<td> | |
<a href="\{{EDIT_SERVICE_URL}}" title="Modificar el servicio"> | |
Modificar el servicio | |
</a> | |
</td> | |
</tr> | |
</table> | |
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
Epa Yess, un par de cosas. | |
Filtro por total: | |
No existe porque en ningún momento mostramos en total en esas vistas ¿para qué necesitamos el filtro? | |
¿Agrego el total a la vista entonces? Para justificar agregar el filtro. | |
Filtro por Folio: | |
Lo acabo de agregar ya lo debes poder ver en el staging. |
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
Hola Luis Miguel | |
Las pruebas del requerimiento de filtros no fueron satisfactorias, por favor revisa el documento que se encuentra en el slack (Documento versión Final - Requerimientos Plataforma RTC V2), en donde se especifican uno a uno los filtros. | |
Después de nuestras pruebas encontramos que: |
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
module Filterable | |
extend ActiveSupport::Concern | |
module ClassMethods | |
def filter(filtering_params) | |
results = where(nil) | |
filtering_params.each do |key, value| | |
results = results.public_send(key, value) if value.present? | |
end | |
results |
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
1 #= require invoices.module | |
2 #= require invoices/perception_fields.directive | |
3 | |
4 describe "perceptionFields", -> | |
5 [scope, perceptionsCtrl] = [] | |
6 | |
7 beforeEach -> | |
8 module "app.invoices" | |
9 | |
10 inject ($compile, $rootScope) -> |
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
calculateTotal = (perception) -> | |
total = perception.taxedAmount + perception.exemptAmount | |
total.toFixed(2) | |
perceptionFields = -> | |
scope: true | |
require: "^payrollItems" | |
link: (scope, _element, attrs, ctrl) -> | |
scope.perception = { total: "0.00" } |
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
PG::UndefinedTable: ERROR: missing FROM-clause entry for table "user" | |
LINE 1: ..."."id" = "taxable_entities"."accountant_id" WHERE "user"."de... | |
^ | |
: SELECT "taxable_entities".* FROM "taxable_entities" INNER JOIN "users" ON "users"."id" = "taxable_entities"."accountant_id" WHERE "user"."deactivated" = 't' |
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
PG::UndefinedTable: ERROR: missing FROM-clause entry for table "accountant" | |
LINE 1: ..."."id" = "taxable_entities"."accountant_id" WHERE "accountan... | |
^ | |
: SELECT "taxable_entities".* FROM "taxable_entities" INNER JOIN "users" ON "users"."id" = "taxable_entities"."accountant_id" WHERE "accountant"."deactivated" = 't' |