You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

714 lines
34 KiB

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <odoo>
  3. <template id="aged_partner_balance">
  4. <t t-call="web.html_container">
  5. <t t-foreach="docs" t-as="o">
  6. <t t-call="account_financial_report.internal_layout">
  7. <t
  8. t-call="account_financial_report.report_aged_partner_balance_base"
  9. />
  10. </t>
  11. </t>
  12. </t>
  13. </template>
  14. <template id="report_aged_partner_balance_base">
  15. <!-- Saved flag fields into variables, used to define columns display -->
  16. <t t-set="show_move_line_details" t-value="show_move_line_details" />
  17. <!-- Defines global variables used by internal layout -->
  18. <t t-set="title">
  19. Aged Partner Balance -
  20. <t t-raw="company_name" />
  21. -
  22. <t t-raw="currency_name" />
  23. </t>
  24. <div class="page">
  25. <div class="row">
  26. <h4
  27. class="mt0"
  28. t-esc="title or 'Odoo Report'"
  29. style="text-align: center;"
  30. />
  31. </div>
  32. <!-- Display filters -->
  33. <t t-call="account_financial_report.report_aged_partner_balance_filters" />
  34. <t t-foreach="aged_partner_balance" t-as="account">
  35. <div class="page_break">
  36. <!-- Display account header -->
  37. <div class="act_as_table list_table" style="margin-top: 10px;" />
  38. <div class="act_as_caption account_title" style="width: 100%;">
  39. <span t-esc="account['code']" />
  40. -
  41. <span t-esc="account['name']" />
  42. </div>
  43. <!-- Display account lines -->
  44. <t t-if="not show_move_line_details">
  45. <div class="act_as_table data_table" style="width: 100%;">
  46. <!-- Display account header -->
  47. <t
  48. t-call="account_financial_report.report_aged_partner_balance_lines_header"
  49. />
  50. <t t-foreach="account['partners']" t-as="partner">
  51. <!-- Display one line per partner -->
  52. <t
  53. t-call="account_financial_report.report_aged_partner_balance_lines"
  54. />
  55. </t>
  56. </div>
  57. <!-- Display account footer -->
  58. <t
  59. t-call="account_financial_report.report_aged_partner_balance_account_ending_cumul"
  60. />
  61. </t>
  62. <!-- Display account move lines -->
  63. <t t-if="show_move_line_details">
  64. <!-- Display account partners -->
  65. <t t-foreach="account['partners']" t-as="partner">
  66. <div class="page_break">
  67. <!-- Display partner header -->
  68. <div class="act_as_caption account_title">
  69. <span t-esc="partner['name']" />
  70. </div>
  71. <!-- Display partner move lines -->
  72. <t
  73. t-call="account_financial_report.report_aged_partner_balance_move_lines"
  74. />
  75. <!-- Display partner footer -->
  76. <t
  77. t-call="account_financial_report.report_aged_partner_balance_partner_ending_cumul"
  78. >
  79. <t t-set="partner_cumul_line" t-value="partner" />
  80. </t>
  81. </div>
  82. </t>
  83. <!-- Display account footer -->
  84. <t
  85. t-call="account_financial_report.report_aged_partner_balance_account_ending_cumul"
  86. />
  87. </t>
  88. </div>
  89. </t>
  90. </div>
  91. </template>
  92. <template id="report_aged_partner_balance_filters">
  93. <div class="act_as_table data_table" style="width: 100%;">
  94. <div class="act_as_row labels">
  95. <div class="act_as_cell">Date at filter</div>
  96. <div class="act_as_cell">Target moves filter</div>
  97. </div>
  98. <div class="act_as_row">
  99. <div class="act_as_cell">
  100. <span t-esc="date_at" />
  101. </div>
  102. <div class="act_as_cell">
  103. <t t-if="only_posted_moves">All posted entries</t>
  104. <t t-if="not only_posted_moves">All entries</t>
  105. </div>
  106. </div>
  107. </div>
  108. </template>
  109. <template id="report_aged_partner_balance_lines_header">
  110. <!-- Display table headers for lines -->
  111. <div class="act_as_thead">
  112. <div class="act_as_row labels">
  113. <!--## partner-->
  114. <div class="act_as_cell" style="width: 32.52%;">Partner</div>
  115. <!--## amount_residual-->
  116. <div class="act_as_cell" style="width: 9.64%;">Residual</div>
  117. <!--## current-->
  118. <div class="act_as_cell" style="width: 9.64%;">Not due</div>
  119. <!--## age_30_days-->
  120. <div class="act_as_cell" style="width: 9.64%;">1 - 30 d.</div>
  121. <!--## age_60_days-->
  122. <div class="act_as_cell" style="width: 9.64%;">31 - 60 d.</div>
  123. <!--## age_90_days-->
  124. <div class="act_as_cell" style="width: 9.64%;">61 - 90 d.</div>
  125. <!--## age_120_days-->
  126. <div class="act_as_cell" style="width: 9.64%;">91 - 120 d.</div>
  127. <!--## older-->
  128. <div class="act_as_cell" style="width: 9.64%;">> 120 d.</div>
  129. </div>
  130. </div>
  131. </template>
  132. <template id="report_aged_partner_balance_lines">
  133. <!-- Display each partner lines -->
  134. <div class="act_as_row lines">
  135. <!--## partner-->
  136. <div class="act_as_cell left">
  137. <span t-esc="partner['name']" />
  138. </div>
  139. <!--## amount_residual-->
  140. <div class="act_as_cell amount">
  141. <span
  142. t-esc="partner['residual']"
  143. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  144. />
  145. </div>
  146. <!--## current-->
  147. <div class="act_as_cell amount">
  148. <span
  149. t-esc="partner['current']"
  150. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  151. />
  152. </div>
  153. <!--## age_30_days-->
  154. <div class="act_as_cell amount">
  155. <span
  156. t-esc="partner['30_days']"
  157. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  158. />
  159. </div>
  160. <!--## age_60_days-->
  161. <div class="act_as_cell amount">
  162. <span
  163. t-esc="partner['60_days']"
  164. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  165. />
  166. </div>
  167. <!--## age_90_days-->
  168. <div class="act_as_cell amount">
  169. <span
  170. t-esc="partner['90_days']"
  171. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  172. />
  173. </div>
  174. <!--## age_120_days-->
  175. <div class="act_as_cell amount">
  176. <span
  177. t-esc="partner['120_days']"
  178. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  179. />
  180. </div>
  181. <!--## older-->
  182. <div class="act_as_cell amount">
  183. <span
  184. t-esc="partner['older']"
  185. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  186. />
  187. </div>
  188. </div>
  189. </template>
  190. <template id="report_aged_partner_balance_move_lines">
  191. <div class="act_as_table data_table" style="width: 100%;">
  192. <!-- Display table headers for move lines -->
  193. <div class="act_as_thead">
  194. <div class="act_as_row labels">
  195. <!--## date-->
  196. <div class="act_as_cell first_column" style="width: 6.00%;">
  197. Date
  198. </div>
  199. <!--## move-->
  200. <div class="act_as_cell" style="width: 7.00%;">Entry</div>
  201. <!--## journal-->
  202. <div class="act_as_cell" style="width: 5.00%;">Journal</div>
  203. <!--## account code-->
  204. <div class="act_as_cell" style="width: 6.00%;">Account</div>
  205. <!--## partner-->
  206. <div class="act_as_cell" style="width: 10.50%;">Partner</div>
  207. <!--## ref - label-->
  208. <div class="act_as_cell" style="width: 18.00%;">
  209. Ref -
  210. Label
  211. </div>
  212. <!--## date_due-->
  213. <div class="act_as_cell" style="width: 6.00%;">
  214. Due
  215. date
  216. </div>
  217. <!--## amount_residual-->
  218. <div class="act_as_cell" style="width: 6.00%;">Residual</div>
  219. <!--## current-->
  220. <div class="act_as_cell" style="width: 6.00%;">Current</div>
  221. <!--## age_30_days-->
  222. <div class="act_as_cell" style="width: 6.00%;">
  223. Age ≤ 30
  224. d.
  225. </div>
  226. <!--## age_60_days-->
  227. <div class="act_as_cell" style="width: 6.00%;">
  228. Age ≤ 60
  229. d.
  230. </div>
  231. <!--## age_90_days-->
  232. <div class="act_as_cell" style="width: 6.00%;">
  233. Age ≤ 90
  234. d.
  235. </div>
  236. <!--## age_120_days-->
  237. <div class="act_as_cell" style="width: 6.00%;">
  238. Age ≤ 120
  239. d.
  240. </div>
  241. <!--## older-->
  242. <div class="act_as_cell" style="width: 6.00%;">Older</div>
  243. </div>
  244. </div>
  245. <!-- Display each move lines -->
  246. <t t-foreach="partner['move_lines']" t-as="line">
  247. <!-- # lines or centralized lines -->
  248. <div class="act_as_row lines">
  249. <!--## date-->
  250. <div class="act_as_cell left">
  251. <span
  252. t-att-res-id="line.move_line_id.id"
  253. res-model="account.move.line"
  254. view-type="form"
  255. >
  256. <!--## We don't use t-field because it throws an error on click -->
  257. <t t-esc="line['date']" t-options="{'widget': 'date'}" />
  258. </span>
  259. </div>
  260. <!--## move-->
  261. <div class="act_as_cell left">
  262. <span
  263. t-att-res-id="line.move_line_id.move_id.id"
  264. res-model="account.move"
  265. view-type="form"
  266. >
  267. <t t-raw="line['entry']" />
  268. </span>
  269. </div>
  270. <!--## journal-->
  271. <div class="act_as_cell left">
  272. <span
  273. t-att-res-id="line.move_line_id.move_id.journal_id.id"
  274. res-model="account.journal"
  275. view-type="form"
  276. >
  277. <t t-raw="line['journal']" />
  278. </span>
  279. </div>
  280. <!--## account code-->
  281. <div class="act_as_cell left">
  282. <span
  283. t-att-res-id="line.move_line_id.account_id.id"
  284. res-model="account.account"
  285. view-type="form"
  286. >
  287. <t t-raw="line['account']" />
  288. </span>
  289. </div>
  290. <!--## partner-->
  291. <div class="act_as_cell left">
  292. <span
  293. t-att-res-id="line.move_line_id.partner_id.id"
  294. res-model="res.partner"
  295. view-type="form"
  296. >
  297. <t t-raw="line['partner']" />
  298. </span>
  299. </div>
  300. <!--## ref - label-->
  301. <div class="act_as_cell left">
  302. <span
  303. t-att-res-id="line.move_line_id.id"
  304. res-model="account.move.line"
  305. view-type="form"
  306. >
  307. <t t-raw="line['ref_label']" />
  308. </span>
  309. </div>
  310. <!--## date_due-->
  311. <div class="act_as_cell left">
  312. <span
  313. t-att-res-id="line.move_line_id.id"
  314. res-model="account.move.line"
  315. view-type="form"
  316. >
  317. <!--## We don't use t-field because it throws an error on click -->
  318. <t
  319. t-esc="line['due_date']"
  320. t-options="{'widget': 'date'}"
  321. />
  322. </span>
  323. </div>
  324. <!--## amount_residual-->
  325. <div class="act_as_cell amount">
  326. <span
  327. domain="[('id', 'in', (line.move_line_id | line.move_line_id.matched_debit_ids.mapped('debit_move_id') | line.move_line_id.matched_credit_ids.mapped('credit_move_id')).ids)]"
  328. res-model="account.move.line"
  329. >
  330. <t
  331. t-raw="line['residual']"
  332. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  333. />
  334. </span>
  335. </div>
  336. <!--## current-->
  337. <div class="act_as_cell amount">
  338. <t t-if="line.current == 0">
  339. <span
  340. t-field="line.current"
  341. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  342. />
  343. </t>
  344. <t t-else="">
  345. <span
  346. domain="[('id', 'in', (line.move_line_id | line.move_line_id.matched_debit_ids.mapped('debit_move_id') | line.move_line_id.matched_credit_ids.mapped('credit_move_id')).ids)]"
  347. res-model="account.move.line"
  348. >
  349. <t
  350. t-raw="line['current']"
  351. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  352. />
  353. </span>
  354. </t>
  355. </div>
  356. <!--## age_30_days-->
  357. <div class="act_as_cell amount">
  358. <t t-if="line.age_30_days == 0">
  359. <span
  360. t-field="line.age_30_days"
  361. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  362. />
  363. </t>
  364. <t t-else="">
  365. <span
  366. domain="[('id', 'in', (line.move_line_id | line.move_line_id.matched_debit_ids.mapped('debit_move_id') | line.move_line_id.matched_credit_ids.mapped('credit_move_id')).ids)]"
  367. res-model="account.move.line"
  368. >
  369. <t
  370. t-raw="line['30_days']"
  371. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  372. />
  373. </span>
  374. </t>
  375. </div>
  376. <!--## age_60_days-->
  377. <div class="act_as_cell amount">
  378. <t t-if="line.age_60_days == 0">
  379. <span
  380. t-field="line.age_60_days"
  381. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  382. />
  383. </t>
  384. <t t-else="">
  385. <span
  386. domain="[('id', 'in', (line.move_line_id | line.move_line_id.matched_debit_ids.mapped('debit_move_id') | line.move_line_id.matched_credit_ids.mapped('credit_move_id')).ids)]"
  387. res-model="account.move.line"
  388. >
  389. <t
  390. t-raw="line['60_days']"
  391. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  392. />
  393. </span>
  394. </t>
  395. </div>
  396. <!--## age_90_days-->
  397. <div class="act_as_cell amount">
  398. <t t-if="line.age_90_days == 0">
  399. <span
  400. t-field="line.age_90_days"
  401. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  402. />
  403. </t>
  404. <t t-else="">
  405. <span
  406. domain="[('id', 'in', (line.move_line_id | line.move_line_id.matched_debit_ids.mapped('debit_move_id') | line.move_line_id.matched_credit_ids.mapped('credit_move_id')).ids)]"
  407. res-model="account.move.line"
  408. >
  409. <t
  410. t-raw="line['90_days']"
  411. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  412. />
  413. </span>
  414. </t>
  415. </div>
  416. <!--## age_120_days-->
  417. <div class="act_as_cell amount">
  418. <t t-if="line.age_120_days == 0">
  419. <span
  420. t-field="line.age_120_days"
  421. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  422. />
  423. </t>
  424. <t t-else="">
  425. <span
  426. domain="[('id', 'in', (line.move_line_id | line.move_line_id.matched_debit_ids.mapped('debit_move_id') | line.move_line_id.matched_credit_ids.mapped('credit_move_id')).ids)]"
  427. res-model="account.move.line"
  428. >
  429. <t
  430. t-raw="line['120_days']"
  431. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  432. />
  433. </span>
  434. </t>
  435. </div>
  436. <!--## older-->
  437. <div class="act_as_cell amount">
  438. <t t-if="line.older == 0">
  439. <span
  440. t-field="line.older"
  441. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  442. />
  443. </t>
  444. <t t-else="">
  445. <span
  446. domain="[('id', 'in', (line.move_line_id | line.move_line_id.matched_debit_ids.mapped('debit_move_id') | line.move_line_id.matched_credit_ids.mapped('credit_move_id')).ids)]"
  447. res-model="account.move.line"
  448. >
  449. <t
  450. t-raw="line['older']"
  451. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  452. />
  453. </span>
  454. </t>
  455. </div>
  456. </div>
  457. </t>
  458. </div>
  459. </template>
  460. <template id="report_aged_partner_balance_partner_ending_cumul">
  461. <!-- Display ending balance line for partner -->
  462. <div class="act_as_table list_table" style="width: 100%;">
  463. <div class="act_as_row lines" style="font-weight: bold;">
  464. <!--## date-->
  465. <div class="act_as_cell right" style="width: 52.00%;">
  466. Partner
  467. cumul aged balance
  468. </div>
  469. <!--## date_due-->
  470. <div class="act_as_cell" style="width: 6.00%;" />
  471. <!--## amount_residual-->
  472. <div class="act_as_cell amount" style="width: 6.00%;">
  473. <span
  474. t-esc="partner_cumul_line['residual']"
  475. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  476. />
  477. </div>
  478. <!--## current-->
  479. <div class="act_as_cell amount" style="width: 6.00%;">
  480. <span
  481. t-esc="partner_cumul_line['current']"
  482. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  483. />
  484. </div>
  485. <!--## age_30_days-->
  486. <div class="act_as_cell amount" style="width: 6.00%;">
  487. <span
  488. t-esc="partner_cumul_line['30_days']"
  489. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  490. />
  491. </div>
  492. <!--## age_60_days-->
  493. <div class="act_as_cell amount" style="width: 6.00%;">
  494. <span
  495. t-esc="partner_cumul_line['60_days']"
  496. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  497. />
  498. </div>
  499. <!--## age_90_days-->
  500. <div class="act_as_cell amount" style="width: 6.00%;">
  501. <span
  502. t-esc="partner_cumul_line['90_days']"
  503. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  504. />
  505. </div>
  506. <!--## age_120_days-->
  507. <div class="act_as_cell amount" style="width: 6.00%;">
  508. <span
  509. t-esc="partner_cumul_line['120_days']"
  510. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  511. />
  512. </div>
  513. <!--## older-->
  514. <div class="act_as_cell amount" style="width: 6.00%;">
  515. <span
  516. t-esc="partner_cumul_line['older']"
  517. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  518. />
  519. </div>
  520. </div>
  521. </div>
  522. </template>
  523. <template id="report_aged_partner_balance_account_ending_cumul">
  524. <!-- Display ending balance line for account -->
  525. <div class="act_as_table list_table" style="width: 100%;">
  526. <div class="act_as_row lines" style="font-weight: bold;">
  527. <t t-if="not show_move_line_details">
  528. <!--## total-->
  529. <div class="act_as_cell right" style="width: 32.52%;">Total</div>
  530. <!--## amount_residual-->
  531. <div class="act_as_cell amount" style="width: 9.64%;">
  532. <span
  533. t-esc="account['residual']"
  534. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  535. />
  536. </div>
  537. <!--## current-->
  538. <div class="act_as_cell amount" style="width: 9.64%;">
  539. <span
  540. t-esc="account['current']"
  541. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  542. />
  543. </div>
  544. <!--## age_30_days-->
  545. <div class="act_as_cell amount" style="width: 9.64%;">
  546. <span
  547. t-esc="account['30_days']"
  548. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  549. />
  550. </div>
  551. <!--## age_60_days-->
  552. <div class="act_as_cell amount" style="width: 9.64%;">
  553. <span
  554. t-esc="account['60_days']"
  555. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  556. />
  557. </div>
  558. <!--## age_90_days-->
  559. <div class="act_as_cell amount" style="width: 9.64%;">
  560. <span
  561. t-esc="account['90_days']"
  562. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  563. />
  564. </div>
  565. <!--## age_120_days-->
  566. <div class="act_as_cell amount" style="width: 9.64%;">
  567. <span
  568. t-esc="account['120_days']"
  569. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  570. />
  571. </div>
  572. <!--## older-->
  573. <div class="act_as_cell amount" style="width: 9.64%;">
  574. <span
  575. t-esc="account['older']"
  576. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  577. />
  578. </div>
  579. </t>
  580. <t t-if="show_move_line_details">
  581. <!--## total-->
  582. <div class="act_as_cell right" style="width: 52.00%;">Total</div>
  583. <!--## date_due-->
  584. <div class="act_as_cell" style="width: 6.00%;" />
  585. <!--## amount_residual-->
  586. <div class="act_as_cell amount" style="width: 6.00%">
  587. <span
  588. t-esc="account['residual']"
  589. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  590. />
  591. </div>
  592. <!--## current-->
  593. <div class="act_as_cell amount" style="width: 6.00%">
  594. <span
  595. t-esc="account['current']"
  596. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  597. />
  598. </div>
  599. <!--## age_30_days-->
  600. <div class="act_as_cell amount" style="width: 6.00%">
  601. <span
  602. t-esc="account['30_days']"
  603. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  604. />
  605. </div>
  606. <!--## age_60_days-->
  607. <div class="act_as_cell amount" style="width: 6.00%">
  608. <span
  609. t-esc="account['60_days']"
  610. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  611. />
  612. </div>
  613. <!--## age_90_days-->
  614. <div class="act_as_cell amount" style="width: 6.00%">
  615. <span
  616. t-esc="account['90_days']"
  617. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  618. />
  619. </div>
  620. <!--## age_120_days-->
  621. <div class="act_as_cell amount" style="width: 6.00%">
  622. <span
  623. t-esc="account['120_days']"
  624. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  625. />
  626. </div>
  627. <!--## older-->
  628. <div class="act_as_cell amount" style="width: 6.00%">
  629. <span
  630. t-esc="account['older']"
  631. t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"
  632. />
  633. </div>
  634. </t>
  635. </div>
  636. <div class="act_as_row" style="font-weight: bold; font-style: italic;">
  637. <t t-if="not show_move_line_details">
  638. <!--## total-->
  639. <div class="act_as_cell right" style="width: 32.52%;">Percents</div>
  640. <!--## amount_residual-->
  641. <div class="act_as_cell amount" style="width: 9.64%;" />
  642. <!--## current-->
  643. <div class="act_as_cell amount" style="width: 9.64%;">
  644. <span t-esc="account['percent_current']" />
  645. %
  646. </div>
  647. <!--## age_30_days-->
  648. <div class="act_as_cell amount" style="width: 9.64%;">
  649. <span t-esc="account['percent_30_days']" />
  650. %
  651. </div>
  652. <!--## age_60_days-->
  653. <div class="act_as_cell amount" style="width: 9.64%;">
  654. <span t-esc="account['percent_60_days']" />
  655. %
  656. </div>
  657. <!--## age_90_days-->
  658. <div class="act_as_cell amount" style="width: 9.64%;">
  659. <span t-esc="account['percent_90_days']" />
  660. %
  661. </div>
  662. <!--## age_120_days-->
  663. <div class="act_as_cell amount" style="width: 9.64%;">
  664. <span t-esc="account['percent_120_days']" />
  665. %
  666. </div>
  667. <!--## older-->
  668. <div class="act_as_cell amount" style="width: 9.64%;">
  669. <span t-esc="account['percent_older']" />
  670. %
  671. </div>
  672. </t>
  673. <t t-if="show_move_line_details">
  674. <!--## total-->
  675. <div class="act_as_cell right" style="width: 52.00%;">Percents</div>
  676. <!--## date_due-->
  677. <div class="act_as_cell" style="width: 6.00%;" />
  678. <!--## amount_residual-->
  679. <div class="act_as_cell amount" style="width: 6.00%" />
  680. <!--## current-->
  681. <div class="act_as_cell amount" style="width: 6.00%">
  682. <span t-esc="account['percent_current']" />
  683. %
  684. </div>
  685. <!--## age_30_days-->
  686. <div class="act_as_cell amount" style="width: 6.00%">
  687. <span t-esc="account['percent_30_days']" />
  688. %
  689. </div>
  690. <!--## age_60_days-->
  691. <div class="act_as_cell amount" style="width: 6.00%">
  692. <span t-esc="account['percent_60_days']" />
  693. %
  694. </div>
  695. <!--## age_90_days-->
  696. <div class="act_as_cell amount" style="width: 6.00%">
  697. <span t-esc="account['percent_90_days']" />
  698. %
  699. </div>
  700. <!--## age_120_days-->
  701. <div class="act_as_cell amount" style="width: 6.00%">
  702. <span t-esc="account['percent_120_days']" />
  703. %
  704. </div>
  705. <!--## older-->
  706. <div class="act_as_cell amount" style="width: 6.00%">
  707. <span t-esc="account['percent_older']" />
  708. %
  709. </div>
  710. </t>
  711. </div>
  712. </div>
  713. </template>
  714. </odoo>