zhc4dev
喻忠伟 2 years ago
parent b3b349b789
commit 5483060437
  1. 12
      ant-design-vue-jeecg/src/views/system/Depart3List.vue
  2. 2
      ant-design-vue-jeecg/src/views/system/DepartList.vue
  3. 4
      ant-design-vue-jeecg/src/views/system/modules/DepartModal.vue
  4. 4
      ant-design-vue-jeecg/src/views/zyWorkorderManagement/ZyWorkOrderList.vue
  5. 1
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/workorder/entity/WorkOrder.java
  6. 5
      jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/workorder/service/impl/WorkOrderServiceImpl.java

@ -104,7 +104,7 @@
:labelCol="labelCol" :labelCol="labelCol"
:wrapperCol="wrapperCol" :wrapperCol="wrapperCol"
label="缩写"> label="缩写">
<a-input placeholder="请输入手机号" v-decorator="['departNameAbbr', validatorRules.departNameAbbr ]"/> <a-input placeholder="请输入缩写" v-decorator="['departNameAbbr', validatorRules.departNameAbbr ]"/>
</a-form-item> </a-form-item>
@ -114,7 +114,7 @@
label="部门编码"> label="部门编码">
<a-input disabled placeholder="请输入部门编码" v-decorator="['orgCode', validatorRules.orgCode ]"/> <a-input disabled placeholder="请输入部门编码" v-decorator="['orgCode', validatorRules.orgCode ]"/>
</a-form-item> </a-form-item>
<template v-if="orgTypeDisabled"> <!--<template v-if="orgTypeDisabled">-->
<a-form-item <a-form-item
:labelCol="labelCol" :labelCol="labelCol"
:wrapperCol="wrapperCol" :wrapperCol="wrapperCol"
@ -155,7 +155,7 @@
<!--</a-radio-group>--> <!--</a-radio-group>-->
<!--</template>--> <!--</template>-->
</a-form-item> </a-form-item>
</template> <!--</template>-->
<template v-if="orgTypeDisabled"> <template v-if="orgTypeDisabled">
@ -468,7 +468,7 @@
console.log('selected', selectedKeys, e) console.log('selected', selectedKeys, e)
this.hiding = false this.hiding = false
let record = e.node.dataRef let record = e.node.dataRef
console.log('onSelect-record', record) console.log('onSelect-record-3', record)
this.currSelected = Object.assign({}, record) this.currSelected = Object.assign({}, record)
this.model = this.currSelected this.model = this.currSelected
this.selectedKeys = [record.key] this.selectedKeys = [record.key]
@ -491,8 +491,10 @@
} }
this.$nextTick(() => { this.$nextTick(() => {
//this.form.getFieldDecorator('departNameAbbr', {initialValue: ''})
// this.form.getFieldDecorator('fax', {initialValue: ''})
// this.form.getFieldDecorator('fax', {initialValue: ''}) // this.form.getFieldDecorator('fax', {initialValue: ''})
this.form.setFieldsValue(pick(record, 'departName','orgCategory', 'orgCode', 'departOrder', 'mobile', 'fax', 'address', 'memo')) this.form.setFieldsValue(pick(record, 'departName','departNameEn','departNameAbbr','orgCategory', 'orgCode', 'departOrder', 'mobile', 'address', 'memo'))
}) })
}, },
getCurrSelectedTitle() { getCurrSelectedTitle() {

@ -474,7 +474,7 @@
} }
this.$nextTick(() => { this.$nextTick(() => {
this.form.getFieldDecorator('fax', {initialValue: ''}) this.form.getFieldDecorator('fax', {initialValue: ''})
this.form.setFieldsValue(pick(record, 'departName','orgCategory', 'orgCode', 'departOrder', 'mobile', 'fax', 'address', 'memo')) this.form.setFieldsValue(pick(record, 'departName','departNameEn','departNameAbbr','orgCategory', 'orgCode', 'departOrder', 'mobile', 'fax', 'address', 'memo'))
}) })
}, },
getCurrSelectedTitle() { getCurrSelectedTitle() {

@ -44,7 +44,7 @@
<a-input placeholder="请输入手机号" v-decorator="['departNameAbbr', validatorRules.departNameAbbr ]"/> <a-input placeholder="请输入手机号" v-decorator="['departNameAbbr', validatorRules.departNameAbbr ]"/>
</a-form-item> </a-form-item>
<template v-if="seen"> <!--<template v-if="seen">-->
<a-form-item <a-form-item
:labelCol="labelCol" :labelCol="labelCol"
:wrapperCol="wrapperCol" :wrapperCol="wrapperCol"
@ -70,7 +70,7 @@
</a-radio> </a-radio>
</a-radio-group> </a-radio-group>
</a-form-item> </a-form-item>
</template> <!--</template>-->
<!--<a-form-item--> <!--<a-form-item-->
<!--:labelCol="labelCol"--> <!--:labelCol="labelCol"-->

@ -37,7 +37,7 @@
<!-- 操作按钮区域 --> <!-- 操作按钮区域 -->
<div class="table-operator"> <div class="table-operator">
<!--<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> <!--<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->
<a-button type="primary" icon="download" @click="handleExportXls('工单订单完工')">导出</a-button> <!--<a-button type="primary" icon="download" @click="handleExportXls('工单订单完工')">导出</a-button>-->
<!--<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">--> <!--<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
<!--<a-button type="primary" icon="import">导入</a-button>--> <!--<a-button type="primary" icon="import">导入</a-button>-->
<!--</a-upload>--> <!--</a-upload>-->
@ -188,7 +188,7 @@
{ {
title:'企业', title:'企业',
align:"center", align:"center",
dataIndex: 'enterprisesId' dataIndex: 'departName'
}, },
{ {
title: '操作', title: '操作',

@ -93,6 +93,7 @@ public class WorkOrder implements Serializable {
private Integer workOrderStatus; private Integer workOrderStatus;
/**企业*/ /**企业*/
@Excel(name = "企业", width = 15) @Excel(name = "企业", width = 15)
@Dict(dictTable = "sys_depart",dicText = "depart_name", dicCode = "id")
@ApiModelProperty(value = "企业") @ApiModelProperty(value = "企业")
private String enterprisesId; private String enterprisesId;
} }

@ -219,7 +219,7 @@ public class WorkOrderServiceImpl extends ServiceImpl<WorkOrderMapper, WorkOrder
return Result.error("未找到对客户量体数据!"); return Result.error("未找到对客户量体数据!");
} }
//商品数量对应产品
for(int i=0;i<goodNum;i++) for(int i=0;i<goodNum;i++)
{ {
ZyProduct productModel=new ZyProduct(); ZyProduct productModel=new ZyProduct();
@ -407,6 +407,9 @@ public class WorkOrderServiceImpl extends ServiceImpl<WorkOrderMapper, WorkOrder
public Result<?> cancellationWorkOrder(WorkOrder woModel) { public Result<?> cancellationWorkOrder(WorkOrder woModel) {
//ZyProduct //ZyProduct
//工单
//-产品
//-工序
return null; return null;
} }

Loading…
Cancel
Save