This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
line-length = 80 | |
select = ["E4", "E7", "E9", "F", "B", "Q", "I"] | |
ignore-init-module-imports = true | |
[format] | |
quote-style = "single" | |
[lint.isort.sections] | |
"odoo" = ["odoo"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sign/static/src/js/sign_common.js b/sign/static/src/js/sign_common.js | |
index 429d547e461..9df6f508bb7 100644 | |
--- a/sign/static/src/js/sign_common.js | |
+++ b/sign/static/src/js/sign_common.js | |
@@ -892,7 +892,7 @@ odoo.define('sign.document_signing', function (require) { | |
mail: mail, | |
}).then(function() { | |
self.close(); | |
- self.sent.resolve(); | |
+ self.sentResolve(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<t t-name="account.report_generalledger"> | |
<t t-call="report.html_container"> | |
<t t-set="data_report_margin_top" t-value="12"/> | |
<t t-set="data_report_header_spacing" t-value="9"/> | |
<t t-set="data_report_dpi" t-value="110"/> | |
<t t-foreach="docs" t-as="o"> | |
<div class="page"> | |
<h2><span t-esc="res_company.name"/>: General ledger</h2> |