| | |
| | | var locDetlData = []; |
| | | function getCol() { |
| | | var cols = [ |
| | | {field: 'count', align: 'center',title: '出库数量', edit:'text', width: 130, style:'color: blue;font-weight: bold'} |
| | | ,{field: 'anfme', align: 'center',title: '库存数量'} |
| | | ,{field: 'locNo$', align: 'center',title: '库位号'} |
| | | {field: 'count', align: 'center',title: I18n.t('outbound_quantity'), edit:'text', width: 130, style:'color: blue;font-weight: bold'} |
| | | ,{field: 'anfme', align: 'center',title: I18n.t('inventory_quantity')} |
| | | ,{field: 'locNo$', align: 'center',title: I18n.t('location_no')} |
| | | ]; |
| | | arrRemove(detlCols, 'field', 'anfme'); |
| | | cols.push.apply(cols, detlCols); |
| | | cols.push({fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width: 80}) |
| | | var dCols = []; |
| | | if (typeof getDetlCols === 'function') { |
| | | dCols = getDetlCols(); |
| | | } else { |
| | | dCols = detlCols.slice(); |
| | | } |
| | | arrRemove(dCols, 'field', 'anfme'); |
| | | cols.push.apply(cols, dCols); |
| | | cols.push({fixed: 'right', title: I18n.t('operation'), align: 'center', toolbar: '#operate', width: 80}) |
| | | return cols; |
| | | } |
| | | |
| | |
| | | cellMinWidth: 50, |
| | | limit: 500, |
| | | cols: [getCol()], |
| | | text: { |
| | | none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '暂无相关数据' |
| | | }, |
| | | done: function(res, curr, count) { |
| | | limit(); |
| | | getOutBound(); |
| | | if (typeof I18n !== 'undefined') { |
| | | I18n.updatePage($('.layui-table-view')); |
| | | } |
| | | } |
| | | }); |
| | | |
| | | $(document).on('i18n:languageChanged', function() { |
| | | tableIns.reload({ |
| | | cols: [getCol()] |
| | | }); |
| | | }); |
| | | |
| | | // 页面修改 |
| | |
| | | if (obj.field === 'count'){ |
| | | let vle = Number(obj.value); |
| | | if (isNaN(vle)) { |
| | | layer.msg("请输入数字", {icon: 2}); |
| | | layer.msg(I18n.t('please_enter_number'), {icon: 2}); |
| | | modify = false; |
| | | } else { |
| | | if (vle <= 0) { |
| | | layer.msg("数量必须大于零", {icon: 2}); |
| | | layer.msg(I18n.t('quantity_must_be_greater_than_zero'), {icon: 2}); |
| | | modify = false; |
| | | } |
| | | if (vle > Number(data.anfme)) { |
| | | layer.msg("出库数量不得大于库存数量", {icon: 2}); |
| | | layer.msg(I18n.t('outbound_qty_cannot_exceed_inventory_qty'), {icon: 2}); |
| | | modify = false; |
| | | } |
| | | } |
| | |
| | | switch (obj.event) { |
| | | case 'outbound': |
| | | if (locDetlData.length === 0){ |
| | | layer.msg('请先提取商品库存', {icon: 2}); |
| | | layer.msg(I18n.t('please_extract_inventory_item_first'), {icon: 2}); |
| | | } else { |
| | | var staNo = $("#staNoSelect").val(); |
| | | if (staNo === "" || staNo === null){ |
| | | layer.msg("请选择出库口", {icon: 2}); |
| | | layer.msg(I18n.t('please_select_outbound_station'), {icon: 2}); |
| | | return; |
| | | } |
| | | let param = { |
| | |
| | | success: function (res) { |
| | | if (res.code === 200){ |
| | | locDetlData = []; |
| | | tableIns.reload({data: locDetlData,done:function (res) {limit();getOutBound();}}); |
| | | layer.msg(res.msg, {icon: 1}); |
| | | tableIns.reload({data: locDetlData,done:function (res) { |
| | | limit(); |
| | | getOutBound(); |
| | | if (typeof I18n !== 'undefined') { |
| | | I18n.updatePage($('.layui-table-view')); |
| | | } |
| | | }}); |
| | | layer.msg(typeof I18n !== 'undefined' ? I18n.t(res.msg) : res.msg, {icon: 1}); |
| | | } else if (res.code === 403){ |
| | | top.location.href = baseUrl+"/"; |
| | | } else { |
| | |
| | | success: function (res) { |
| | | if (res.code === 200){ |
| | | var tpl = $("#takeSiteSelectTemplate").html(); |
| | | var template = Handlebars.compile(tpl); |
| | | var html = template(res); |
| | | $('#staNoSelect').append(html); |
| | | var list = res.data; |
| | | if (typeof I18n !== 'undefined') { |
| | | $.each(list, function(index, item) { |
| | | var desc = item.desc; |
| | | var start = desc.indexOf('('); |
| | | var end = desc.indexOf(')'); |
| | | if (start !== -1 && end !== -1) { |
| | | var key = desc.substring(start + 1, end); |
| | | var translated = I18n.t(key); |
| | | if (translated !== key) { |
| | | item.desc = desc.substring(0, start + 1) + translated + desc.substring(end); |
| | | } |
| | | } |
| | | }); |
| | | } |
| | | $("#staNoSelect").html(Handlebars.compile(tpl)({data: list})); |
| | | form.render('select'); |
| | | } else if (res.code === 403){ |
| | | top.location.href = baseUrl+"/"; |
| | | }else { |
| | | } else { |
| | | layer.msg(res.msg) |
| | | } |
| | | } |
| | | }) |
| | | }); |
| | | } |
| | | |
| | | |
| | | $(document).on('click','#mat-query', function () { |
| | | let loadIndex = layer.msg('请求中...', {icon: 16, shade: 0.01, time: false}); |
| | | let loadIndex = layer.msg(I18n.t('requesting'), {icon: 16, shade: 0.01, time: false}); |
| | | locDetlLayerIdx = layer.open({ |
| | | type: 2, |
| | | title: false, |