2023-1-9sample

zhc4dev
lenovo 2 years ago
parent 120ac73975
commit 3e34c5745e
  1. 2
      ant-design-vue-jeecg/src/views/zyclothsample/ZyClothSampleList.vue
  2. 14
      ant-design-vue-jeecg/src/views/zyclothsample/modules/ZyClothSampleForm.vue
  3. 19
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/device/controller/ZyDeviceController.java
  4. 2
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/productplan/service/impl/ZyPlanProcessServiceImpl.java
  5. 25
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/zyclothsample/entity/ZyClothSample.java
  6. 2
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/zydevice/devicebrand/controller/ZyDevicebrandController.java
  7. 2
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/zydevice/devicemodel/controller/ZyDevicemodelController.java
  8. 2
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/zydevice/devicetype/controller/ZyDevicetypeController.java

@ -217,7 +217,7 @@ export default {
{ {
title: '企业', title: '企业',
align: "center", align: "center",
dataIndex: 'userId_dictText' dataIndex: 'enterpriseId_dictText'
}, },
{ {
title: '创建时间', title: '创建时间',

@ -5,7 +5,7 @@
<a-row> <a-row>
<a-col :span="24"> <a-col :span="24">
<a-form-model-item label="企业" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="enterpriseId"> <a-form-model-item label="企业" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="enterpriseId">
<j-select-depart v-model="model.userId" @change="kuanshi" /> <j-select-depart v-model="model.enterpriseId" @change="kuanshi" />
</a-form-model-item> </a-form-model-item>
</a-col> </a-col>
@ -152,11 +152,11 @@ export default {
}, },
// //
kuanshi(){ kuanshi(){
this.dict="zy_cloths_style,style_names,nums,enterprise_id="+"'"+this.model.userId+"'"; this.dict="zy_cloths_style,style_names,nums,enterprise_id="+"'"+this.model.enterpriseId+"'";
this.model.styleId=null this.model.styleId=null
}, },
xiugai(){ xiugai(){
if(this.model.stylemodelId!=null&&this.model.userId!=null){ if(this.model.stylemodelId!=null&&this.model.enterpriseId!=null){
this.gaibian() this.gaibian()
} }
}, },
@ -165,11 +165,11 @@ export default {
console.log(this.model) console.log(this.model)
getAction(this.url.sort,this.model).then((res)=>{ getAction(this.url.sort,this.model).then((res)=>{
console.log(res) console.log(res)
if(this.model.id!=null){ if(this.model.id==null||parseInt(res.result,10)==0){
var num=parseInt(res.result,10)
}else{
var num=parseInt(res.result,10)+1 var num=parseInt(res.result,10)+1
}else{
var num=parseInt(res.result,10)
} }
num=num.toString() num=num.toString()
while(num.length<n){ while(num.length<n){
@ -188,7 +188,7 @@ export default {
}, },
edit(record) { edit(record) {
this.model = Object.assign({}, record); this.model = Object.assign({}, record);
this.dict="zy_cloths_style,style_names,nums,enterprise_id="+"'"+this.model.userId+"'"; this.dict="zy_cloths_style,style_names,nums,enterprise_id="+"'"+this.model.enterpriseId+"'";
this.visible = true; this.visible = true;
} }
, ,

@ -174,24 +174,7 @@ public class ZyDeviceController extends JeecgController<ZyDevice, IZyDeviceServi
QueryWrapper queryWrapper=new QueryWrapper(); QueryWrapper queryWrapper=new QueryWrapper();
queryWrapper.eq("name",zyDevice.getName()); queryWrapper.eq("name",zyDevice.getName());
int a=zyDeviceService.count(queryWrapper); int a=zyDeviceService.count(queryWrapper);
if(a==0){ if(a<2){
if(zyDevice.getModelId()!=null&&!zyDevice.getModelId().equals("")){
ZyDevicemodel zyDevicemodel=zyDeviceService.findByModelId(zyDevice.getModelId());
if(zyDevicemodel.getBrandId()!=null){
zyDevice.setBrandId(zyDevicemodel.getBrandId());
zyDevice.setTypeCode(zyDevicemodel.getDevicetypeCode());
}
}
String code=zyDeviceService.getCode();
if(code==null||code.equals("")){
zyDevice.setCode(zyDevice.getTypeCode()+"001");
}else{
String sort=String.valueOf(Integer.parseInt(code.substring(6))+1);
while(sort.length()<3){
sort="0"+sort;
}
zyDevice.setCode(zyDevice.getTypeCode()+sort);
}
zyDeviceService.updateById(zyDevice); zyDeviceService.updateById(zyDevice);
return Result.OK("编辑成功!"); return Result.OK("编辑成功!");
}else{ }else{

@ -32,7 +32,7 @@ import org.springframework.util.ObjectUtils;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.List; import java.util.List;
import static com.sun.tools.internal.xjc.reader.Ring.add;
/** /**
* @Description: 生产计划工序 * @Description: 生产计划工序

@ -70,7 +70,7 @@ public class ZyClothSample implements Serializable {
@Excel(name = "用户", width = 15) @Excel(name = "用户", width = 15)
@ApiModelProperty(value = "用户") @ApiModelProperty(value = "用户")
@Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id") @Dict(dictTable = "sys_depart", dicText = "depart_name", dicCode = "id")
private String userId; private String enterpriseId;
/**创建日期*/ /**创建日期*/
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ -85,10 +85,10 @@ public class ZyClothSample implements Serializable {
@ApiModelProperty(value = "更新日期") @ApiModelProperty(value = "更新日期")
private java.util.Date updateTime; private java.util.Date updateTime;
/**成衣名称*/ // /**成衣名称*/
@Excel(name = "成衣名称", width = 15) // @Excel(name = "成衣名称", width = 15)
@ApiModelProperty(value = "成衣名称") // @ApiModelProperty(value = "成衣名称")
private String clothName; // private String clothName;
/**描述*/ /**描述*/
@Excel(name = "描述", width = 15) @Excel(name = "描述", width = 15)
@ApiModelProperty(value = "描述") @ApiModelProperty(value = "描述")
@ -97,9 +97,16 @@ public class ZyClothSample implements Serializable {
@Excel(name = "图片", width = 15) @Excel(name = "图片", width = 15)
@ApiModelProperty(value = "图片") @ApiModelProperty(value = "图片")
private String url; private String url;
/**用户类型*/ // /**用户类型*/
@Excel(name = "用户类型", width = 15) // @Excel(name = "用户类型", width = 15)
@ApiModelProperty(value = "用户类型") // @ApiModelProperty(value = "用户类型")
private String type; // private String type;
@Excel(name = "结构图", width = 15)
@ApiModelProperty(value = "结构图")
private String structureDiagram;
@Excel(name = "排料图", width = 15)
@ApiModelProperty(value = "排料图")
private String layoutDiagram;
} }

@ -109,7 +109,7 @@ public class ZyDevicebrandController extends JeecgController<ZyDevicebrand, IZyD
QueryWrapper queryWrapper=new QueryWrapper(); QueryWrapper queryWrapper=new QueryWrapper();
queryWrapper.eq("brand",zyDevicebrand.getBrand()); queryWrapper.eq("brand",zyDevicebrand.getBrand());
int a=zyDevicebrandService.count(queryWrapper); int a=zyDevicebrandService.count(queryWrapper);
if(a==0){ if(a<2){
zyDevicebrandService.updateById(zyDevicebrand); zyDevicebrandService.updateById(zyDevicebrand);
return Result.OK("编辑成功!"); return Result.OK("编辑成功!");
}else{ }else{

@ -144,7 +144,7 @@ public class ZyDevicemodelController extends JeecgController<ZyDevicemodel, IZyD
QueryWrapper queryWrapper=new QueryWrapper(); QueryWrapper queryWrapper=new QueryWrapper();
queryWrapper.eq("model",zyDevicemodel.getModel()); queryWrapper.eq("model",zyDevicemodel.getModel());
int a=zyDevicemodelService.count(queryWrapper); int a=zyDevicemodelService.count(queryWrapper);
if(a==0){ if(a<2){
zyDevicemodelService.updateById(zyDevicemodel); zyDevicemodelService.updateById(zyDevicemodel);
return Result.OK("编辑成功!"); return Result.OK("编辑成功!");
}else{ }else{

@ -107,7 +107,7 @@ public class ZyDevicetypeController extends JeecgController<ZyDevicetype, IZyDev
QueryWrapper queryWrapper=new QueryWrapper(); QueryWrapper queryWrapper=new QueryWrapper();
queryWrapper.eq("name",zyDevicetype.getName()); queryWrapper.eq("name",zyDevicetype.getName());
int a=zyDevicetypeService.count(queryWrapper); int a=zyDevicetypeService.count(queryWrapper);
if(a==0){ if(a<2){
zyDevicetypeService.updateById(zyDevicetype); zyDevicetypeService.updateById(zyDevicetype);
return Result.OK("编辑成功!");} return Result.OK("编辑成功!");}
else{ else{

Loading…
Cancel
Save