仓位图
parent
800eb5840a
commit
a57fd68fd0
|
@ -227,6 +227,18 @@ public class MdBinController extends BaseController {
|
|||
jsonParts.put("binid", resultt.get(i).get("binid"));
|
||||
jsonParts.put("des", resultt.get(i).get("des"));
|
||||
jsonParts.put("tincount", resultt.get(i).get("tincount"));
|
||||
try{
|
||||
jsonParts.put("xnode", resultt.get(i).get("xnode"));
|
||||
|
||||
jsonParts.put("ynode", resultt.get(i).get("ynode"));
|
||||
|
||||
jsonParts.put("znode", resultt.get(i).get("znode"));
|
||||
|
||||
jsonParts.put("colour", resultt.get(i).get("colour"));
|
||||
|
||||
}catch (Exception e){
|
||||
|
||||
}
|
||||
result.add(jsonParts);
|
||||
}
|
||||
j.setObj(resultt.size());
|
||||
|
|
|
@ -118,6 +118,12 @@ public class MdBinEntity implements java.io.Serializable {
|
|||
/**仓库*/
|
||||
@Excel(name="电子标签ID")
|
||||
private java.lang.String lorabqId;
|
||||
@Excel(name="X坐标")
|
||||
private java.lang.String xnode;
|
||||
@Excel(name="y坐标")
|
||||
private java.lang.String ynode;
|
||||
@Excel(name="z坐标")
|
||||
private java.lang.String znode;
|
||||
/**
|
||||
*方法: 取得java.lang.String
|
||||
*@return: java.lang.String 主键
|
||||
|
@ -667,4 +673,31 @@ public class MdBinEntity implements java.io.Serializable {
|
|||
public void setLorabqId(String lorabqId) {
|
||||
this.lorabqId = lorabqId;
|
||||
}
|
||||
|
||||
@Column(name ="XNODE",nullable=true,length=32)
|
||||
public String getXnode() {
|
||||
return xnode;
|
||||
}
|
||||
|
||||
public void setXnode(String xnode) {
|
||||
this.xnode = xnode;
|
||||
}
|
||||
|
||||
@Column(name ="YNODE",nullable=true,length=32)
|
||||
public String getYnode() {
|
||||
return ynode;
|
||||
}
|
||||
|
||||
public void setYnode(String ynode) {
|
||||
this.ynode = ynode;
|
||||
}
|
||||
|
||||
@Column(name ="ZNODE",nullable=true,length=32)
|
||||
public String getZnode() {
|
||||
return znode;
|
||||
}
|
||||
|
||||
public void setZnode(String znode) {
|
||||
this.znode = znode;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -344,6 +344,46 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="row show-grid">
|
||||
|
||||
|
||||
|
||||
<div class="col-xs-3 text-center">
|
||||
<b>X坐标</b>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3">
|
||||
<input id="xnode" name="xnode" type="text" class="form-control"
|
||||
ignore="ignore" style="text-align:right" />
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">X坐标</label>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3 text-center">
|
||||
<b>y坐标</b>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3">
|
||||
<input id="ynode" name="ynode" type="text" class="form-control"
|
||||
ignore="ignore" style="text-align:right"/>
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">y坐标</label>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3 text-center">
|
||||
<b>z坐标</b>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3">
|
||||
<input id="znode" name="znode" type="text" class="form-control"
|
||||
ignore="ignore" style="text-align:right"/>
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">z坐标</label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row" id = "sub_tr" style="display: none;">
|
||||
<div class="col-xs-12 layout-header">
|
||||
<div class="col-xs-6"></div>
|
||||
|
|
|
@ -355,9 +355,46 @@
|
|||
<label class="Validform_label" style="display: none">储位组别</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row show-grid">
|
||||
|
||||
|
||||
|
||||
<div class="col-xs-3 text-center">
|
||||
<b>X坐标</b>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3">
|
||||
<input id="xnode" name="xnode" type="text" class="form-control" value='${mdBinPage.xnode}'
|
||||
ignore="ignore" style="text-align:right" />
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">X坐标</label>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3 text-center">
|
||||
<b>y坐标</b>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3">
|
||||
<input id="ynode" name="ynode" type="text" class="form-control" value='${mdBinPage.ynode}'
|
||||
ignore="ignore" style="text-align:right"/>
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">y坐标</label>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3 text-center">
|
||||
<b>z坐标</b>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3">
|
||||
<input id="znode" name="znode" type="text" class="form-control" value='${mdBinPage.znode}'
|
||||
ignore="ignore" style="text-align:right"/>
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">z坐标</label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row" id = "sub_tr" style="display: none;">
|
||||
<div class="col-xs-12 layout-header">
|
||||
<div class="col-xs-6"></div>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<t:dgCol title="库存地点" field="kuWeiMingCheng" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="仓库" field="binStore" query="true" queryMode="single" dictionary="ba_store,store_code,store_name" width="90"></t:dgCol>
|
||||
<t:dgCol title="库位编码" field="kuWeiBianMa" query="true" queryMode="single" width="120"></t:dgCol>
|
||||
<t:dgCol title="库位条码" field="kuWeiTiaoMa" query="true" queryMode="single" width="120"></t:dgCol>
|
||||
<t:dgCol title="库位条码" field="kuWeiTiaoMa" query="true" queryMode="single" width="120"></t:dgCol>
|
||||
<t:dgCol title="库位类型" field="kuWeiLeiXing" query="true" queryMode="single" dictionary="ba_bin_type,bin_type_code,bin_type_name" width="80"></t:dgCol>
|
||||
<t:dgCol title="库位属性" field="kuWeiShuXing" queryMode="group" dictionary="ba_deg_type,deg_type_code,deg_type_name" width="80"></t:dgCol>
|
||||
<t:dgCol title="产品属性" field="chpShuXing" queryMode="single" dictionary="ba_goods_type,goods_type_code,goods_type_name" width="120"></t:dgCol>
|
||||
|
@ -44,6 +44,9 @@
|
|||
|
||||
<t:dgCol title="备注2" field="mingXi2" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="电子标签ID" field="lorabqId" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="x坐标" field="xnode" query="true" queryMode="single" width="120"></t:dgCol>
|
||||
<t:dgCol title="y坐标" field="ynode" query="true" queryMode="single" width="120"></t:dgCol>
|
||||
<t:dgCol title="z坐标" field="znode" query="true" queryMode="single" width="120"></t:dgCol>
|
||||
|
||||
<t:dgCol title="操作" field="opt" width="100"></t:dgCol>
|
||||
<t:dgDelOpt title="停用" url="mdBinController.do?doDel&id={id}" urlclass="ace_button" urlfont="fa-trash-o" exp="tingYong#ne#Y"/>
|
||||
|
|
Loading…
Reference in New Issue