懒羊羊
2023-11-14 036dcdcec6235d82b008f5c736d27a0d1f90d4a2
guns-vip-main/src/main/webapp/assets/modular/pm/salesOrder/salesOrder.js
@@ -20,7 +20,7 @@
        return [[
            {type: 'checkbox'},
            {field: 'id', hide: true, title: '主键id'},
            {field: 'salesOrderCode', sort: true, title: '订单编号',width: 160},
            {field: 'salesOrderCode', sort: true, title: '订单编号',width: 160, templet: '#scoreTpl'},
            {field: 'customerNo', sort: true, title: '客户编号',width: 120},
            {field: 'cargoNo', sort: true, title: '货号',width: 120},
            {field: 'productCode', sort: true, title: '产品编号',width: 160},
@@ -113,12 +113,6 @@
            Feng.error("已拆分下发订单禁止重复拆分");
            return;
        }
        // if (checkRows.data.state !== "1") {
        //     Feng.error("已拆分下发订单禁止重复拆分");
        //     return;
        // }
        // window.location.href = Feng.ctxPath + '/salesOrder/split?id=' + checkRows.data[0].id
    });
    /**
@@ -135,6 +129,18 @@
    */
    SalesOrder.jumpEditPage = function (data) {
        window.location.href = Feng.ctxPath + '/salesOrder/edit?id=' + data.id
    };
    SalesOrder.distributeDetails = function (data) {
        layer.open({
            type: 2,
            area: ['1000px', '600px'],
            title: '拆分详情',
            content: Feng.ctxPath + '/salesOrder/distributeDetails',
            success: function (layero, index) {
                window.salesOrderCode = data;
            },
        });
    };
    /**
@@ -154,7 +160,6 @@
     */
    SalesOrder.distribute = function (data) {
        layer.alert(data);
    };
    /**
@@ -233,6 +238,8 @@
            SalesOrder.jumpEditPage(data);
        } else if (layEvent === 'delete') {
            SalesOrder.onDeleteItem(data);
        } else if (layEvent === 'clickScore') {
            SalesOrder.distributeDetails(data.salesOrderCode);
        }
    });
});