cambio en mensaje de factura
This commit is contained in:
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -1 +1 @@
|
||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" type=image/png href=assets/icono.png><title>ASINEA-Login</title><link href=//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css rel=stylesheet id=bootstrap-css><script src=//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js></script><script src=//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js></script><link href=css/app.4d988de6.css rel=preload as=style><link href=js/app.bae0a144.js rel=preload as=script><link href=js/chunk-vendors.81d09f4a.js rel=preload as=script><link href=css/app.4d988de6.css rel=stylesheet></head><body><noscript><strong>We're sorry but asinea-front doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=js/chunk-vendors.81d09f4a.js></script><script src=js/app.bae0a144.js></script></body></html>
|
||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel="shortcut icon" type=image/png href=assets/icono.png><title>ASINEA-Login</title><link href=//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css rel=stylesheet id=bootstrap-css><script src=//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js></script><script src=//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js></script><link href=css/app.07ae05e3.css rel=preload as=style><link href=js/app.d71ab2a0.js rel=preload as=script><link href=js/chunk-vendors.81d09f4a.js rel=preload as=script><link href=css/app.07ae05e3.css rel=stylesheet></head><body><noscript><strong>We're sorry but asinea-front doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=js/chunk-vendors.81d09f4a.js></script><script src=js/app.d71ab2a0.js></script></body></html>
|
||||
Vendored
-1
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+1
File diff suppressed because one or more lines are too long
+10
-2
@@ -144,6 +144,9 @@
|
||||
></b-form-radio-group>
|
||||
</b-form-group>
|
||||
</div>
|
||||
<div class="row" >
|
||||
<p>El uso del CFDI en las facturas será generara en automático por Gastos en General, si requiere de otro tipo notificarlo al correo asinea103@fa.unam.mx</p>
|
||||
</div>
|
||||
<div v-if="selected!=''">
|
||||
<div class="row" >
|
||||
<div class="col-md-4">
|
||||
@@ -315,12 +318,17 @@ export default {
|
||||
|
||||
},
|
||||
async enviarArchivo() {
|
||||
|
||||
|
||||
|
||||
if(this.bancoProcedencia === "") return this.menssajeWar('Falta llenar banco de procedencia');
|
||||
if(this.dia === "" || this.mes === "" || this.year === "") return this.menssajeWar('Falta escoger la fecha de en que se realizo la operacion');
|
||||
if(this.claveRastreo === "") return this.menssajeWar('Falta llenar la clave de rastreo');
|
||||
if(this.cuentaRetiro === "") return this.menssajeWar('Falta llenar la cuenta de retiro');
|
||||
if(this.importe === "") return this.menssajeWar('Falta llenar el importe');
|
||||
if(parseInt (this.dia) < 1 || parseInt (this.dia) > 31 || `${parseInt (this.dia)}`=== 'NaN') return this.menssajeWar('El dia introducido no es valido');
|
||||
if(parseInt (this.mes) < 1 || parseInt (this.mes) > 12 || `${parseInt (this.mes)}`=== 'NaN') return this.menssajeWar('El mes introducido no es valido');
|
||||
if(parseInt (this.year) !== 2020 || `${parseInt (this.year)}`=== 'NaN') return this.menssajeWar('El año introducido no es valido');
|
||||
|
||||
|
||||
|
||||
const data = {
|
||||
@@ -348,7 +356,7 @@ export default {
|
||||
if(this.municipio === "") return this.menssajeWar('Falta llenar el municipio de la persona a quien se le hara la factura');
|
||||
if(this.estado === "") return this.menssajeWar('Falta llenar el estado de la persona a quien se le hara la factura');
|
||||
if(this.codigoPostal === "") return this.menssajeWar('Falta llenar el codigo postal de la persona a quien se le hara la factura');
|
||||
|
||||
|
||||
data.factura = true;
|
||||
data.nombrePersona = this.nombrePersona;
|
||||
data.apellidoPaterno = this.apellidoPaterno;
|
||||
|
||||
Reference in New Issue
Block a user