|
|
@@ -7,7 +7,9 @@
|
|
|
}}</div>
|
|
|
<div class="title-right">
|
|
|
<el-button @click="cancel">取消</el-button>
|
|
|
- <el-button type="primary"> 生成生产计划 </el-button>
|
|
|
+ <el-button type="primary" @click="productionPlan">
|
|
|
+ 生成生产计划
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-form
|
|
|
@@ -30,7 +32,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
- <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
|
|
|
+ <!-- <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
|
|
|
<el-form-item label="加工方式:" prop="produceType">
|
|
|
<el-select
|
|
|
v-model="form.produceType"
|
|
|
@@ -65,7 +67,7 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
+ </el-col> -->
|
|
|
<el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
|
|
|
<el-form-item label="余量系数:" prop="marginCoefficient">
|
|
|
<el-select
|
|
|
@@ -83,7 +85,26 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
-
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
|
|
|
+ <el-form-item label="批次号:" prop="batchNo">
|
|
|
+ <el-input
|
|
|
+ placeholder="请输入批次号"
|
|
|
+ v-model="form.batchNo"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col v-bind="styleResponsive ? { lg: 4, md: 10 } : { span: 4 }">
|
|
|
+ <el-form-item label="所属工厂:" prop="factoriesId">
|
|
|
+ <el-select v-model="form.factoriesId" style="width: 100%">
|
|
|
+ <el-option
|
|
|
+ v-for="item of factoryList"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<!-- <el-col
|
|
|
v-bind="styleResponsive ? { lg: 5, md: 10 } : { span: 5 }"
|
|
|
v-if="clientEnvironmentId != 4"
|
|
|
@@ -105,7 +126,7 @@
|
|
|
</el-col> -->
|
|
|
|
|
|
<el-col
|
|
|
- v-bind="styleResponsive ? { lg: 5, md: 10 } : { span: 5 }"
|
|
|
+ v-bind="styleResponsive ? { lg: 4, md: 10 } : { span: 4 }"
|
|
|
v-if="clientEnvironmentId == 4"
|
|
|
>
|
|
|
<el-form-item label="工艺路线:" prop="produceRoutingId">
|
|
|
@@ -127,16 +148,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col> -->
|
|
|
</el-row>
|
|
|
- <el-row :gutter="24">
|
|
|
- <el-col v-bind="styleResponsive ? { lg: 4, md: 8 } : { span: 4 }">
|
|
|
- <el-form-item label="批次号:" prop="batchNo">
|
|
|
- <el-input
|
|
|
- placeholder="请输入批次号"
|
|
|
- v-model="form.batchNo"
|
|
|
- ></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <!--
|
|
|
+ <!--
|
|
|
<el-col v-bind="styleResponsive ? { lg: 5, md: 10 } : { span: 5 }">
|
|
|
<el-form-item label="计划开始日期:" prop="startTime">
|
|
|
<el-date-picker
|
|
|
@@ -155,7 +167,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col> -->
|
|
|
|
|
|
- <!-- <el-col v-bind="styleResponsive ? { lg: 5, md: 10 } : { span: 5 }">
|
|
|
+ <!-- <el-col v-bind="styleResponsive ? { lg: 5, md: 10 } : { span: 5 }">
|
|
|
<el-form-item label="计划结束日期:" prop="endTime">
|
|
|
<el-date-picker
|
|
|
style="width: 100%"
|
|
|
@@ -173,20 +185,6 @@
|
|
|
</el-form-item>
|
|
|
</el-col> -->
|
|
|
|
|
|
- <el-col v-bind="styleResponsive ? { lg: 5, md: 10 } : { span: 5 }">
|
|
|
- <el-form-item label="所属工厂:" prop="factoriesId">
|
|
|
- <el-select v-model="form.factoriesId" style="width: 100%">
|
|
|
- <el-option
|
|
|
- v-for="item of factoryList"
|
|
|
- :key="item.id"
|
|
|
- :label="item.name"
|
|
|
- :value="item.id"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- </el-row>
|
|
|
-
|
|
|
<el-row :gutter="24" class="row-intro">
|
|
|
<el-col v-bind="styleResponsive ? { lg: 3, md: 12 } : { span: 3 }">
|
|
|
<el-form-item label="销售单数量:">{{ form.codeNum }}</el-form-item>
|
|
|
@@ -564,10 +562,344 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-row>
|
|
|
- <div class="title-left">生产计划列表</div>
|
|
|
+ <el-row style="margin-top: 24px">
|
|
|
+ <el-table :data="form.productPlanList" border>
|
|
|
+ <el-table-column label="序号" align="center" width="60">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ scope.$index + 1 }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="销售订单号"
|
|
|
+ align="center"
|
|
|
+ prop="code"
|
|
|
+ width="120"
|
|
|
+ sortable
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="产品名称"
|
|
|
+ align="center"
|
|
|
+ prop="productName"
|
|
|
+ width="120"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column
|
|
|
+ :label="'订单数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
|
|
|
+ align="center"
|
|
|
+ prop="contractNum"
|
|
|
+ width="120"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.contractNum }} {{ scope.row.measuringUnit }}
|
|
|
+ </template>
|
|
|
+ </el-table-column> -->
|
|
|
+ <el-table-column
|
|
|
+ label="订单重量"
|
|
|
+ align="center"
|
|
|
+ prop="productWeight"
|
|
|
+ width="120"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.productWeight }} {{ form.weightUnit }}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="规格" align="center" prop="specification">
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column
|
|
|
+ :label="'欠交数量' + (clientEnvironmentId == '4' ? '(方)' : '')"
|
|
|
+ align="center"
|
|
|
+ prop="lackNum"
|
|
|
+ >
|
|
|
+ </el-table-column> -->
|
|
|
+ <!-- <el-table-column
|
|
|
+ :label="
|
|
|
+ '计划生产数量' + (clientEnvironmentId == '4' ? '(方)' : '')
|
|
|
+ "
|
|
|
+ align="center"
|
|
|
+ prop="planProductNum"
|
|
|
+ width="140"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ label-width="0px"
|
|
|
+ :prop="'productPlanList.' + scope.$index + '.planProductNum'"
|
|
|
+ :rules="{
|
|
|
+ required: true,
|
|
|
+ message: '请输入计划生产数量',
|
|
|
+ trigger: 'blur'
|
|
|
+ }"
|
|
|
+ class="table-item"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model.number="scope.row.planProductNum"
|
|
|
+ size="small"
|
|
|
+ type="number"
|
|
|
+ style="width: 100%"
|
|
|
+ @input="
|
|
|
+ tableHandleKeyUp(scope.row, scope.$index, $event, 'sum')
|
|
|
+ "
|
|
|
+ placeholder="输入数量"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </template>
|
|
|
+ </el-table-column> -->
|
|
|
+ <el-table-column
|
|
|
+ :label="
|
|
|
+ '要求生产数量' + (clientEnvironmentId == '4' ? '(方)' : '')
|
|
|
+ "
|
|
|
+ align="center"
|
|
|
+ prop="requiredFormingNum"
|
|
|
+ width="120"
|
|
|
+ >
|
|
|
+ <!-- <template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ label-width="0px"
|
|
|
+ :prop="
|
|
|
+ 'productPlanList.' + scope.$index + '.requiredFormingNum'
|
|
|
+ "
|
|
|
+ :rules="{
|
|
|
+ required: true,
|
|
|
+ message: '请输入要求生产数量',
|
|
|
+ trigger: 'blur'
|
|
|
+ }"
|
|
|
+ class="table-item"
|
|
|
+ >
|
|
|
+ <el-input
|
|
|
+ v-model.number="scope.row.requiredFormingNum"
|
|
|
+ size="small"
|
|
|
+ disabled
|
|
|
+ oninput="value=value.replace(/[^\d]/g,'')"
|
|
|
+ style="width: 100%"
|
|
|
+ placeholder="输入数量"
|
|
|
+ ></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ </template> -->
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="模数"
|
|
|
+ align="center"
|
|
|
+ width="100"
|
|
|
+ v-if="clientEnvironmentId == '4'"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ <el-input
|
|
|
+ style="width: 100%"
|
|
|
+ size="small"
|
|
|
+ v-model="scope.row.moCount"
|
|
|
+ oninput="value=value.replace(/[^0-9.]/g,'')"
|
|
|
+ @input="
|
|
|
+ tableHandleKeyUp(
|
|
|
+ scope.row,
|
|
|
+ scope.$index,
|
|
|
+ $event,
|
|
|
+ 'moCount'
|
|
|
+ )
|
|
|
+ "
|
|
|
+ placeholder="请输入"
|
|
|
+ >
|
|
|
+ </el-input>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ width="100"
|
|
|
+ v-if="clientEnvironmentId == '4'"
|
|
|
+ >
|
|
|
+ <template slot="header">
|
|
|
+ <span style="color: red">*</span>
|
|
|
+ <span>块数</span>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ <el-input
|
|
|
+ size="small"
|
|
|
+ style="width: 100%"
|
|
|
+ oninput="value=value.replace(/[^0-9.]/g,'')"
|
|
|
+ @input="
|
|
|
+ tableHandleKeyUp(
|
|
|
+ scope.row,
|
|
|
+ scope.$index,
|
|
|
+ $event,
|
|
|
+ 'blockCount'
|
|
|
+ )
|
|
|
+ "
|
|
|
+ v-model="scope.row.blockCount"
|
|
|
+ placeholder="请输入"
|
|
|
+ ></el-input>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="权重等级"
|
|
|
+ align="center"
|
|
|
+ width="120"
|
|
|
+ v-if="clientEnvironmentId == '4'"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ <el-select v-model="scope.row.weight" style="width: 100%">
|
|
|
+ <el-option
|
|
|
+ v-for="item of weightList"
|
|
|
+ :key="item.code"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.code"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ width="120"
|
|
|
+ label="是否开槽"
|
|
|
+ v-if="clientEnvironmentId == '4'"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div>
|
|
|
+ <el-select
|
|
|
+ style="width: 100%"
|
|
|
+ v-model="scope.row.isSlotting"
|
|
|
+ placeholder="请选择"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item of isSlotting"
|
|
|
+ :key="item.code"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.code"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ align="center"
|
|
|
+ width="120"
|
|
|
+ label="开槽类型"
|
|
|
+ v-if="clientEnvironmentId == '4'"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <DictSelection
|
|
|
+ dictName="开槽类型"
|
|
|
+ v-model="scope.row.slottingType"
|
|
|
+ v-if="scope.row.isSlotting == 1"
|
|
|
+ >
|
|
|
+ </DictSelection>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column
|
|
|
+ label="按单按库"
|
|
|
+ align="center"
|
|
|
+ prop="orderLibraryType"
|
|
|
+ >
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ {{ getDictValue('按单按库', row.orderLibraryType) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column> -->
|
|
|
+ <!-- <el-table-column label="订单类型" align="center" prop="orderType">
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ {{ getDictValue('订单类型', row.orderType) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column> -->
|
|
|
+ <el-table-column
|
|
|
+ label="交付日期"
|
|
|
+ align="center"
|
|
|
+ prop="deliveryTime"
|
|
|
+ width="160"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="要求完成日期"
|
|
|
+ align="center"
|
|
|
+ prop="reqMoldTime"
|
|
|
+ width="180"
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ label-width="0px"
|
|
|
+ :prop="'productPlanList.' + scope.$index + '.reqMoldTime'"
|
|
|
+ :rules="{
|
|
|
+ required: true,
|
|
|
+ message: '请选择要求完成日期',
|
|
|
+ trigger: 'blur'
|
|
|
+ }"
|
|
|
+ class="table-item"
|
|
|
+ >
|
|
|
+ <el-date-picker
|
|
|
+ style="width: 100%"
|
|
|
+ v-model="scope.row.reqMoldTime"
|
|
|
+ :pickerOptions="{
|
|
|
+ disabledDate: (time) =>
|
|
|
+ time.getTime() <
|
|
|
+ new Date(new Date().setHours(0, 0, 0, 0)).getTime()
|
|
|
+ }"
|
|
|
+ type="date"
|
|
|
+ placeholder="选择日期"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column
|
|
|
+ label="客户名称"
|
|
|
+ align="center"
|
|
|
+ prop="customerName"
|
|
|
+ >
|
|
|
+ </el-table-column> -->
|
|
|
+ <!-- <el-table-column label="业务员" align="center" prop="salesman">
|
|
|
+ </el-table-column> -->
|
|
|
+ <!-- <el-table-column
|
|
|
+ label="交付要求"
|
|
|
+ align="center"
|
|
|
+ prop="deliveryRequirements"
|
|
|
+ >
|
|
|
+ <template slot-scope="{ row }">
|
|
|
+ {{ getDictValue('交付要求', row.deliveryRequirements) }}
|
|
|
+ </template>
|
|
|
+ </el-table-column> -->
|
|
|
+ <el-table-column
|
|
|
+ prop="priority"
|
|
|
+ label="优先级"
|
|
|
+ width="100"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
+ <template slot-scope="{ row, $index }">
|
|
|
+ <div style="display: flex">
|
|
|
+ <el-input
|
|
|
+ v-if="$index == 0"
|
|
|
+ v-model="row.priority"
|
|
|
+ type="number"
|
|
|
+ size="mini"
|
|
|
+ :min="0"
|
|
|
+ :max="10"
|
|
|
+ @change="priorityChange(row)"
|
|
|
+ style="width: 80px"
|
|
|
+ ></el-input>
|
|
|
+ <el-popover
|
|
|
+ v-if="$index == 0"
|
|
|
+ placement="right"
|
|
|
+ width="200"
|
|
|
+ trigger="hover"
|
|
|
+ content="数值越大优先级越高(0-3普通, 4-6优先, 7-10紧急)"
|
|
|
+ >
|
|
|
+ <div class="sort-wrap" slot="reference">
|
|
|
+ <i class="el-icon-caret-top" @click="sortTop(row)"></i>
|
|
|
+ <i
|
|
|
+ class="el-icon-caret-bottom"
|
|
|
+ @click="sortBottom(row)"
|
|
|
+ ></i>
|
|
|
+ </div>
|
|
|
+ </el-popover>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
</el-row>
|
|
|
- <el-row :gutter="24">
|
|
|
+ <el-row :gutter="24" style="margin-top: 24px">
|
|
|
<el-col v-bind="styleResponsive ? { lg: 24, md: 24 } : { span: 24 }">
|
|
|
<el-form-item label="计划备注:">
|
|
|
<el-input
|
|
|
@@ -616,9 +948,10 @@
|
|
|
releaseSave,
|
|
|
getInventory,
|
|
|
getUpdateInfoById,
|
|
|
- bomRoutingList,
|
|
|
+ // bomRoutingList,
|
|
|
bomListByPlan,
|
|
|
- getFactoryList
|
|
|
+ getFactoryList,
|
|
|
+ getGeneratePlan
|
|
|
} from '@/api/saleOrder';
|
|
|
|
|
|
import { getByCode } from '@/api/system/dictionary-data';
|
|
|
@@ -666,7 +999,8 @@
|
|
|
batchNo: null,
|
|
|
produceType: 1,
|
|
|
bomCategoryId: '',
|
|
|
- factoriesId: ''
|
|
|
+ factoriesId: '',
|
|
|
+ productPlanList: []
|
|
|
},
|
|
|
|
|
|
marginList: [],
|
|
|
@@ -681,12 +1015,6 @@
|
|
|
{ required: true, message: '请选择工艺路线', trigger: 'blur' }
|
|
|
],
|
|
|
|
|
|
- produceType: [
|
|
|
- { required: true, message: '请选择加工方式', trigger: 'blur' }
|
|
|
- ],
|
|
|
- bomCategoryId: [
|
|
|
- { required: true, message: '请选择BOM版本', trigger: 'blur' }
|
|
|
- ],
|
|
|
factoriesId: [
|
|
|
{ required: true, message: '请选择所属工厂', trigger: 'blur' }
|
|
|
]
|
|
|
@@ -752,15 +1080,15 @@
|
|
|
},
|
|
|
|
|
|
getPlanRouting() {
|
|
|
- bomRoutingList(this.form.bomCategoryId).then((res) => {
|
|
|
- this.routingList = res || [];
|
|
|
- });
|
|
|
+ // bomRoutingList(this.form.bomCategoryId).then((res) => {
|
|
|
+ // this.routingList = res || [];
|
|
|
+ // });
|
|
|
},
|
|
|
|
|
|
bomListVersion() {
|
|
|
let param = {
|
|
|
bomType: this.form.produceType,
|
|
|
- categoryId: this.form.salesOrders[0].categoryId
|
|
|
+ categoryId: this.form.salesOrders[0]?.categoryId
|
|
|
};
|
|
|
bomListByPlan(param).then((res) => {
|
|
|
this.bomVersionList = res || [];
|
|
|
@@ -800,19 +1128,19 @@
|
|
|
this.getPlanRouting();
|
|
|
},
|
|
|
|
|
|
- changeRoute() {
|
|
|
- this.routingList.forEach((f) => {
|
|
|
- if (f.id == this.form.produceRoutingId) {
|
|
|
- this.$set(this.form, 'produceRoutingName', f.name);
|
|
|
- this.$set(this.form, 'produceVersionName', f.version);
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
+ // changeRoute() {
|
|
|
+ // this.routingList.forEach((f) => {
|
|
|
+ // if (f.id == this.form.produceRoutingId) {
|
|
|
+ // this.$set(this.form, 'produceRoutingName', f.name);
|
|
|
+ // this.$set(this.form, 'produceVersionName', f.version);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ // },
|
|
|
|
|
|
getSaleInfo() {
|
|
|
let params = JSON.parse(this.$route.query.selection);
|
|
|
productionToPlan(params).then((res) => {
|
|
|
- console.log(res);
|
|
|
+ res.productPlanList = res.productPlanList || [];
|
|
|
this.form = deepClone(res);
|
|
|
if (!this.form.produceType) {
|
|
|
this.form.produceType = 1;
|
|
|
@@ -1220,6 +1548,27 @@
|
|
|
this.$message.error('提交失败,请重新提交!');
|
|
|
});
|
|
|
}
|
|
|
+ },
|
|
|
+ preparePlanParams() {
|
|
|
+ const params = deepClone(this.form);
|
|
|
+ params.categoryId = params.salesOrders[0]?.categoryId;
|
|
|
+ if (this.$route.query.type != 'edit') {
|
|
|
+ delete params.id;
|
|
|
+ }
|
|
|
+ return params;
|
|
|
+ },
|
|
|
+ //生产生产计划
|
|
|
+ productionPlan() {
|
|
|
+ const params = this.preparePlanParams();
|
|
|
+ getGeneratePlan(params)
|
|
|
+ .then((res) => {
|
|
|
+ this.form.productPlanList = res;
|
|
|
+ console.log(this.form.productPlanList);
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.error('生成生产计划失败:', error);
|
|
|
+ this.$message.error('生成失败,请重新生成!');
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
};
|