|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852 |
-
-
- var app = new Vue({
- el: '#app-order-order',
- data() {
- return Object.assign({
- order: null,
- loading: false,
- loadingInit: true,
- step: null,
- producer: null,
- user: null,
- date: null,
- dateFormat: null,
- distributions: [],
- distribution: null,
- pointsSale: [],
- pointSaleActive: null,
- pointSaleActiveId: null,
- pointsSaleCodes: [],
- products: [],
- categories: [],
- categoryCurrent: null,
- comment: '',
- creditCheckbox: false,
- paymentMethod: 'onsite',
- useCredit: false,
- errors: [],
- disableConfirmButton: false,
- delivery: false,
- deliveryAddress: null,
- urlLogin: '#',
- producerOptionOrderEntryPoint: null,
- calendar: {
- columns: this.isMobile() ? 1 : 2,
- mode: 'single',
- attrs: [],
- availableDates: [],
- themeStyles: {
- wrapper: {
- background: '#F7F7F7',
- color: '#333',
- border: 'solid 1px #e0e0e0'
- },
- header: {
- padding: '10px 10px',
- },
- headerHorizontalDivider: {
- borderTop: 'solid rgba(255, 255, 255, 0.2) 1px',
- width: '80%',
- },
- weekdays: {
- color: 'gray',
- fontWeight: '600',
- padding: '10px 10px',
- fontSize: '2rem'
- },
- weeks: {
- padding: '0 15px 15px 15px',
- },
- dayContent: function (object) {
- var style = {
- fontSize: '1.4rem',
- padding: app.isMobile() ? '18px' : '20px',
- };
- return style;
- },
- },
- masks: {
- //dayPopover: 'DD/MM/YYYY'
- dayPopover: ''
- }
- }
- }, window.appInitValues);
- },
- mounted: function() {
- this.initDate();
- this.init('first');
- },
- methods: {
- initDate: function() {
- var dateDefined = $('#order-distribution-date').size() || $('#distribution-date').size() ;
- if(dateDefined && (this.producerOptionOrderEntryPoint != 'point-sale' || this.pointSaleActiveId)) {
- if($('#order-distribution-date').size()) {
- this.date = new Date($('#order-distribution-date').html()) ;
- }
- else {
- this.date = new Date($('#distribution-date').html()) ;
- }
-
- this.dateFormat = ('0' + this.date.getDate()).slice(-2)+ '/'
- + ('0' + (this.date.getMonth() +1)).slice(-2) + '/'
- + this.date.getFullYear() ;
- }
- },
- getDate: function() {
- return this.formatDate(this.date) ;
- },
- formatDate: function(date) {
- if(date) {
- return date.getFullYear() + '-'
- + ('0' + (date.getMonth() +1)).slice(-2) + '-'
- + ('0' + date.getDate()).slice(-2) ;
- }
- return false ;
- },
- formatPrice: formatPrice,
- getPointSale: function(idPointSale) {
- for(var key in this.pointsSale) {
- if(this.pointsSale[key].id == idPointSale) {
- return this.pointsSale[key] ;
- }
- }
- },
- getPointSaleKey: function(idPointSale) {
- for(var key in this.pointsSale) {
- if(this.pointsSale[key].id == idPointSale) {
- return key ;
- }
- }
- },
- getProduct: function(idProduct) {
- for(var key in this.products) {
- if(this.products[key].id == idProduct) {
- return this.products[key] ;
- }
- }
- },
- init: function(type, oldStep, step) {
-
- var app = this ;
- this.loading = true ;
-
- if(app.isChangeState('date', 'date', 'point-sale')) {
- app.pointSaleActive = null ;
- app.products = [] ;
- }
-
- axios.get("ajax-infos",{params: {
- date : this.getDate(),
- pointSaleId: this.pointSaleActiveId ? this.pointSaleActiveId : (this.pointSaleActive ? this.pointSaleActive.id : 0)
- }})
- .then(function(response) {
- app.calendar.attrs = [];
- app.calendar.availableDates = [];
-
- var distributions = response.data.distributions;
- app.distributions = distributions;
- if (distributions.length) {
- var arrayDate;
- var highlightStyle = {
- style: {
- background: 'white',
- border: 'solid 2px #198754'
- },
- contentStyle: {
- color: '#198754'
- }
- };
- for (var i = 0; i < distributions.length; i++) {
- app.calendar.attrs.push({
- highlight: highlightStyle,
- dates: distributions[i].date
- });
-
- arrayDate = distributions[i].date.split('-');
- app.calendar.availableDates.push({
- highlight: highlightStyle,
- start: new Date(arrayDate[0], arrayDate[1] - 1, arrayDate[2]),
- end: new Date(arrayDate[0], arrayDate[1] - 1, arrayDate[2])
- });
- }
- }
-
- if(response.data.leave_period) {
- leavePeriodStartDateArray = response.data.leave_period.start.split('-');
- leavePeriodEndDateArray = response.data.leave_period.end.split('-');
-
- app.calendar.attrs.push({
- highlight: {
- style: {
- background: '#E09F3E'
- },
- contentStyle: {
- color: 'white'
- }
- },
- dates: {
- start: new Date(leavePeriodStartDateArray[0], leavePeriodStartDateArray[1] - 1, leavePeriodStartDateArray[2]),
- end: new Date(leavePeriodEndDateArray[0], leavePeriodEndDateArray[1] - 1, leavePeriodEndDateArray[2])
- },
- popover: {
- label: 'En congé',
- hideIndicator: true,
- isInteractive: true
- },
- });
- }
-
- if (response.data.distribution) {
- app.distribution = response.data.distribution;
- }
-
- var orders = [];
- if (response.data.orders) {
- orders = response.data.orders;
- }
-
- if (orders.length) {
- for (var i = 0; i < orders.length; i++) {
- arrayDate = orders[i].date_distribution.split('-');
- var dateOrder = new Date(arrayDate[0], arrayDate[1] - 1, arrayDate[2]);
- if (app.isAvailableDate(dateOrder)) {
- app.calendar.attrs.push({
- highlight: {
- style: {
- background: '#198754'
- },
- contentStyle: {
- color: 'white'
- }
- },
- popover: {
- label: orders[i].pointSale.name + ' (' + app.formatPrice(orders[i].amount_total)+')',
- hideIndicator: true,
- isInteractive: true
- },
- dates: orders[i].date_distribution
- });
- }
- }
- }
-
- app.producer = response.data.producer;
- app.user = response.data.user;
- app.useCredit = response.data.producer.use_credit_checked_default;
-
-
- if (response.data.points_sale) {
- app.pointsSale = [];
- var orderPointSale = 0;
- for (var key in response.data.points_sale) {
- response.data.points_sale[key].order = orderPointSale++;
- app.pointsSale[response.data.points_sale[key].id] = response.data.points_sale[key];
-
- if(!app.pointsSaleCodes[response.data.points_sale[key].id]) {
- app.pointsSaleCodes[response.data.points_sale[key].id] = '';
- Vue.set(app.pointsSaleCodes, response.data.points_sale[key].id, '');
- }
- }
- }
-
- if(app.pointSaleActiveId) {
- app.pointSaleActive = app.getPointSale(app.pointSaleActiveId);
- }
-
- if(app.pointSaleActive) {
- if(app.producer.credit
- && app.pointSaleActive.payment_method_credit
- && (app.pointSaleActive.credit_functioning == 'mandatory'
- || (app.pointSaleActive.credit_functioning == 'user' && app.user.credit_active)
- || (app.pointSaleActive.credit_functioning == 'optional' && response.data.producer.use_credit_checked_default))) {
- app.paymentMethod = 'credit';
- }
- else if(app.pointSaleActive.payment_method_onsite) {
- app.paymentMethod = 'onsite';
- }
- else if(app.pointSaleActive.payment_method_online) {
- app.paymentMethod = 'online';
- }
- }
-
- if(app.isChangeState('point-sale', 'point-sale', 'date')) {
- app.date = null ;
- app.dateFormat = null ;
- }
-
- // update order
- var updateOrder = false ;
- if(app.isChangeState('date', 'point-sale', 'products')
- || app.isChangeState('date', 'date', 'point-sale')
- || app.isChangeState('point-sale', 'date', 'products')
- || app.isChangeState('point-sale', 'point-sale', 'date')) {
-
- updateOrder = true ;
- }
-
- if(updateOrder) {
- app.updateOrder(response);
- }
-
- if(type == 'first') {
- if(app.getDate() && app.pointSaleActive) {
- app.step = 'products' ;
- if(response.data.products) {
- app.products = response.data.products;
- }
-
- app.updateOrder(response);
- }
- else if(app.producer.option_order_entry_point == 'point-sale') {
- app.step = 'point-sale' ;
- }
- else if(app.getDate() && app.producer && app.producer.option_order_entry_point == 'date') {
- app.step = 'point-sale' ;
- }
- else {
- app.step = 'date' ;
- }
- }
-
- if(response.data.categories) {
- app.categories = response.data.categories ;
- for(keyCategory in response.data.categories) {
- var category = response.data.categories[keyCategory];
- if(category.id && app.countProductsByCategory(category)) {
- app.setCategoryCurrent(category, true) ;
- break;
- }
- }
- }
-
- setTimeout(function() {
- app.responsive();
- opendistrib_products();
- }, 500);
-
- app.loading = false ;
- app.loadingInit = false ;
- });
- },
- updateOrder: function(response) {
- var app = this;
- if(response.data.products) {
- app.products = response.data.products;
- }
-
- app.order = null ;
- if(response.data.order) {
- app.order = response.data.order ;
- app.comment = app.order.comment ;
- if(app.order.delivery_address && app.order.delivery_address.length > 0) {
- app.deliveryAddress = app.order.delivery_address ;
- }
- app.pointSaleActive = app.getPointSale(response.data.order.id_point_sale) ;
- }
- else {
- app.comment = null ;
- app.deliveryAddress = null ;
- if(app.user.address && app.user.address.length > 0) {
- app.deliveryAddress = app.user.address ;
- }
- }
- },
- isMobile: function() {
- var width_window = parseInt($(window).width());
- return width_window <= 768;
- },
-
- responsive: function() {
- var app = this;
- app.responsiveApply();
- $(window).resize(function() {
- app.responsiveApply();
- });
- },
-
- responsiveApply: function() {
- var $td_summary = $('#products tr.total td.summary');
- if(this.isMobile()) {
- $td_summary.attr('colspan', 3);
- }
- else {
- $td_summary.attr('colspan', 4);
- }
- },
-
- isChangeState: function(entryPoint, oldStep, newStep) {
- return this.producer
- && entryPoint == this.producer.option_order_entry_point
- && oldStep == this.oldStep
- && newStep == this.step ;
- },
-
- nextStep: function() {
- this.errors = [] ;
- var oldStep = this.step ;
- var nextStep = null ;
-
- // par point de vente
- if(this.producer && this.producer.option_order_entry_point == 'point-sale') {
- if(oldStep == 'point-sale') {
- nextStep = 'date' ;
- }
- else if(oldStep == 'date') {
- nextStep = 'products' ;
- }
- }
- // par date
- else {
- if(oldStep == 'date') {
- nextStep = 'point-sale' ;
- }
- else if(oldStep == 'point-sale') {
- nextStep = 'products' ;
- }
- }
-
- if(nextStep) {
- this.changeStep(nextStep) ;
- }
-
- },
-
- changeStep: function(step) {
- this.errors = [] ;
- var oldStep = this.step ;
- this.oldStep = oldStep ;
-
- if(oldStep == 'products' && step == 'payment') {
- this.checkProducts() ;
- }
- if(!this.errors.length) {
- this.step = step ;
- this.init('basic', oldStep, step) ;
- }
- },
- dayClickList: function(event) {
- var dateStr = event.currentTarget.getAttribute('data-distribution-date') ;
- var dateObject = new Date(dateStr.replace(/-/g, "/")) ;
- if(this.isAvailableDate(dateObject)) {
- this.dayClickEvent(dateObject) ;
- }
- },
- dayClick: function(day) {
- if(this.isAvailableDate(day.date)) {
- this.dayClickEvent(day.date) ;
- }
- },
- dayClickEvent: function(date) {
- this.date = date ;
- this.dateFormat = ('0' + this.date.getDate()).slice(-2)+ '/'
- + ('0' + (this.date.getMonth() +1)).slice(-2) + '/'
- + this.date.getFullYear() ;
-
- this.nextStep() ;
- },
- isAvailableDate: function(date) {
- for(var key in this.calendar.availableDates) {
- if(date.getTime() == this.calendar.availableDates[key].start.getTime()) {
- return true ;
- }
- }
-
- return false ;
- },
- pointSaleClick: function(event) {
- var app = this ;
- var idPointSale = event.currentTarget.getAttribute('data-id-point-sale') ;
- var hasCode = event.currentTarget.getAttribute('data-code') ;
-
- if(hasCode) {
- axios.get('ajax-validate-code-point-sale',{params: {
- idPointSale: idPointSale,
- code: this.pointsSaleCodes[idPointSale]
- }}).then(function(response) {
- if(response.data) {
- app.pointsSale[app.getPointSaleKey(idPointSale)].invalid_code = false ;
- app.validatePointSale(idPointSale) ;
- }
- else {
- app.pointsSale[app.getPointSaleKey(idPointSale)].invalid_code = true ;
- Vue.set(app.pointsSaleCodes, idPointSale, '');
- }
- }) ;
- }
- else {
- this.validatePointSale(idPointSale) ;
- }
- },
-
- validatePointSale: function(idPointSale) {
- this.pointSaleActive = this.getPointSale(idPointSale) ;
- if(this.pointSaleActive.credit_functioning == 'mandatory' || (this.pointSaleActive.credit_functioning == 'user' && this.user.credit_active)) {
- this.useCredit = true ;
- }
-
- this.nextStep() ;
- },
- productQuantityClick: function(product, quantity) {
- if( this.products[product.index].quantity_form + quantity >= 0 &&
- (this.products[product.index].quantity_form + quantity <= (this.products[product.index].quantity_remaining * this.products[product.index].coefficient_unit) ||
- !this.products[product.index].quantity_max)
- ) {
- var theQuantity = parseFloat(this.products[product.index].quantity_form) + parseFloat(quantity);
- this.products[product.index].quantity_form = parseFloat(theQuantity.toFixed(2)) ;
- }
- },
- oneProductOrdered: function() {
- for(var key in this.products) {
- if(this.products[key].quantity_form > 0) {
- return true ;
- }
- }
- return false ;
- },
- countProductOrdered: function() {
- var count = 0 ;
- for(var key in this.products) {
- if(this.products[key].quantity_form > 0) {
- if(this.products[key].unit != 'piece') {
- count ++ ;
- }
- else {
- count += this.products[key].quantity_form ;
- }
- }
- }
- return count ;
- },
- priceTotal: function(format) {
- var price = 0 ;
- for(var key in this.products) {
- var quantity = this.products[key].quantity_form;
- if(quantity > 0) {
- price += (quantity / this.products[key].unit_coefficient) * this.getBestProductPrice(this.products[key].id, this.products[key].quantity_form);
- }
- }
- if(format) {
- return this.formatPrice(price) ;
- }
- else {
- return numberDecimals(price, 2) ;
- }
- },
- productHasPrice: function(product) {
- return product.prices && product.prices.length > 0;
- },
- productHasPriceWithFromQuantity: function(product) {
- if(this.productHasPrice(product)) {
- for(var i = 0; i < product.prices.length; i++) {
- if(product.prices[i].from_quantity > 0) {
- return true;
- }
- }
- }
-
- return false;
- },
- getBestProductPrice: function(idProduct, theQuantity) {
- var thePriceWithTax = 9999;
- var product = this.getProduct(idProduct);
- var pricesArray = product.prices;
- var unitCoefficient = product.unit_coefficient;
- if(theQuantity) {
- theQuantity = theQuantity / unitCoefficient;
- }
-
- for(var i = 0; i < pricesArray.length ; i++) {
- var priceWithTax = pricesArray[i].price_with_tax;
- var fromQuantity = pricesArray[i].from_quantity;
-
- if(priceWithTax < thePriceWithTax && fromQuantity <= theQuantity) {
- thePriceWithTax = priceWithTax;
- }
- }
- if(thePriceWithTax == 9999) {
- return 0;
- }
- else {
- return thePriceWithTax;
- }
- },
- isPaymentMethodOnsiteActive: function() {
- return this.pointSaleActive && this.pointSaleActive.payment_method_onsite
- && !this.isPaymentMethodCreditActiveFunctioningUser(true)
- && !this.isPaymentMethodCreditActiveFunctioningMandatory();
- },
- isPaymentMethodCreditActive: function() {
- return this.isPaymentMethodCreditActiveFunctioningOptional()
- || this.isPaymentMethodCreditActiveFunctioningMandatory()
- || this.isPaymentMethodCreditActiveFunctioningUser(true);
- },
- isPaymentMethodCreditActiveCheckBase: function() {
- return this.producer && this.producer.credit
- && this.pointSaleActive && this.pointSaleActive.payment_method_credit;
- },
- isPaymentMethodCreditActiveFunctioningUser: function(userCreditActive) {
- return this.isPaymentMethodCreditActiveCheckBase()
- && this.pointSaleActive.credit_functioning == 'user'
- && this.user && this.user.credit_active == userCreditActive;
- },
- isPaymentMethodCreditActiveFunctioningMandatory: function() {
- return this.isPaymentMethodCreditActiveCheckBase()
- && this.pointSaleActive.credit_functioning == 'mandatory';
- },
- isPaymentMethodCreditActiveFunctioningOptional: function() {
- return this.isPaymentMethodCreditActiveCheckBase()
- && this.pointSaleActive.credit_functioning == 'optional';
- },
- isPaymentMethodOnlineActive: function() {
- return this.producer && this.producer.online_payment
- && this.pointSaleActive && this.pointSaleActive.payment_method_online
- && !this.isPaymentMethodCreditActiveFunctioningUser(true)
- && !this.isPaymentMethodCreditActiveFunctioningMandatory()
- },
- errorCreditMandatoryAndLimit: function() {
- return this.user
- && this.pointSaleActive
- && this.pointSaleActive.payment_method_credit
- && (this.pointSaleActive.credit_functioning == 'mandatory'
- || (this.pointSaleActive.credit_functioning == 'user' && this.user.credit_active))
- && !this.checkCreditLimit(this.order);
- },
- confirmClick: function() {
-
- var app = this ;
-
- // delivery
- if(app.pointSaleActive.is_home_delivery && !app.deliveryAddress) {
- this.errors = [] ;
- this.errors.push('Veuillez saisir une adresse de livraison.') ;
- opendistrib_scroll('page-title');
- return false ;
- }
-
- // montant minimum de commande
- if(app.pointSaleActive.minimum_order_amount > 0 && app.priceTotal() < app.pointSaleActive.minimum_order_amount) {
- this.errors = [] ;
- this.errors.push('Le montant minimum de commande est de '+app.formatPrice(app.pointSaleActive.minimum_order_amount)+' pour ce point de vente.') ;
- opendistrib_scroll('page-title');
- return false ;
- }
-
- // guest form
- var $signupGuestForm = $('#signup-guest form') ;
- if($signupGuestForm.length > 0 && !$signupGuestForm.valid()) {
- $signupGuestForm.submit() ;
- return false ;
- }
-
- var user = false ;
- if(this.producer.option_allow_order_guest && !this.user) {
- user = {
- email: $('#signupguest-email').val(),
- password: $('#signupguest-password').val(),
- firstname: $('#signupguest-firstname').val(),
- lastname: $('#signupguest-lastname').val(),
- phone: $('#signupguest-phone').val(),
- } ;
- }
-
- // products
- var productsArray = {} ;
- for(var key in this.products) {
- if( this.products[key].quantity_form != null &&
- this.products[key].quantity_form > 0) {
- productsArray[this.products[key].id] = this.products[key].quantity_form ;
- }
- }
-
- app.disableConfirmButton = true ;
-
- axios.post('ajax-process', {
- Order: {
- id_distribution : this.distribution.id,
- id_point_sale: this.pointSaleActive.id,
- comment: this.comment,
- delivery_home: this.pointSaleActive.is_home_delivery,
- delivery_address: this.deliveryAddress
- },
- code_point_sale: this.pointsSaleCodes[this.pointSaleActive.id],
- products: productsArray,
- payment_method: this.paymentMethod,
- user: user
- }).then(function(response) {
- if(response.data.status == 'success') {
- app.errors = [] ;
- if(response.data.redirect && response.data.redirect.length > 0) {
- window.location.href = response.data.redirect ;
- }
- else {
- window.location.href = opendistrib_base_url(true)+'order/confirm?idOrder='+response.data.idOrder ;
- }
- }
- else {
- app.errors = response.data.errors ;
- window.scroll(0, $('#page-title').offset().top) ;
- app.disableConfirmButton = false ;
- }
- });
- },
- checkProducts: function() {
- if(!this.oneProductOrdered()) {
- this.errors.push('Veuillez sélectionner au moins un produit.') ;
- }
- },
- checkCreditLimit: function(order) {
- var total = this.priceTotal() ;
- if(order != null) {
- total = this.priceTotal() - order.amount_paid ;
- }
- return this.producer.credit_limit == null || (this.producer.credit_limit != null && (this.user.credit - total >= this.producer.credit_limit)) ;
- },
- isProductAvailable: function(product) {
- return product.productDistribution && product.productDistribution[0] && product.productDistribution[0].active == 1;
- },
- countProductsByCategory: function(category) {
- var count = 0 ;
- for(var i = 0 ; i < this.products.length ; i++) {
- if(this.products[i].id_product_category == category.id && this.isProductAvailable(this.products[i])) {
- count ++ ;
- }
- }
- return count ;
- },
- countSelectedProductsByCategory: function(category) {
- var count = 0 ;
- for(var key in this.products) {
- if(this.products[key].quantity_form > 0 && this.products[key].id_product_category == category.id) {
- count ++ ;
- }
- }
-
- return count ;
- },
- setCategoryCurrent: function(category, first) {
- var idScroll = false;
- if(this.categoryCurrent && this.categoryCurrent.id == category.id && !first) {
- this.categoryCurrent = null ;
- }
- else {
- this.categoryCurrent = category ;
- if(!first) {
- idScroll = 'category'+this.categoryCurrent.id;
- }
- }
-
- setTimeout(function() {
- opendistrib_products();
- }, 500);
-
- if(idScroll) {
- setTimeout(opendistrib_scroll, 250, idScroll);
- }
- }
- },
- computed : {
- orderedPointsSale: function() {
- var orderedPointsSaleArray = this.pointsSale.sort(function(a, b) {
- if(a.position > b.position) {
- return 1 ;
- }
- else {
- return -1 ;
- }
- }) ;
-
- return orderedPointsSaleArray ;
- }
- },
- updated: function () {
- var app = this;
- this.$nextTick(function () {
- if(app.step == 'products' && !app.user && app.producer.option_allow_order_guest) {
- $("#signup-guest form").validate({
- rules: {
- 'SignupForm[email]': {
- 'email': true,
- 'required': true,
- 'minlength': 8,
- 'maxlength': 255
- },
- 'SignupForm[password]': {
- 'required': true,
- 'minlength': 8,
- "maxlength": 255
- },
- 'SignupForm[firstname]': {
- 'required': true,
- 'minlength': 2,
- "maxlength": 255
- },
- 'SignupForm[lastname]': {
- 'required': true,
- 'minlength': 2,
- "maxlength": 255
- },
- 'SignupForm[phone]': {
- 'required': true,
- 'minlength': 2,
- "maxlength": 255
- },
- },
- messages: {
- 'SignupForm[email]' : {
- 'required': 'Ce champs est requis.',
- 'email' : 'Email invalide.'
- },
- 'SignupForm[password]' : {
- 'required': 'Ce champs est requis.',
- },
- 'SignupForm[firstname]' : {
- 'required': 'Ce champs est requis.',
- },
- 'SignupForm[lastname]' : {
- 'required': 'Ce champs est requis.',
- },
- 'SignupForm[phone]' : {
- 'required': 'Ce champs est requis.',
- },
- }
- }) ;
- }
- });
- }
- });
-
- Vue.component('step-date',{
- props: [
- 'step',
- 'pointSaleActive',
- 'dateFormat',
- 'changeStep',
- 'producer',
- 'first',
- ],
- data: function() {
- return {
- } ;
- },
- template: '#template-step-date',
- methods: {
- }
- }) ;
-
- Vue.component('step-point-sale',{
- props: [
- 'step',
- 'pointSaleActive',
- 'changeStep',
- 'producer',
- 'first',
- ],
- data: function() {
- return {
- } ;
- },
- template: '#template-step-point-sale',
- methods: {
- }
- }) ;
|