Step 1. Fetch and check out the branch for this merge request
git fetch origin git checkout -b feature/#51_quiero_visualizar_monto_a_pagar origin/feature/#51_quiero_visualizar_monto_a_pagar
Step 2. Review the changes locally
Step 3. Merge the branch and fix any conflicts that come up
git checkout develop git merge --no-ff feature/#51_quiero_visualizar_monto_a_pagar
Step 4. Push the result of the merge to GitLab
git push origin develop
Note that pushing to GitLab requires write access to this repository.
Tip: You can also checkout merge requests locally by following these guidelines
es_publico = organismo.es_publico if organismo else False | ||
sellos = edicto.cantidad_sellos | ||
palabras = edicto.cantidad_palabras | ||
copias = edicto.cantidad_copias | ||
publicar = edicto.dias_publicar | ||
precio_valores = { | ||
'precio': precio.precio, | ||
'precio_ejemplar': precio.precio_ejemplar, | ||
'precio_dia': precio.precio_dia | ||
} | ||
result_palabra = (sellos + palabras) * precio_valores['precio'] | ||
result_ejemplar = (copias * precio_valores['precio_ejemplar']) + (publicar * precio_valores['precio_dia']) | ||
subtotal = result_ejemplar + result_palabra | ||
if es_publico: | ||
|
if organismo: | ||
resultado = result_ejemplar + result_palabra / 2 | ||
else: | ||
resultado = result_ejemplar + result_palabra | ||
precio_resultado = ComprobantePago(edicto=edicto, resultado=resultado) | ||
precio_resultado.save() | ||
return precio_resultado | ||
from .models import ComprobantePago | ||
def calculadora(edicto, precio): | ||
try: | ||
descuento = 50 | ||
organismo = edicto.creado_por.organismo | ||
es_publico = organismo.es_publico if organismo else False | ||
|
# Register your models here. | ||
admin.site.register(Precio) | ||
admin.site.register(Precio) | ||
|
Status changed to merged
mentioned in commit daf3b95a