|
|
@@ -201,14 +201,13 @@
|
|
|
<el-button @click="res_bomcloseDialog" style="height: 40px;font-size: 20px;">关 闭</el-button>
|
|
|
<el-button type="primary" @click="res_bomenterDialog" style="height: 40px;font-size: 20px;">退 还</el-button>
|
|
|
</div>
|
|
|
- <div style="width: 100%; height: 60px; padding: 0px; margin: 10px 0px 0px 0px; display: flex; align-items: center;">
|
|
|
- <el-form-item label="订单编号 :" prop="currentProcess" style="margin-right: 20px; padding: 0px">
|
|
|
- <el-input v-model="ddhformData['ddh']" disabled style="width: 200px;"/>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="生产款号 :" prop="currentProcess" style="margin-right: 20px; padding: 0px">
|
|
|
- <el-input v-model="ddhformData['kh']" disabled style="width: 200px;"/>
|
|
|
- </el-form-item>
|
|
|
- </div>
|
|
|
+ <el-divider style="margin: 10px 0px 20px;" ><span style="font-size: 18px;color:red;font-weight: bold;margin-left: 20px;">绿色部分填写领用数量</span></el-divider>
|
|
|
+ <el-descriptions class="margin-top" :column="4" :size="size" border>
|
|
|
+ <el-descriptions-item label="订单编号" class="ddh">{{ ddhformData['ddh'] }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="客户">{{ ddhformData['kh'] }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="生产款号">{{ ddhformData['sckh'] }}</el-descriptions-item>
|
|
|
+ <el-descriptions-item label="款式">{{ ddhformData['ks'] }}</el-descriptions-item>
|
|
|
+ </el-descriptions>
|
|
|
<div>
|
|
|
<el-table ref="paichengRef"
|
|
|
:show-overflow-tooltip="true"
|
|
|
@@ -774,7 +773,9 @@ const res_bomdialogFormVisible = ref(false)
|
|
|
const resbomtableData = ref([]);
|
|
|
const ddhformData = reactive({
|
|
|
ddh: '',
|
|
|
- kh:''
|
|
|
+ kh:'',
|
|
|
+ sckh:'',
|
|
|
+ ks:'',
|
|
|
});
|
|
|
const resbom_tableColumns = ref(
|
|
|
[
|
|
|
@@ -809,6 +810,8 @@ const return_Dialog = async ()=>{
|
|
|
res_bomdialogFormVisible.value = true
|
|
|
ddhformData.ddh = _orderid.value
|
|
|
ddhformData.kh = _kh.value
|
|
|
+ ddhformData.sckh = orderSearchdata.data[0].客户编号
|
|
|
+ ddhformData.ks = orderSearchdata.data[0].款式
|
|
|
const orderBomListlsit = await orderBomList({order:_orderid.value});
|
|
|
console.log(orderBomListlsit)
|
|
|
_TestCoefficient();
|
|
|
@@ -886,8 +889,8 @@ const res_bomenterDialog = async() => {
|
|
|
rq: currentDate,
|
|
|
name: "退还",
|
|
|
sys_id: _username.value,
|
|
|
- receipt_number:danhao.value,
|
|
|
- recipient:_username.value
|
|
|
+ // receipt_number:danhao.value,
|
|
|
+ // recipient:_username.value
|
|
|
}
|
|
|
});
|
|
|
console.log(formattedData);
|