From ea655e339f1096fdc3c1aa23ba36d0109e9df760 Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Thu, 3 Aug 2023 15:12:47 +0700 Subject: ledger --- .../views/account_financial_report_view.xml | 51 ++++++++++++++++++++++ .../views/account_report_general_ledger_view.xml | 37 ++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 indoteknik_custom/views/account_financial_report_view.xml create mode 100644 indoteknik_custom/views/account_report_general_ledger_view.xml (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/account_financial_report_view.xml b/indoteknik_custom/views/account_financial_report_view.xml new file mode 100644 index 00000000..31c04e7c --- /dev/null +++ b/indoteknik_custom/views/account_financial_report_view.xml @@ -0,0 +1,51 @@ + + + + + Common Report + accounting.report.xlsx + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+ + + Financial Reports + accounting.report.xlsx + ir.actions.act_window + form + + new + + + + +
diff --git a/indoteknik_custom/views/account_report_general_ledger_view.xml b/indoteknik_custom/views/account_report_general_ledger_view.xml new file mode 100644 index 00000000..b789874f --- /dev/null +++ b/indoteknik_custom/views/account_report_general_ledger_view.xml @@ -0,0 +1,37 @@ + + + + Export Ledger + account.report.general.ledger.xlsx + +
+ + + + + + + + + + + + +
+
+ +
+
+ + + export_ledger + account.report.general.ledger.xlsx + form + + new + + + +
\ No newline at end of file -- cgit v1.2.3 From a39466421a31d2ffd5f2252bf7aac903c4785d83 Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Tue, 8 Aug 2023 09:47:05 +0700 Subject: add field price vendor --- indoteknik_custom/views/purchase_order.xml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/purchase_order.xml b/indoteknik_custom/views/purchase_order.xml index 2f8590f3..7d436c46 100755 --- a/indoteknik_custom/views/purchase_order.xml +++ b/indoteknik_custom/views/purchase_order.xml @@ -56,6 +56,9 @@ + + + -- cgit v1.2.3 From 30eb623bace6b5ba9a1e275c7bdf70fc5920a583 Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Tue, 8 Aug 2023 15:29:29 +0700 Subject: sync price unit po & price purchase pricelist --- indoteknik_custom/views/mail_template_po.xml | 84 ++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 indoteknik_custom/views/mail_template_po.xml (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/mail_template_po.xml b/indoteknik_custom/views/mail_template_po.xml new file mode 100644 index 00000000..8eb72e12 --- /dev/null +++ b/indoteknik_custom/views/mail_template_po.xml @@ -0,0 +1,84 @@ + + + + + PO: Sync Unit Price Purchase Pricelist + + Your PO ${object.name} + + azkan4elll@gmail.com + + + + + +
+ + + + + + + + + + + +
+ + + + + + + +
+ PO
+ + ${object.name} + +
+
+
+
+ + + + + + + +
+
+ Dear Stefanus Darren, +

+ Terdapat PO yang harga Unit Price nya tidak sama dengan yang ada di purchase pricelist nya. +

+ Berikut adalah rincian PO: + % for line in object.order_line: +
    +
  • Nama Produk: ${line.product_id.name}
  • +
  • Harga Unit dalam PO: ${line.price_unit}
  • +
  • Harga Unit dalam Purchase Pricelist: ${line.price_vendor}
  • +
+ % endfor + Silahkan periksa dan lakukan koreksi jika diperlukan. +

+ Terima kasih. +
+
+
+
+
+
+
+ +
+
+
\ No newline at end of file -- cgit v1.2.3 From 3ef9d136bd238464de7ff0a224b1a68a9b7bb1f3 Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Wed, 9 Aug 2023 10:32:32 +0700 Subject: add new condition email po --- indoteknik_custom/views/mail_template_po.xml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/mail_template_po.xml b/indoteknik_custom/views/mail_template_po.xml index 8eb72e12..77c21837 100644 --- a/indoteknik_custom/views/mail_template_po.xml +++ b/indoteknik_custom/views/mail_template_po.xml @@ -6,11 +6,11 @@ Your PO ${object.name} - azkan4elll@gmail.com + darren@indoteknik.co.id - +
@@ -51,11 +51,13 @@

Berikut adalah rincian PO: % for line in object.order_line: -
    -
  • Nama Produk: ${line.product_id.name}
  • -
  • Harga Unit dalam PO: ${line.price_unit}
  • -
  • Harga Unit dalam Purchase Pricelist: ${line.price_vendor}
  • -
+ % if line.price_vendor != 0 and line.price_unit != line.price_vendor +
    +
  • Nama Produk: ${line.product_id.name}
  • +
  • Harga Unit dalam PO: ${line.price_unit}
  • +
  • Harga Unit dalam Purchase Pricelist: ${line.price_vendor}
  • +
+ % endif % endfor Silahkan periksa dan lakukan koreksi jika diperlukan.

-- cgit v1.2.3 From 4aa5108543075227378b856ce31f478bd5a3b3db Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Wed, 9 Aug 2023 11:09:23 +0700 Subject: ledger --- .../views/account_financial_report_view.xml | 51 ---------------------- .../views/account_report_general_ledger_view.xml | 37 ---------------- 2 files changed, 88 deletions(-) delete mode 100644 indoteknik_custom/views/account_financial_report_view.xml delete mode 100644 indoteknik_custom/views/account_report_general_ledger_view.xml (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/account_financial_report_view.xml b/indoteknik_custom/views/account_financial_report_view.xml deleted file mode 100644 index 31c04e7c..00000000 --- a/indoteknik_custom/views/account_financial_report_view.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Common Report - accounting.report.xlsx - -
- - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
- - - Financial Reports - accounting.report.xlsx - ir.actions.act_window - form - - new - - - - -
diff --git a/indoteknik_custom/views/account_report_general_ledger_view.xml b/indoteknik_custom/views/account_report_general_ledger_view.xml deleted file mode 100644 index b789874f..00000000 --- a/indoteknik_custom/views/account_report_general_ledger_view.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - Export Ledger - account.report.general.ledger.xlsx - -
- - - - - - - - - - - - -
-
- -
-
- - - export_ledger - account.report.general.ledger.xlsx - form - - new - - - -
\ No newline at end of file -- cgit v1.2.3 From eababb6272797427353ccc5a58609ceac6ceea1c Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Wed, 9 Aug 2023 15:05:55 +0700 Subject: ledger --- indoteknik_custom/views/account_financial_report_view.xml | 2 +- indoteknik_custom/views/account_report_general_ledger_view.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/account_financial_report_view.xml b/indoteknik_custom/views/account_financial_report_view.xml index 31c04e7c..7c156599 100644 --- a/indoteknik_custom/views/account_financial_report_view.xml +++ b/indoteknik_custom/views/account_financial_report_view.xml @@ -1,6 +1,6 @@ - + Common Report accounting.report.xlsx diff --git a/indoteknik_custom/views/account_report_general_ledger_view.xml b/indoteknik_custom/views/account_report_general_ledger_view.xml index b789874f..61c0ffff 100644 --- a/indoteknik_custom/views/account_report_general_ledger_view.xml +++ b/indoteknik_custom/views/account_report_general_ledger_view.xml @@ -1,5 +1,5 @@ - + Export Ledger account.report.general.ledger.xlsx -- cgit v1.2.3 From dcc5ed9671b9809a4a41cd6b7b864f1294f9fd8a Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Wed, 9 Aug 2023 15:45:23 +0700 Subject: Fix update rajaongkir record xml --- indoteknik_custom/views/raja_ongkir.xml | 242 ++++++++++++++++---------------- 1 file changed, 122 insertions(+), 120 deletions(-) (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/raja_ongkir.xml b/indoteknik_custom/views/raja_ongkir.xml index 9e24a889..8888366b 100644 --- a/indoteknik_custom/views/raja_ongkir.xml +++ b/indoteknik_custom/views/raja_ongkir.xml @@ -68,125 +68,127 @@ action="rajaongkir_kurir_action" /> - - jne - 51 - True - - - pos - 53 - True - - - tiki - 54 - True - - - rpx - 55 - True - - - pandu - 56 - True - - - wahana - 7 - True - - - sicepat - 27 - True - - - jnt - 57 - True - - - pahala - 58 - True - - - sap - 59 - True - - - jet - 60 - True - - - indah - 61 - True - - - dse - 62 - True - - - slis - 63 - True - - - first - 64 - True - - - ncs - 65 - True - - - star - 66 - True - - - lion - 67 - True - - - idl - 68 - True - - - rex - 69 - True - - - ide - 70 - True - - - sentral - 71 - True - - - anteraja - 72 - True - - - jtl - 73 - True - + + + jne + 51 + True + + + pos + 53 + True + + + tiki + 54 + True + + + rpx + 55 + True + + + pandu + 56 + True + + + wahana + 7 + True + + + sicepat + 27 + True + + + jnt + 57 + True + + + pahala + 58 + True + + + sap + 59 + True + + + jet + 60 + True + + + indah + 61 + True + + + dse + 62 + True + + + slis + 63 + True + + + first + 64 + True + + + ncs + 65 + True + + + star + 66 + True + + + lion + 67 + True + + + idl + 68 + True + + + rex + 69 + True + + + ide + 70 + True + + + sentral + 71 + True + + + anteraja + 72 + True + + + jtl + 73 + True + + \ No newline at end of file -- cgit v1.2.3 From 81c87b71d6cb7caad7230b9cca8545155d917214 Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Thu, 10 Aug 2023 11:01:05 +0700 Subject: fix format price email template --- indoteknik_custom/views/mail_template_po.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'indoteknik_custom/views') diff --git a/indoteknik_custom/views/mail_template_po.xml b/indoteknik_custom/views/mail_template_po.xml index 77c21837..410520b3 100644 --- a/indoteknik_custom/views/mail_template_po.xml +++ b/indoteknik_custom/views/mail_template_po.xml @@ -54,10 +54,10 @@ % if line.price_vendor != 0 and line.price_unit != line.price_vendor
  • Nama Produk: ${line.product_id.name}
  • -
  • Harga Unit dalam PO: ${line.price_unit}
  • -
  • Harga Unit dalam Purchase Pricelist: ${line.price_vendor}
  • +
  • Harga Unit dalam PO: Rp ${'{:,.2f}'.format(line.price_unit)}
  • +
  • Harga Unit dalam Purchase Pricelist: Rp ${'{:,.2f}'.format(line.price_vendor)}
- % endif + % endif % endfor Silahkan periksa dan lakukan koreksi jika diperlukan.

-- cgit v1.2.3