| | |
| | | ,{field: 'barcode', align: 'center',title: '条形码'} |
| | | ,{field: 'inQty', align: 'center',title: '入库暂存'} |
| | | ,{field: 'area$', align: 'center',title: '绑定库区'} |
| | | ,{field: 'inFirstCrnCsv', align: 'center',title: '第一优先池'} |
| | | ,{field: 'inSecondCrnCsv', align: 'center',title: '第二优先池'} |
| | | // ,{field: 'row1', align: 'center',title: ''} |
| | | // ,{field: 'ioTime$', align: 'center',title: ''} |
| | | // ,{field: 'area', align: 'center',title: ''} |
| | |
| | | inQty: $('#inQty').val(), |
| | | row1: $('#row1').val(), |
| | | ioTime: top.strToDate($('#ioTime\\$').val()), |
| | | area: $('#area').val(), |
| | | area: getAreaSubmitValue(), |
| | | inFirstCrnCsv: $('#inFirstCrnCsv').val(), |
| | | inSecondCrnCsv: $('#inSecondCrnCsv').val(), |
| | | inFirstCrnCurrentNo: $('#inFirstCrnCurrentNo').val(), |
| | | inSecondCrnCurrentNo: $('#inSecondCrnCurrentNo').val(), |
| | | inOk: $('#inOk').val(), |
| | | outOk: $('#outOk').val(), |
| | | modiUser: $('#modiUser').val(), |
| | |
| | | } else { |
| | | $(el).val('N'); |
| | | } |
| | | }); |
| | | form.on('checkbox(areaCheckbox)', function () { |
| | | $('#area').val(getAreaSubmitValue()); |
| | | }); |
| | | |
| | | // 搜索栏搜索事件 |
| | |
| | | var find = el.find(":input[id='" + val + "']"); |
| | | var currentVal = data[val]; |
| | | if (val === 'area') { |
| | | currentVal = normalizeAreaValue(currentVal); |
| | | setAreaValues(currentVal); |
| | | if (find[0] != null) { |
| | | find.val(normalizeAreaValues(currentVal).join(',')); |
| | | } |
| | | continue; |
| | | } |
| | | if (find[0]!=null){ |
| | | if (find[0].type === 'checkbox'){ |
| | |
| | | find.remove("checked"); |
| | | find.val('N'); |
| | | } |
| | | continue; |
| | | } else if (find[0].type === 'select-multiple') { |
| | | find.val(currentVal || []); |
| | | continue; |
| | | } |
| | | } |
| | |
| | | return value; |
| | | } |
| | | |
| | | function normalizeAreaValues(value) { |
| | | if (value === undefined || value === null || value === '') { |
| | | return []; |
| | | } |
| | | var values = Object.prototype.toString.call(value) === '[object Array]' |
| | | ? value |
| | | : String(value).replace(/[,;、]/g, ',').split(/[,;]+/); |
| | | var result = []; |
| | | for (var i = 0; i < values.length; i++) { |
| | | var normalized = normalizeAreaValue(values[i]); |
| | | if (normalized === undefined || normalized === null || normalized === '') { |
| | | continue; |
| | | } |
| | | if (result.indexOf(normalized) < 0) { |
| | | result.push(normalized); |
| | | } |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | function setAreaValues(value) { |
| | | var values = normalizeAreaValues(value); |
| | | $('#area').val(values.join(',')); |
| | | $('#areaBox input[type="checkbox"][name="areaOption"]').each(function () { |
| | | var checked = values.indexOf(this.value) >= 0; |
| | | $(this).prop('checked', checked); |
| | | if (checked) { |
| | | $(this).attr('checked', 'checked'); |
| | | } else { |
| | | $(this).removeAttr('checked'); |
| | | } |
| | | }); |
| | | } |
| | | |
| | | function getAreaValues() { |
| | | var values = []; |
| | | $('#areaBox input[type="checkbox"][name="areaOption"]').each(function () { |
| | | if (this.checked && values.indexOf(this.value) < 0) { |
| | | values.push(this.value); |
| | | } |
| | | }); |
| | | return values; |
| | | } |
| | | |
| | | function getAreaSubmitValue() { |
| | | var values = getAreaValues(); |
| | | $('#area').val(values.join(',')); |
| | | return values.join(','); |
| | | } |
| | | |
| | | function clearFormVal(el) { |
| | | $(':input', el) |
| | | .val('') |
| | | .removeAttr('checked') |
| | | .removeAttr('selected'); |
| | | $(':input', el).each(function () { |
| | | if (this.type === 'checkbox' || this.type === 'radio') { |
| | | $(this).prop('checked', false).removeAttr('checked'); |
| | | return; |
| | | } |
| | | if (this.tagName === 'SELECT' && this.multiple) { |
| | | $(this).val([]).find('option').prop('selected', false); |
| | | return; |
| | | } |
| | | $(this).val(''); |
| | | }); |
| | | } |
| | | |
| | | function detailScreen(index) { |