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.

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