/** * ADOBE CONFIDENTIAL * * Copyright 2016 Adobe * All Rights Reserved. * * NOTICE: All information contained herein is, and remains * the property of Adobe and its suppliers, if any. The intellectual * and technical concepts contained herein are proprietary to Adobe * and its suppliers and are protected by all applicable intellectual * property laws, including trade secret and copyright laws. * Dissemination of this information or reproduction of this material * is strictly forbidden unless prior written permission is obtained * from Adobe. */ define([ 'jquery', 'mage/translate' ], function ($) { 'use strict'; return function (target) { $.validator.addMethod( 'validate-purchase-order-number', function (value) { return !value || /^[a-zA-Z0-9-/]+$/.test(value); }, $.mage.__('Please use only letters (a-z or A-Z), numbers (0-9), dash (-) or slash (/) in this field.') ); return target; }; });