123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0" />
- <meta name="author" content="siweiyong 2602812659@qq.com"/>
- <title>设置出库商品</title>
- <link rel="stylesheet" href="../script/lib/miniui/themes/default/miniui.css">
- <link rel="stylesheet" href="../script/lib/layui/css/layui.css" />
- <link rel="stylesheet" href="../script/lib/cashier/common.css">
- <link rel="stylesheet" href="../script/lib/layui/admin/modules/plugin/formselects/formselects.css" media="all" />
- <script src="../script/lib/jquery/jquery.min.js"></script>
- <script src="../script/lib/miniui/miniui.js"></script>
- <script src="../script/lib/layui/layui.js"></script>
- <script><{Dever::script()}></script>
- <script src="../script/dever/core.js"></script>
- </head>
- <body style="background: #F6F7F9;">
- <div class="main">
- <form class="layui-form" lay-filter="form">
- <div class="layui-row">
- <div class="main_left layui-col-xs12 layui-col-md3">
- <div class="layui-row">
- <div class="top">
- <i class="layui-icon layui-icon-app"></i>商品列表
- </div>
- <div class="left_main">
- <input id="key" class="mini-textbox" onenter="onKeyEnter" value="请输入商品名称" onclick="setVal('key')"/>
- <a class="mini-button" onclick="search()">查询</a>
- <button class="layui-btn layui-btn-button" type="button" style="vertical-align: middle;margin-bottom: 2px;" onclick="addGoods()">一键添加</button>
- <button class="layui-btn layui-btn-button" type="button" style="vertical-align: middle;margin-bottom: 2px;" onclick="delGoods()">一键删除</button>
- <ul id="tree1" class="mini-tree" url="<{$url}>" showTreeIcon="true" textField="name" idField="id" expandOnLoad="true" onNodeClick="onNodeClick">
- </ul>
- </div>
- </div>
- </div>
- <div class="main_right layui-col-xs12 layui-col-md9">
- <div class="layui-row">
- <div class="top">
- <div class="layui-input-inline" style="margin-left:20px">
- <input id="search_key" class="mini-textbox" value="请输入商品名称" onclick="setVal('search_key')"/>
- <a class="mini-button" onclick="searchGoods()">搜索</a>
- </div>
- </div>
- <div class="goods_list" style="height:645px;">
- <table class="layui-table">
- <thead>
- <tr>
- <th lay-data="{field:'id'}">商品编码</th>
- <th lay-data="{field:'name'}">商品名称</th>
- <th lay-data="{field:'number', edit: 'text'}">数量</th>
- <th lay-data="{field:'operation'}">操作</th>
- </tr>
- </thead>
- <tbody id="goods">
-
- </tbody>
- </table>
- </div>
- <div class="total ft16">
- 合计:【<span> 总数量:<i class="totalQuantity">0</i> </span>】
- </div>
- <table class="reading layui-table" lay-even="">
- <tbody>
- <tr>
- <td>出库单类型:</td>
- <td colspan="3">
- <div class="layui-input-inline">
- <select class="update_value form-control layui-input layui-select" name="out_type" id="out_type" ><{$out_type}></select>
- </div>
- </td>
- </tr>
- <tr>
- <td>订单备注:</td>
- <td><textarea class="layui-textarea" name="info" id="info" rows="" cols="" maxlength="200" placeholder="请输入订单备注"></textarea></td>
- </tr>
-
- <tr>
- <td>操作人:</td>
- <td><{$user}></td>
- </tr>
- <!--
- <tr>
- <td>会员级别:</td>
- <td></td>
- <td>有效期:</td>
- <td></td>
- </tr>
- <tr>
- <td>可用积分:</td>
- <td></td>
- <td>可用储值:</td>
- <td></td>
- </tr>
- -->
- </tbody>
- </table>
- <div class="towbtn">
- <input type="button" id="settlement" value="确认出库">
- </div>
- </div>
- </div>
- </div>
- </div>
- </form>
- </div>
- <script>
- var form;
- layui.config(
- {
- base: '../script/lib/layui/admin/' //静态资源所在路径
- ,version: true
- }).extend(
- {
- index: 'lib/index', //主入口模块
- formSelects: 'plugin/formselects/formselects'
- }).use(['index', 'contlist', 'table', 'form', 'formSelects','layer'], function()
- {
- var table = layui.table;
- form = layui.form;
- var formSelects = layui.formSelects;
- });
- $(function()
- {
- $("#settlement").click(function(){
- var url = '<{$submit}>';
- layui.layer.confirm('确定进行此项操作吗?', function() {
- var goods_string = JSON.stringify(goods);
- var data = {};
- var info = $('#info').val();
- var out_type = $('#out_type').val();
- data = {info:info, out_type:out_type,goods:goods_string};
- $.post(url, data, function(t) {
- t = JSON.parse(t);
- if (t.status == 1) {
- layui.layer.alert('添加出库单成功', function(index){
- location.href = t.data;
- layer.close(index);
- });
- } else {
- layui.layer.alert(t.msg);
- }
- });
- });
- })
- /*
- $("#goods").on("keyup", ".goods_num", function() {
- var num = parseFloat($(this).val());
- if (num < 0) {
- num = 1;
- $(this).val(1);
- }
- var id = $(this).parent().attr('value');
- goods[id].num = num;
- setTotal();
- });
- */
- $("#goods").on("keyup", ".goods_num", function() {
- var num = parseFloat($(this).val());
- if (num < 0) {
- num = 1;
- $(this).val(1);
- }
- var id = $(this).parent().attr('value');
- goods[id].num = num;
- if (goods[id].num >= goods[id].total) {
- goods[id].num = goods[id].total;
- layer.msg('库存不足');
- }
- $(this).val(goods[id].num);
-
- setTotal();
- })
- })
- var goods = {};
- mini.parse();
- var tree = mini.get("tree1");
- for (var i in tree.data) {
- if (typeof(tree.data[i].children) == 'object') {
- if (tree.data[i].children.length > 0) {
- for (var j in tree.data[i].children) {
- if(tree.data[i].children[j].select == 1) {
- setGoods(tree.data[i].children[j]);
- }
- }
- } else if(tree.data[i].select == 1) {
- setGoods(tree.data[i]);
- }
- }
- }
- function search()
- {
- var key = mini.get("key").getValue();
- if (key == "") {
- tree.clearFilter();
- } else {
- key = key.toLowerCase();
- tree.filter(function (node) {
- var name = node.name ? node.name.toLowerCase() : "";
- if (name.indexOf(key) != -1) {
- return true;
- }
- });
- }
- }
- function onKeyEnter(e)
- {
- search();
- }
- function onNodeClick()
- {
- var tree=mini.get("tree1");
- node=tree.getSelectedNode();
- if(node.end) {
- setGoods(node);
- }
- }
- function setVal(e)
- {
- mini.get(e).setValue('');
- }
-
- function searchGoods()
- {
- var key = mini.get("search_key").getValue();
- if (key == "") {
- $(".mytr").show();
- } else {
- key = key.toLowerCase();
- $(".mytr").show();
- $(".goods_name").each(function(t) {
- var name = $(this).html();
- name = name.toLowerCase();
- if (name.indexOf(key) == -1) {
- $(this).parent().hide();
- }
- });
- }
- }
- // 一键添加
- function addGoods()
- {
- var key = mini.get("key").getValue();
- if (key == '请输入商品名称') {
- key = '';
- }
- if (key) {
- key = key.toLowerCase();
- }
- for (var i in tree.data) {
- if (typeof(tree.data[i].children) == 'object') {
- if (tree.data[i].children.length > 0) {
- for (var j in tree.data[i].children) {
- if (key) {
- var name = tree.data[i].children[j].name;
- if (name.indexOf(key) != -1) {
- setGoods(tree.data[i].children[j]);
- }
- } else {
- setGoods(tree.data[i].children[j]);
- }
- }
- } else {
- if (key) {
- var name = tree.data[i].name;
- if (name.indexOf(key) != -1) {
- setGoods(tree.data[i]);
- }
- } else {
- setGoods(tree.data[i]);
- }
- }
- }
- }
- }
- // 一键删除
- function delGoods()
- {
- if (confirm('确定删除吗?')) {
- var key = mini.get("key").getValue();
- if (key == '请输入商品名称') {
- key = '';
- }
- if (key) {
- key = key.toLowerCase();
- }
- for (var i in tree.data) {
- if (typeof(tree.data[i].children) == 'object') {
- if (tree.data[i].children.length > 0) {
- for (var j in tree.data[i].children) {
- if (key) {
- var name = tree.data[i].children[j].name;
- if (name.indexOf(key) != -1) {
- unsetGoods(tree.data[i].children[j]);
- }
- } else {
- unsetGoods(tree.data[i].children[j]);
- }
- }
- } else {
- if (key) {
- var name = tree.data[i].name;
- if (name.indexOf(key) != -1) {
- unsetGoods(tree.data[i]);
- }
- } else {
- unsetGoods(tree.data[i]);
- }
- }
- }
- }
- setTotal();
- }
- }
- function unsetGoods(node)
- {
- if (node.id) {
- if (goods[node.id]) {
- delete goods[node.id];
- get(node.id).remove();
- }
- }
- }
- function setGoods(node)
- {
- if (node.id && node.end) {
- var key = node.id;
- if (!goods[key]) {
- goods[key] = node;
- goods[key].price = parseFloat(goods[key].price);
- goods[key].num = 1;
- create(node);
- setTotal();
- } else {
- //add(key);
- }
- }
- }
- function get(key)
- {
- return $('#goods_' + key);
- }
- function create(node)
- {
- if (!get(node.id).length) {
- var addtr = '<tr class="mytr" id="goods_'+node.id+'">';
- addtr += '<td class="goods_id">'+node.id+'</td>';
- addtr += '<td class="goods_name">'+node.name+'</td>';
- addtr += '<td><div class="jiajian" value='+node.id+'><span class="jian" onclick="dec(\''+node.id+'\')">-</span><input type="text" value="'+node.num+'" class="goods_num"><span class="jia" onclick="add(\''+node.id+'\')">+</span></div></td>';
- addtr += '<td><button class="delete_btn" onclick="del(\''+node.id+'\')">删除</button></td>';
- addtr += '</tr>';
- $("#goods").append(addtr);
- }
- }
- function add(id)
- {
- if (goods[id].num >= goods[id].total) {
- goods[id].num = goods[id].total;
- layer.msg('库存不足');
- } else {
- goods[id].num += 1;
- }
-
- get(id).find('.goods_num').val(goods[id].num);
- setTotal();
- }
-
- function dec(id)
- {
- goods[id].num -= 1;
- if (goods[id].num < 1) {
- goods[id].num = 1;
- }
- get(id).find('.goods_num').val(goods[id].num);
- setTotal();
- }
- function del(id)
- {
- delete goods[id];
- get(id).remove();
- setTotal();
- }
-
- function setTotal()
- {
- var cash = 0;
- var num = 0;
- for (var i in goods) {
- num += goods[i].num;
- }
- $(".totalQuantity").html(num);
- //$(".totalMoney").html(cash.toFixed(2));
- }
- </script>
- </body>
- </html>
|