|
|
@ -164,6 +164,15 @@
|
|
|
|
>撤回
|
|
|
|
>撤回
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
@click.native="generOrder(scope.row)"
|
|
|
|
|
|
|
|
>复制
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
<!-- <el-button-->
|
|
|
|
<!-- type="text"-->
|
|
|
|
<!-- type="text"-->
|
|
|
|
<!-- size="small"-->
|
|
|
|
<!-- size="small"-->
|
|
|
@ -355,6 +364,22 @@
|
|
|
|
</el-tab-pane>
|
|
|
|
</el-tab-pane>
|
|
|
|
</el-tabs>
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
|
|
title="根据当前单据生成新单据"
|
|
|
|
|
|
|
|
:visible.sync="stockChangeVisible"
|
|
|
|
|
|
|
|
width="85%"
|
|
|
|
|
|
|
|
v-if="stockChangeVisible"
|
|
|
|
|
|
|
|
@close='closeDialog'
|
|
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<DialogcChangeNewOrder
|
|
|
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
|
|
|
:curRow="curRow"
|
|
|
|
|
|
|
|
></DialogcChangeNewOrder>
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
@ -371,6 +396,7 @@ import {getResultDetailList} from "@/api/inout/orderDetailResult";
|
|
|
|
import {getCodeDetailList} from "@/api/inout/orderDetailCode";
|
|
|
|
import {getCodeDetailList} from "@/api/inout/orderDetailCode";
|
|
|
|
import {getCodeList} from "@/api/inout/code";
|
|
|
|
import {getCodeList} from "@/api/inout/code";
|
|
|
|
import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint"
|
|
|
|
import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint"
|
|
|
|
|
|
|
|
import DialogcChangeNewOrder from "@/views/inout/DialogcChangeNewOrder";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
const formJson = {
|
|
|
@ -499,9 +525,11 @@ export default {
|
|
|
|
resultTotal: 0,
|
|
|
|
resultTotal: 0,
|
|
|
|
resultDetailLoading: false,
|
|
|
|
resultDetailLoading: false,
|
|
|
|
resultDetailList: [],
|
|
|
|
resultDetailList: [],
|
|
|
|
|
|
|
|
stockChangeVisible: false,
|
|
|
|
|
|
|
|
curRow: null,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {},
|
|
|
|
components: {DialogcChangeNewOrder},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
onReset() {
|
|
|
|
onReset() {
|
|
|
|
this.$router.push({
|
|
|
|
this.$router.push({
|
|
|
@ -833,6 +861,21 @@ export default {
|
|
|
|
// this.$message.info('回退失败');
|
|
|
|
// this.$message.info('回退失败');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
generOrder(row) {
|
|
|
|
|
|
|
|
this.stockChangeVisible = true;
|
|
|
|
|
|
|
|
this.curRow = row;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
closeDialog(type) {
|
|
|
|
|
|
|
|
this.stockChangeVisible = false;
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
if (this.$isNotBlank(type)) {
|
|
|
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
statusFilterType(status) {
|
|
|
|
const statusMap = {
|
|
|
|
const statusMap = {
|
|
|
|
5: "warning",
|
|
|
|
5: "warning",
|
|
|
|