[FIX] account_reconcile_oca: remove lint errors
parent
d4b9d8f83d
commit
584632f6b8
|
@ -20,6 +20,8 @@ export class ReconcileManualController extends FormController {
|
|||
try {
|
||||
await this.model.root.load();
|
||||
} catch (error) {
|
||||
// eslint-disable-next-line no-undef
|
||||
console.error("Error reloading form controller:", error);
|
||||
// This should happen when we reconcile a line (no more possible data...)
|
||||
if (this.env.parentController) {
|
||||
await this.env.parentController.model.root.load();
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
/* global CustomEvent */
|
||||
import {formatDate, parseDate} from "@web/core/l10n/dates";
|
||||
import {formatMonetary} from "@web/views/fields/formatters";
|
||||
import {registry} from "@web/core/registry";
|
||||
|
@ -75,6 +76,7 @@ export class AccountReconcileDataWidget extends Component {
|
|||
async openMove(ev, moveId) {
|
||||
ev.preventDefault();
|
||||
ev.stopPropagation();
|
||||
// eslint-disable-next-line no-undef
|
||||
console.log(moveId);
|
||||
const action = await this.orm.call("account.move", "get_formview_action", [
|
||||
[moveId],
|
||||
|
|
Loading…
Reference in New Issue