|
@@ -550,8 +550,8 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-button type="primary" @click="saveForm">保 存</el-button>
|
|
|
- <el-button type="primary" @click="submitForm">请 核</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="saveForm">保 存</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="submitForm">请 核</el-button>
|
|
|
</el-form>
|
|
|
<div class="dialogTableTitle flex a-center jlr">
|
|
|
<h3>货转明细</h3>
|
|
@@ -560,17 +560,17 @@
|
|
|
</el-button
|
|
|
>
|
|
|
<el-button
|
|
|
- :disabled="dataListSelection.length <= 0"
|
|
|
+ :disabled="dataListSelection.length <= 0 || browseStatus"
|
|
|
@click.prevent="creditClick()"
|
|
|
>货转确认
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
- :disabled="dataWithdrawList.length <= 0"
|
|
|
+ :disabled="dataWithdrawList.length <= 0 || browseStatus"
|
|
|
@click.prevent="withdrawClick"
|
|
|
>撤回货转
|
|
|
</el-button
|
|
|
>
|
|
|
- <el-button type="primary" @click="saveForm">保 存</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="saveForm">保 存</el-button>
|
|
|
</div>
|
|
|
<el-table
|
|
|
:data="dataList"
|
|
@@ -825,7 +825,7 @@
|
|
|
<el-button :disabled="browseStatus" @click.prevent="addRelevt()"
|
|
|
>新增
|
|
|
</el-button>
|
|
|
- <el-button type="primary" @click="saveForm">保 存</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="saveForm">保 存</el-button>
|
|
|
</div>
|
|
|
<el-table
|
|
|
:data="relevantAttachments"
|
|
@@ -919,7 +919,7 @@
|
|
|
<el-button :disabled="browseStatus" @click.prevent="addCollection()"
|
|
|
>新增
|
|
|
</el-button>
|
|
|
- <el-button type="primary" @click="saveForm">保 存</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="saveForm">保 存</el-button>
|
|
|
</div>
|
|
|
<el-table
|
|
|
:data="warehouseDrList"
|
|
@@ -1145,7 +1145,7 @@
|
|
|
<el-button :disabled="browseStatus" @click.prevent="addpayment()"
|
|
|
>新增
|
|
|
</el-button>
|
|
|
- <el-button type="primary" @click="saveForm">保 存</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="saveForm">保 存</el-button>
|
|
|
</div>
|
|
|
<el-table
|
|
|
:data="warehouseCrList"
|
|
@@ -1370,8 +1370,8 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="saveForm">保 存</el-button>
|
|
|
- <el-button type="primary" @click="submitForm">提交审核</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="saveForm">保 存</el-button>
|
|
|
+ <el-button type="primary" :disabled="browseStatus" @click="submitForm">提交审核</el-button>
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
</div>
|
|
|
<!-- 选择库存总账数据 -->
|