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.

563 lines
32 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="report_aged_partner_balance_qweb">
  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 t-call="account_financial_report.report_aged_partner_balance_base"/>
  8. </t>
  9. </t>
  10. </t>
  11. </template>
  12. <template id="report_aged_partner_balance_base">
  13. <!-- Saved flag fields into variables, used to define columns display -->
  14. <t t-set="show_move_line_details" t-value="o.show_move_line_details"/>
  15. <!-- Defines global variables used by internal layout -->
  16. <t t-set="title">Aged Partner Balance - <t t-raw="o.company_id.name"/> - <t t-raw="o.company_id.currency_id.name"/></t>
  17. <t t-set="company_name" t-value="o.company_id.name"/>
  18. <div class="page">
  19. <div class="row">
  20. <h4 class="mt0" t-esc="title or 'Odoo Report'" style="text-align: center;"/>
  21. </div>
  22. <!-- Display filters -->
  23. <t t-call="account_financial_report.report_aged_partner_balance_filters"/>
  24. <t t-foreach="o.account_ids" t-as="account">
  25. <div class="page_break">
  26. <!-- Display account header -->
  27. <div class="act_as_table list_table" style="margin-top: 10px;"/>
  28. <div class="act_as_caption account_title"
  29. style="width: 100%;">
  30. <span t-field="account.code"/>
  31. -
  32. <span t-field="account.name"/>
  33. </div>
  34. <!-- Display account lines -->
  35. <t t-if="not show_move_line_details">
  36. <div class="act_as_table data_table"
  37. style="width: 100%;">
  38. <!-- Display account header -->
  39. <t t-call="account_financial_report.report_aged_partner_balance_lines_header"/>
  40. <t t-foreach="account.partner_ids" t-as="partner">
  41. <!-- Display one line per partner -->
  42. <t t-call="account_financial_report.report_aged_partner_balance_lines"/>
  43. </t>
  44. </div>
  45. <!-- Display account footer -->
  46. <t t-call="account_financial_report.report_aged_partner_balance_account_ending_cumul"/>
  47. </t>
  48. <!-- Display account move lines -->
  49. <t t-if="show_move_line_details">
  50. <!-- Display account partners -->
  51. <t t-foreach="account.partner_ids" t-as="partner">
  52. <div class="page_break">
  53. <!-- Display partner header -->
  54. <div class="act_as_caption account_title">
  55. <span t-field="partner.name"/>
  56. </div>
  57. <!-- Display partner move lines -->
  58. <t t-call="account_financial_report.report_aged_partner_balance_move_lines"/>
  59. <!-- Display partner footer -->
  60. <t t-call="account_financial_report.report_aged_partner_balance_partner_ending_cumul">
  61. <t t-set="partner_cumul_line" t-value="partner.line_ids"/>
  62. </t>
  63. </div>
  64. </t>
  65. <!-- Display account footer -->
  66. <t t-call="account_financial_report.report_aged_partner_balance_account_ending_cumul"/>
  67. </t>
  68. </div>
  69. </t>
  70. </div>
  71. </template>
  72. <template id="report_aged_partner_balance_filters">
  73. <div class="act_as_table data_table" style="width: 100%;">
  74. <div class="act_as_row labels">
  75. <div class="act_as_cell">Date at filter</div>
  76. <div class="act_as_cell">Target moves filter</div>
  77. </div>
  78. <div class="act_as_row">
  79. <div class="act_as_cell">
  80. <span t-field="o.date_at"/>
  81. </div>
  82. <div class="act_as_cell">
  83. <t t-if="o.only_posted_moves">All posted entries</t>
  84. <t t-if="not o.only_posted_moves">All entries</t>
  85. </div>
  86. </div>
  87. </div>
  88. </template>
  89. <template id="report_aged_partner_balance_lines_header">
  90. <!-- Display table headers for lines -->
  91. <div class="act_as_thead">
  92. <div class="act_as_row labels">
  93. <!--## partner-->
  94. <div class="act_as_cell" style="width: 32.52%;">Partner</div>
  95. <!--## amount_residual-->
  96. <div class="act_as_cell" style="width: 9.64%;">Residual</div>
  97. <!--## current-->
  98. <div class="act_as_cell" style="width: 9.64%;">Not due</div>
  99. <!--## age_30_days-->
  100. <div class="act_as_cell" style="width: 9.64%;">1 - 30 d.</div>
  101. <!--## age_60_days-->
  102. <div class="act_as_cell" style="width: 9.64%;">31 - 60 d.</div>
  103. <!--## age_90_days-->
  104. <div class="act_as_cell" style="width: 9.64%;">61 - 90 d.</div>
  105. <!--## age_120_days-->
  106. <div class="act_as_cell" style="width: 9.64%;">91 - 120 d.</div>
  107. <!--## older-->
  108. <div class="act_as_cell" style="width: 9.64%;"> > 120 d.</div>
  109. </div>
  110. </div>
  111. </template>
  112. <template id="report_aged_partner_balance_lines">
  113. <!-- Display each lines -->
  114. <t t-foreach="partner.line_ids" t-as="line">
  115. <!-- # lines -->
  116. <div class="act_as_row lines">
  117. <!--## partner-->
  118. <div class="act_as_cell left">
  119. <span t-field="line.partner"/>
  120. </div>
  121. <!--## amount_residual-->
  122. <div class="act_as_cell amount">
  123. <span t-field="line.amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  124. </div>
  125. <!--## current-->
  126. <div class="act_as_cell amount">
  127. <span t-field="line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  128. </div>
  129. <!--## age_30_days-->
  130. <div class="act_as_cell amount">
  131. <span t-field="line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  132. </div>
  133. <!--## age_60_days-->
  134. <div class="act_as_cell amount">
  135. <span t-field="line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  136. </div>
  137. <!--## age_90_days-->
  138. <div class="act_as_cell amount">
  139. <span t-field="line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  140. </div>
  141. <!--## age_120_days-->
  142. <div class="act_as_cell amount">
  143. <span t-field="line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  144. </div>
  145. <!--## older-->
  146. <div class="act_as_cell amount">
  147. <span t-field="line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  148. </div>
  149. </div>
  150. </t>
  151. </template>
  152. <template id="report_aged_partner_balance_move_lines">
  153. <div class="act_as_table data_table" style="width: 100%;">
  154. <!-- Display table headers for move lines -->
  155. <div class="act_as_thead">
  156. <div class="act_as_row labels">
  157. <!--## date-->
  158. <div class="act_as_cell first_column" style="width: 6.00%;">
  159. Date</div>
  160. <!--## move-->
  161. <div class="act_as_cell" style="width: 7.00%;">Entry</div>
  162. <!--## journal-->
  163. <div class="act_as_cell" style="width: 5.00%;">Journal</div>
  164. <!--## account code-->
  165. <div class="act_as_cell" style="width: 6.00%;">Account</div>
  166. <!--## partner-->
  167. <div class="act_as_cell" style="width: 10.50%;">Partner
  168. </div>
  169. <!--## ref - label-->
  170. <div class="act_as_cell" style="width: 18.00%;">Ref -
  171. Label</div>
  172. <!--## date_due-->
  173. <div class="act_as_cell" style="width: 6.00%;">Due
  174. date</div>
  175. <!--## amount_residual-->
  176. <div class="act_as_cell" style="width: 6.00%;">Residual
  177. </div>
  178. <!--## current-->
  179. <div class="act_as_cell" style="width: 6.00%;">Current</div>
  180. <!--## age_30_days-->
  181. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 30
  182. d.</div>
  183. <!--## age_60_days-->
  184. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 60
  185. d.</div>
  186. <!--## age_90_days-->
  187. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 90
  188. d.</div>
  189. <!--## age_120_days-->
  190. <div class="act_as_cell" style="width: 6.00%;">Age ≤ 120
  191. d.</div>
  192. <!--## older-->
  193. <div class="act_as_cell" style="width: 6.00%;">Older</div>
  194. </div>
  195. </div>
  196. <!-- Display each move lines -->
  197. <t t-foreach="partner.move_line_ids" t-as="line">
  198. <!-- # lines or centralized lines -->
  199. <div class="act_as_row lines">
  200. <!--## date-->
  201. <div class="act_as_cell left">
  202. <span>
  203. <a t-att-data-active-id="line.move_line_id.id"
  204. t-att-data-res-model="'account.move.line'"
  205. class="o_account_financial_reports_web_action"
  206. style="color: black;">
  207. <!--## We don't use t-field because it throws an error on click -->
  208. <t t-esc="line.date" t-options="{'widget': 'date'}"/></a>
  209. </span>
  210. </div>
  211. <!--## move-->
  212. <div class="act_as_cell left">
  213. <span>
  214. <a t-att-data-active-id="line.move_line_id.move_id.id"
  215. t-att-data-res-model="'account.move'"
  216. class="o_account_financial_reports_web_action"
  217. style="color: black;">
  218. <t t-raw="line.entry"/></a>
  219. </span>
  220. </div>
  221. <!--## journal-->
  222. <div class="act_as_cell left">
  223. <span>
  224. <a t-att-data-active-id="line.move_line_id.move_id.journal_id.id"
  225. t-att-data-res-model="'account.journal'"
  226. class="o_account_financial_reports_web_action"
  227. style="color: black;">
  228. <t t-raw="line.journal"/></a>
  229. </span>
  230. </div>
  231. <!--## account code-->
  232. <div class="act_as_cell left">
  233. <span>
  234. <a t-att-data-active-id="line.move_line_id.account_id.id"
  235. t-att-data-res-model="'account.account'"
  236. class="o_account_financial_reports_web_action"
  237. style="color: black;">
  238. <t t-raw="line.account"/></a>
  239. </span>
  240. </div>
  241. <!--## partner-->
  242. <div class="act_as_cell left">
  243. <span>
  244. <a t-att-data-active-id="line.move_line_id.partner_id.id"
  245. t-att-data-res-model="'res.partner'"
  246. class="o_account_financial_reports_web_action"
  247. style="color: black;">
  248. <t t-raw="line.partner"/></a>
  249. </span>
  250. </div>
  251. <!--## ref - label-->
  252. <div class="act_as_cell left">
  253. <span>
  254. <a t-att-data-active-id="line.move_line_id.id"
  255. t-att-data-res-model="'account.move.line'"
  256. class="o_account_financial_reports_web_action"
  257. style="color: black;">
  258. <t t-raw="line.label"/></a>
  259. </span>
  260. </div>
  261. <!--## date_due-->
  262. <div class="act_as_cell left">
  263. <span>
  264. <a t-att-data-active-id="line.move_line_id.id"
  265. t-att-data-res-model="'account.move.line'"
  266. class="o_account_financial_reports_web_action"
  267. style="color: black;">
  268. <!--## We don't use t-field because it throws an error on click -->
  269. <t t-esc="line.date_due" t-options="{'widget': 'date'}"/></a>
  270. </span>
  271. </div>
  272. <!--## amount_residual-->
  273. <div class="act_as_cell amount">
  274. <span>
  275. <a t-att-data-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)]"
  276. t-att-data-res-model="'account.move.line'"
  277. class="o_account_financial_reports_web_action_multi"
  278. style="color: black;">
  279. <t t-raw="line.amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  280. </span>
  281. </div>
  282. <!--## current-->
  283. <div class="act_as_cell amount">
  284. <t t-if="line.current != 0">
  285. <span>
  286. <a t-att-data-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)]"
  287. t-att-data-res-model="'account.move.line'"
  288. class="o_account_financial_reports_web_action_multi"
  289. style="color: black;">
  290. <t t-raw="line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  291. </span>
  292. </t>
  293. <t t-if="line.current == 0">
  294. <span t-field="line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  295. </t>
  296. </div>
  297. <!--## age_30_days-->
  298. <div class="act_as_cell amount">
  299. <t t-if="line.age_30_days != 0">
  300. <span>
  301. <a t-att-data-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)]"
  302. t-att-data-res-model="'account.move.line'"
  303. class="o_account_financial_reports_web_action_multi"
  304. style="color: black;">
  305. <t t-raw="line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  306. </span>
  307. </t>
  308. <t t-if="line.age_30_days == 0">
  309. <span t-field="line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  310. </t>
  311. </div>
  312. <!--## age_60_days-->
  313. <div class="act_as_cell amount">
  314. <t t-if="line.age_60_days != 0">
  315. <span>
  316. <a t-att-data-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)]"
  317. t-att-data-res-model="'account.move.line'"
  318. class="o_account_financial_reports_web_action_multi"
  319. style="color: black;">
  320. <t t-raw="line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  321. </span>
  322. </t>
  323. <t t-if="line.age_60_days == 0">
  324. <span t-field="line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  325. </t>
  326. </div>
  327. <!--## age_90_days-->
  328. <div class="act_as_cell amount">
  329. <t t-if="line.age_90_days != 0">
  330. <span>
  331. <a t-att-data-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)]"
  332. t-att-data-res-model="'account.move.line'"
  333. class="o_account_financial_reports_web_action_multi"
  334. style="color: black;">
  335. <t t-raw="line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  336. </span>
  337. </t>
  338. <t t-if="line.age_90_days == 0">
  339. <span t-field="line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  340. </t>
  341. </div>
  342. <!--## age_120_days-->
  343. <div class="act_as_cell amount">
  344. <t t-if="line.age_120_days != 0">
  345. <span>
  346. <a t-att-data-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. t-att-data-res-model="'account.move.line'"
  348. class="o_account_financial_reports_web_action_multi"
  349. style="color: black;">
  350. <t t-raw="line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  351. </span>
  352. </t>
  353. <t t-if="line.age_120_days == 0">
  354. <span t-field="line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  355. </t>
  356. </div>
  357. <!--## older-->
  358. <div class="act_as_cell amount">
  359. <t t-if="line.older != 0">
  360. <span>
  361. <a t-att-data-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)]"
  362. t-att-data-res-model="'account.move.line'"
  363. class="o_account_financial_reports_web_action_multi"
  364. style="color: black;">
  365. <t t-raw="line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/></a>
  366. </span>
  367. </t>
  368. <t t-if="line.older == 0">
  369. <span t-field="line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  370. </t>
  371. </div>
  372. </div>
  373. </t>
  374. </div>
  375. </template>
  376. <template id="report_aged_partner_balance_partner_ending_cumul">
  377. <!-- Display ending balance line for partner -->
  378. <div class="act_as_table list_table" style="width: 100%;">
  379. <div class="act_as_row lines" style="font-weight: bold;">
  380. <!--## date-->
  381. <div class="act_as_cell right" style="width: 52.00%;">Partner
  382. cumul aged balance</div>
  383. <!--## date_due-->
  384. <div class="act_as_cell" style="width: 6.00%;"/>
  385. <!--## amount_residual-->
  386. <div class="act_as_cell amount" style="width: 6.00%;">
  387. <span t-field="partner_cumul_line.amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  388. </div>
  389. <!--## current-->
  390. <div class="act_as_cell amount" style="width: 6.00%;">
  391. <span t-field="partner_cumul_line.current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  392. </div>
  393. <!--## age_30_days-->
  394. <div class="act_as_cell amount" style="width: 6.00%;">
  395. <span t-field="partner_cumul_line.age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  396. </div>
  397. <!--## age_60_days-->
  398. <div class="act_as_cell amount" style="width: 6.00%;">
  399. <span t-field="partner_cumul_line.age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  400. </div>
  401. <!--## age_90_days-->
  402. <div class="act_as_cell amount" style="width: 6.00%;">
  403. <span t-field="partner_cumul_line.age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  404. </div>
  405. <!--## age_120_days-->
  406. <div class="act_as_cell amount" style="width: 6.00%;">
  407. <span t-field="partner_cumul_line.age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  408. </div>
  409. <!--## older-->
  410. <div class="act_as_cell amount" style="width: 6.00%;">
  411. <span t-field="partner_cumul_line.older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  412. </div>
  413. </div>
  414. </div>
  415. </template>
  416. <template id="report_aged_partner_balance_account_ending_cumul">
  417. <!-- Display ending balance line for account -->
  418. <div class="act_as_table list_table" style="width: 100%;">
  419. <div class="act_as_row lines" style="font-weight: bold;">
  420. <t t-if="not show_move_line_details">
  421. <!--## total-->
  422. <div class="act_as_cell right" style="width: 32.52%;">Total</div>
  423. <!--## amount_residual-->
  424. <div class="act_as_cell amount" style="width: 9.64%;">
  425. <span t-field="account.cumul_amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  426. </div>
  427. <!--## current-->
  428. <div class="act_as_cell amount" style="width: 9.64%;">
  429. <span t-field="account.cumul_current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  430. </div>
  431. <!--## age_30_days-->
  432. <div class="act_as_cell amount" style="width: 9.64%;">
  433. <span t-field="account.cumul_age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  434. </div>
  435. <!--## age_60_days-->
  436. <div class="act_as_cell amount" style="width: 9.64%;">
  437. <span t-field="account.cumul_age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  438. </div>
  439. <!--## age_90_days-->
  440. <div class="act_as_cell amount" style="width: 9.64%;">
  441. <span t-field="account.cumul_age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  442. </div>
  443. <!--## age_120_days-->
  444. <div class="act_as_cell amount" style="width: 9.64%;">
  445. <span t-field="account.cumul_age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  446. </div>
  447. <!--## older-->
  448. <div class="act_as_cell amount" style="width: 9.64%;">
  449. <span t-field="account.cumul_older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  450. </div>
  451. </t>
  452. <t t-if="show_move_line_details">
  453. <!--## total-->
  454. <div class="act_as_cell right" style="width: 52.00%;">Total</div>
  455. <!--## date_due-->
  456. <div class="act_as_cell" style="width: 6.00%;"/>
  457. <!--## amount_residual-->
  458. <div class="act_as_cell amount" style="width: 6.00%">
  459. <span t-field="account.cumul_amount_residual" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  460. </div>
  461. <!--## current-->
  462. <div class="act_as_cell amount" style="width: 6.00%">
  463. <span t-field="account.cumul_current" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  464. </div>
  465. <!--## age_30_days-->
  466. <div class="act_as_cell amount" style="width: 6.00%">
  467. <span t-field="account.cumul_age_30_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  468. </div>
  469. <!--## age_60_days-->
  470. <div class="act_as_cell amount" style="width: 6.00%">
  471. <span t-field="account.cumul_age_60_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  472. </div>
  473. <!--## age_90_days-->
  474. <div class="act_as_cell amount" style="width: 6.00%">
  475. <span t-field="account.cumul_age_90_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  476. </div>
  477. <!--## age_120_days-->
  478. <div class="act_as_cell amount" style="width: 6.00%">
  479. <span t-field="account.cumul_age_120_days" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  480. </div>
  481. <!--## older-->
  482. <div class="act_as_cell amount" style="width: 6.00%">
  483. <span t-field="account.cumul_older" t-options="{'widget': 'monetary', 'display_currency': res_company.currency_id}"/>
  484. </div>
  485. </t>
  486. </div>
  487. <div class="act_as_row" style="font-weight: bold; font-style: italic;">
  488. <t t-if="not show_move_line_details">
  489. <!--## total-->
  490. <div class="act_as_cell right" style="width: 32.52%;">
  491. Percents</div>
  492. <!--## amount_residual-->
  493. <div class="act_as_cell amount" style="width: 9.64%;"/>
  494. <!--## current-->
  495. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_current"/>%
  496. </div>
  497. <!--## age_30_days-->
  498. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_30_days"/>%
  499. </div>
  500. <!--## age_60_days-->
  501. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_60_days"/>%
  502. </div>
  503. <!--## age_90_days-->
  504. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_90_days"/>%
  505. </div>
  506. <!--## age_120_days-->
  507. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_age_120_days"/>
  508. %
  509. </div>
  510. <!--## older-->
  511. <div class="act_as_cell amount" style="width: 9.64%;"><span t-field="account.percent_older"/>%
  512. </div>
  513. </t>
  514. <t t-if="show_move_line_details">
  515. <!--## total-->
  516. <div class="act_as_cell right" style="width: 52.00%;">
  517. Percents</div>
  518. <!--## date_due-->
  519. <div class="act_as_cell" style="width: 6.00%;"/>
  520. <!--## amount_residual-->
  521. <div class="act_as_cell amount" style="width: 6.00%"/>
  522. <!--## current-->
  523. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_current"/>%
  524. </div>
  525. <!--## age_30_days-->
  526. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_30_days"/>%
  527. </div>
  528. <!--## age_60_days-->
  529. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_60_days"/>%
  530. </div>
  531. <!--## age_90_days-->
  532. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_90_days"/>%
  533. </div>
  534. <!--## age_120_days-->
  535. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_age_120_days"/>%
  536. </div>
  537. <!--## older-->
  538. <div class="act_as_cell amount" style="width: 6.00%"><span t-field="account.percent_older"/>%
  539. </div>
  540. </t>
  541. </div>
  542. </div>
  543. </template>
  544. </odoo>