|
|
|
@ -135,18 +135,19 @@
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
v-if="scope.row.status == 5"
|
|
|
|
|
@click.native.stop="rollback(scope.row)"
|
|
|
|
|
>撤回
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="deleteDialog(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- size="small"-->
|
|
|
|
|
<!-- @click.native.stop="deleteDialog(scope.row)"-->
|
|
|
|
|
<!-- >删除-->
|
|
|
|
|
<!-- </el-button-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -331,7 +332,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
deleteInvByBillNo,
|
|
|
|
|
getOrderList, rollbackOrder
|
|
|
|
|
getOrderList, rollbackOrder, rollUnReceivebackOrder
|
|
|
|
|
} from "../../api/inout/order";
|
|
|
|
|
import {getLocalJoinByUser} from "@/api/basic/busType";
|
|
|
|
|
import {getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
@ -774,7 +775,7 @@ export default {
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
let param = {billNo: row.billNo};
|
|
|
|
|
rollbackOrder(param).then((res) => {
|
|
|
|
|
rollUnReceivebackOrder(param).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("撤回成功");
|
|
|
|
|
this.getList();
|
|
|
|
|