|
|
|
@ -102,18 +102,6 @@
|
|
|
|
|
v-hasPermi="['mes:pro:proroute:import']"
|
|
|
|
|
>批量上传附件</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="success"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
:disabled="multiple"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleSyncProductSAP"
|
|
|
|
|
v-hasPermi="['mes:pro:order:add']"
|
|
|
|
|
>同步物料工艺
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
@ -341,7 +329,7 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { listProroute, getProroute, delProroute, addProroute, updateProroute,syncSAP,importProroute,syncProductSAP } from "@/api/technology/proroute";
|
|
|
|
|
import { listProroute, getProroute, delProroute, addProroute, updateProroute,syncSAP,importProroute} from "@/api/technology/proroute";
|
|
|
|
|
import Routeprocess from "./routeprocess";
|
|
|
|
|
import Routeprodproduct from "./routeprodproduct";
|
|
|
|
|
export default {
|
|
|
|
@ -355,7 +343,6 @@ export default {
|
|
|
|
|
loading: true,
|
|
|
|
|
// 选中数组
|
|
|
|
|
ids: [],
|
|
|
|
|
productCodes:[],
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
single: true,
|
|
|
|
|
// 非多个禁用
|
|
|
|
@ -462,7 +449,6 @@ export default {
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
this.ids = selection.map(item => item.routeId)
|
|
|
|
|
this.productCodes = selection.map(item => item.productCode)
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
},
|
|
|
|
@ -616,11 +602,6 @@ export default {
|
|
|
|
|
this.$modal.msgSuccess('同步成功')
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
/**选择产品进行工艺同步**/
|
|
|
|
|
handleSyncProductSAP(){
|
|
|
|
|
const productCodes = this.productCodes;
|
|
|
|
|
return syncProductSAP(productCodes);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|