Merge pull request #2175 from bengu-thon-mai-mochi/regex-pattern
Price inputs formatted in edit & create items page
This commit is contained in:
commit
26fde89cf7
32
resources/assets/js/views/common/items.js
vendored
32
resources/assets/js/views/common/items.js
vendored
@ -29,20 +29,44 @@ const app = new Vue({
|
||||
return {
|
||||
form: new Form('item'),
|
||||
bulk_action: new BulkAction('items'),
|
||||
regex_condition: [
|
||||
'..',
|
||||
'.,',
|
||||
',.',
|
||||
',,'
|
||||
],
|
||||
}
|
||||
},
|
||||
|
||||
watch: {
|
||||
'form.sale_price': function (newVal, oldVal) {
|
||||
if (newVal != '' && newVal.search('^(?=.*?[0-9])[0-9.,]+$') == -1) {
|
||||
if (newVal != '' && newVal.search('^(?=.*?[0-9])[0-9.,]+$') !== 0) {
|
||||
this.form.sale_price = oldVal;
|
||||
return;
|
||||
}
|
||||
|
||||
for (let item of this.regex_condition) {
|
||||
if (this.form.sale_price.includes(item)) {
|
||||
const removeLastChar = newVal.length - 1
|
||||
const inputShown = newVal.slice(0, removeLastChar)
|
||||
this.form.sale_price = inputShown;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
'form.purchase_price': function (newVal, oldVal) {
|
||||
if (newVal != '' && newVal.search('^(?=.*?[0-9])[0-9.,]+$') == -1) {
|
||||
if (newVal != '' && newVal.search('^(?=.*?[0-9])[0-9.,]+$') !== 0) {
|
||||
this.form.purchase_price = oldVal;
|
||||
return;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
for (let item of this.regex_condition) {
|
||||
if (this.form.purchase_price.includes(item)) {
|
||||
const removeLastChar = newVal.length - 1
|
||||
const inputShown = newVal.slice(0, removeLastChar)
|
||||
this.form.purchase_price = inputShown;
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user