|
|
|
@ -129,7 +129,7 @@
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native="receiveFinish(scope.row)"
|
|
|
|
|
>完成验收
|
|
|
|
|
>验收
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
@ -284,7 +284,7 @@
|
|
|
|
|
<StockOrderEdit
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
:detailList="detailList"
|
|
|
|
|
|
|
|
|
|
v-on:childByValue="parentByFn"
|
|
|
|
|
></StockOrderEdit>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
@ -458,6 +458,20 @@
|
|
|
|
|
:idQuery="idQuery"
|
|
|
|
|
></stockQRCodeExport>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="单据验收"
|
|
|
|
|
:visible.sync="acceptOrderVisible"
|
|
|
|
|
width="80%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="acceptOrderVisible"
|
|
|
|
|
>
|
|
|
|
|
<acceptOrder
|
|
|
|
|
:closeDialog="closeAcceptDialog"
|
|
|
|
|
:orderQuery="acceptQuery"
|
|
|
|
|
v-on:childByValue="acceptOrderFn"
|
|
|
|
|
></acceptOrder>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -474,6 +488,7 @@ import stockOrderQRCodeDetail from "./stockOrderQRCodeDetail";
|
|
|
|
|
import stockOrderEditDistribution from "./stockOrderEditDistribution";
|
|
|
|
|
import stockQRCodeExport from "./stockQRCodeExport";
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import acceptOrder from "@/views/inout/acceptOrder";
|
|
|
|
|
import {inspectionStockOrderPDFFromTemplateFile, stockOrderPDFFromTemplateFile} from "../../api/itextpdf/itextpdf";
|
|
|
|
|
import store from "../../store";
|
|
|
|
|
import {getLocalJoinBusType, getLocalJoinByUser} from "../../api/basic/busLocalType";
|
|
|
|
@ -555,8 +570,10 @@ export default {
|
|
|
|
|
detailFormLoading: false,
|
|
|
|
|
haveDistributionVisible: true,
|
|
|
|
|
qrcodeDetailVisible: false,
|
|
|
|
|
acceptOrderVisible: false,
|
|
|
|
|
qrcodeExportVisible: false,
|
|
|
|
|
actDateRange: [],
|
|
|
|
|
acceptQuery: null,
|
|
|
|
|
isReceAble: false,
|
|
|
|
|
pickerOptions: {
|
|
|
|
|
shortcuts: [
|
|
|
|
@ -740,6 +757,12 @@ export default {
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
parentByFn: function (childValue) {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
acceptOrderFn: function (childValue) {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
distributionForm(index, row) {
|
|
|
|
|
this.idQuery.id = '';
|
|
|
|
|
if (this.$isNotBlank(row.id)) {
|
|
|
|
@ -917,6 +940,10 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
closeAcceptDialog() {
|
|
|
|
|
this.acceptOrderVisible = false;
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
getBusType() {
|
|
|
|
|
let query = {
|
|
|
|
|
code: this.query.invWarehouseCode,
|
|
|
|
@ -1017,18 +1044,20 @@ export default {
|
|
|
|
|
let query = {
|
|
|
|
|
stockOrderId: row.billNo,
|
|
|
|
|
};
|
|
|
|
|
updateStatus(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$message.success("验收成功!");
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
this.acceptQuery = row;
|
|
|
|
|
this.acceptOrderVisible = true;
|
|
|
|
|
// updateStatus(query)
|
|
|
|
|
// .then((response) => {
|
|
|
|
|
// if (response.code == 20000) {
|
|
|
|
|
// this.getList();
|
|
|
|
|
// this.$message.success("验收成功!");
|
|
|
|
|
// } else {
|
|
|
|
|
// this.$message.error(response.message);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
// })
|
|
|
|
|
// .catch(() => {
|
|
|
|
|
// });
|
|
|
|
|
},
|
|
|
|
|
rollback(row) {
|
|
|
|
|
this.$confirm('此操作将回退单据, 是否继续?', '提示', {
|
|
|
|
@ -1055,6 +1084,7 @@ export default {
|
|
|
|
|
stockOrderEditDistribution,
|
|
|
|
|
stockOrderQRCodeDetail,
|
|
|
|
|
stockQRCodeExport,
|
|
|
|
|
acceptOrder,
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
filters: {
|
|
|
|
|