商品主数据启用规格
parent
8a920a1064
commit
57d3427a4a
|
@ -64,6 +64,7 @@ public class MdGoodsEntity implements java.io.Serializable {
|
|||
/**商品型号*/
|
||||
private java.lang.String shpXingHao;
|
||||
/**商品规格*/
|
||||
@Excel(name="商品规格")
|
||||
private java.lang.String shpGuiGe;
|
||||
/**商品颜色*/
|
||||
private java.lang.String shpYanSe;
|
||||
|
|
|
@ -75,7 +75,8 @@ public class MvGoodsEntity implements java.io.Serializable {
|
|||
private java.lang.String baseunit;
|
||||
private java.lang.String shpMingCheng;
|
||||
|
||||
|
||||
@Excel(name="商品规格")
|
||||
private java.lang.String shpGuiGe;
|
||||
|
||||
@Id
|
||||
@GeneratedValue(generator = "paymentableGenerator")
|
||||
|
@ -334,5 +335,16 @@ public class MvGoodsEntity implements java.io.Serializable {
|
|||
this.baseunit = baseunit;
|
||||
}
|
||||
|
||||
@Column(name ="SHP_GUI_GE",nullable=true,length=32)
|
||||
public java.lang.String getShpGuiGe(){
|
||||
return this.shpGuiGe;
|
||||
}
|
||||
|
||||
/**
|
||||
*方法: 设置java.lang.String
|
||||
*@param: java.lang.String 商品规格
|
||||
*/
|
||||
public void setShpGuiGe(java.lang.String shpGuiGe){
|
||||
this.shpGuiGe = shpGuiGe;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -131,7 +131,16 @@ function counttiji(){
|
|||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">商品条码</label>
|
||||
</div>
|
||||
|
||||
<div class="col-xs-3 text-center">
|
||||
<b >商品规格</b>
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
<input id="shpGuiGe" name="shpGuiGe" type="text" class="form-control"
|
||||
ignore="ignore"
|
||||
/>
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">商品规格</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row show-grid">
|
||||
|
|
|
@ -137,6 +137,17 @@
|
|||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">商品条码</label>
|
||||
</div>
|
||||
<div class="col-xs-3 text-center">
|
||||
<b >商品规格</b>
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
<input id="shpGuiGe" name="shpGuiGe" type="text" class="form-control" value='${mdGoodsPage.shpGuiGe}'
|
||||
ignore="ignore"
|
||||
/>
|
||||
<span class="Validform_checktip" style="float:left;height:0px;"></span>
|
||||
<label class="Validform_label" style="display: none">商品规格</label>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row show-grid">
|
||||
<div class="col-xs-3 text-center">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<t:dgCol title="客户商品编码" field="shpBianMakh" query="true" queryMode="single" width="90"></t:dgCol>
|
||||
|
||||
<t:dgCol title="商品型号" field="shpXingHao" hidden="true" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="商品规格" field="shpGuiGe" hidden="true" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="商品规格" field="shpGuiGe" queryMode="group" width="80"></t:dgCol>
|
||||
<t:dgCol title="商品颜色" field="shpYanSe" hidden="true" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="产品属性" field="chpShuXing" queryMode="single" dictionary="ba_goods_type,goods_type_code,goods_type_name" width="120"></t:dgCol>
|
||||
<t:dgCol title="存放温层" field="cfWenCeng" query="true" queryMode="single" dictionary="ba_deg_type,deg_type_code,deg_type_name" width="80"></t:dgCol>
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<t:dgCol title="客户商品编码" field="shpBianMakh" query="true" queryMode="single" width="90"></t:dgCol>
|
||||
|
||||
<t:dgCol title="商品型号" field="shpXingHao" hidden="true" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="商品规格" field="shpGuiGe" hidden="true" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="商品规格" field="shpGuiGe" queryMode="group" width="80"></t:dgCol>
|
||||
<t:dgCol title="商品颜色" field="shpYanSe" hidden="true" queryMode="group" width="120"></t:dgCol>
|
||||
<t:dgCol title="产品属性" field="chpShuXing" queryMode="single" dictionary="ba_goods_type,goods_type_code,goods_type_name" width="120"></t:dgCol>
|
||||
<t:dgCol title="存放温层" field="cfWenCeng" query="true" queryMode="single" dictionary="ba_deg_type,deg_type_code,deg_type_name" width="80"></t:dgCol>
|
||||
|
|
Loading…
Reference in New Issue