odoo-addon-pms 16.0.2.4.0__py3-none-any.whl → 16.0.2.5.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/pms/README.rst +1 -1
- odoo/addons/pms/__manifest__.py +1 -1
- odoo/addons/pms/models/folio_sale_line.py +7 -2
- odoo/addons/pms/models/pms_checkin_partner.py +1 -1
- odoo/addons/pms/models/pms_folio.py +19 -3
- odoo/addons/pms/models/pms_property.py +2 -0
- odoo/addons/pms/static/description/index.html +1 -1
- odoo/addons/pms/wizards/folio_make_invoice_advance.py +20 -11
- {odoo_addon_pms-16.0.2.4.0.dist-info → odoo_addon_pms-16.0.2.5.0.1.dist-info}/METADATA +2 -2
- {odoo_addon_pms-16.0.2.4.0.dist-info → odoo_addon_pms-16.0.2.5.0.1.dist-info}/RECORD +12 -12
- {odoo_addon_pms-16.0.2.4.0.dist-info → odoo_addon_pms-16.0.2.5.0.1.dist-info}/WHEEL +0 -0
- {odoo_addon_pms-16.0.2.4.0.dist-info → odoo_addon_pms-16.0.2.5.0.1.dist-info}/top_level.txt +0 -0
odoo/addons/pms/README.rst
CHANGED
|
@@ -11,7 +11,7 @@ PMS (Property Management System)
|
|
|
11
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
12
12
|
!! changes will be overwritten. !!
|
|
13
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
14
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:91774a4d1ecfe9c726ac0f4341c1f39b78535f68ad335321ef941f95c455eeb1
|
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
16
|
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
odoo/addons/pms/__manifest__.py
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{
|
|
5
5
|
"name": "PMS (Property Management System)",
|
|
6
6
|
"summary": "A property management system",
|
|
7
|
-
"version": "16.0.2.
|
|
7
|
+
"version": "16.0.2.5.0",
|
|
8
8
|
"development_status": "Beta",
|
|
9
9
|
"category": "Generic Modules/Property Management System",
|
|
10
10
|
"website": "https://github.com/OCA/pms",
|
|
@@ -1039,7 +1039,7 @@ class FolioSaleLine(models.Model):
|
|
|
1039
1039
|
result = super().write(values)
|
|
1040
1040
|
return result
|
|
1041
1041
|
|
|
1042
|
-
def _prepare_invoice_line(self, qty=False, **optional_values):
|
|
1042
|
+
def _prepare_invoice_line(self, qty=False, invoice_fpos=None, **optional_values):
|
|
1043
1043
|
"""
|
|
1044
1044
|
Prepare the dict of values to create the new invoice line for a folio sale line.
|
|
1045
1045
|
|
|
@@ -1048,6 +1048,11 @@ class FolioSaleLine(models.Model):
|
|
|
1048
1048
|
should be added to the returned invoice line
|
|
1049
1049
|
"""
|
|
1050
1050
|
self.ensure_one()
|
|
1051
|
+
taxes = invoice_fpos.map_tax(
|
|
1052
|
+
self.product_id.taxes_id.filtered(
|
|
1053
|
+
lambda t, r=self.folio_id: t.company_id == r.env.company
|
|
1054
|
+
)
|
|
1055
|
+
)
|
|
1051
1056
|
if self.is_downpayment:
|
|
1052
1057
|
downpayment_invoice = self.folio_id.move_ids.filtered(
|
|
1053
1058
|
lambda x: x.payment_state != "reversed"
|
|
@@ -1067,7 +1072,7 @@ class FolioSaleLine(models.Model):
|
|
|
1067
1072
|
"quantity": qty if qty else self.qty_to_invoice,
|
|
1068
1073
|
"discount": self.discount,
|
|
1069
1074
|
"price_unit": self.price_unit,
|
|
1070
|
-
"tax_ids": [(6, 0,
|
|
1075
|
+
"tax_ids": [(6, 0, taxes.ids)],
|
|
1071
1076
|
# "analytic_account_id": self.folio_id.analytic_account_id.id,
|
|
1072
1077
|
# "analytic_tag_ids": [(6, 0, self.analytic_tag_ids.ids)],
|
|
1073
1078
|
"folio_line_ids": [(6, 0, [self.id])],
|
|
@@ -569,7 +569,7 @@ class PmsCheckinPartner(models.Model):
|
|
|
569
569
|
):
|
|
570
570
|
records += super().create(vals)
|
|
571
571
|
elif len(dummy_checkins) > 0:
|
|
572
|
-
dummy_checkins[0].write(vals)
|
|
572
|
+
dummy_checkins[0].with_context(skip_set_partner_data=True).write(vals)
|
|
573
573
|
records += dummy_checkins[0]
|
|
574
574
|
else:
|
|
575
575
|
raise ValidationError(
|
|
@@ -647,6 +647,10 @@ class PmsFolio(models.Model):
|
|
|
647
647
|
invoice_vals = folio._prepare_invoice(
|
|
648
648
|
partner_invoice_id=group["partner_id"]
|
|
649
649
|
)
|
|
650
|
+
invoice_fpos_id = invoice_vals.get("fiscal_position_id")
|
|
651
|
+
invoice_fpos = self.env["account.fiscal.position"].browse(
|
|
652
|
+
invoice_fpos_id
|
|
653
|
+
)
|
|
650
654
|
# Invoice line values (keep only necessary sections).
|
|
651
655
|
current_section_vals = None
|
|
652
656
|
invoice_lines_vals = []
|
|
@@ -654,7 +658,8 @@ class PmsFolio(models.Model):
|
|
|
654
658
|
if line.display_type == "line_section":
|
|
655
659
|
current_section_vals = line._prepare_invoice_line(
|
|
656
660
|
sequence=invoice_item_sequence
|
|
657
|
-
+ folio.sale_line_ids.ids.index(line.id)
|
|
661
|
+
+ folio.sale_line_ids.ids.index(line.id),
|
|
662
|
+
invoice_fpos=invoice_fpos,
|
|
658
663
|
)
|
|
659
664
|
continue
|
|
660
665
|
if line.display_type != "line_note" and float_is_zero(
|
|
@@ -676,6 +681,7 @@ class PmsFolio(models.Model):
|
|
|
676
681
|
sequence=invoice_item_sequence
|
|
677
682
|
+ folio.sale_line_ids.ids.index(line.id),
|
|
678
683
|
qty=lines_to_invoice[line.id],
|
|
684
|
+
invoice_fpos=invoice_fpos,
|
|
679
685
|
)
|
|
680
686
|
invoice_lines_vals.append(prepared_line)
|
|
681
687
|
|
|
@@ -693,7 +699,8 @@ class PmsFolio(models.Model):
|
|
|
693
699
|
invoice_item_sequence += 1
|
|
694
700
|
invoice_down_payment_vals = down_payment._prepare_invoice_line(
|
|
695
701
|
sequence=invoice_item_sequence
|
|
696
|
-
+ folio.sale_line_ids.ids.index(down_payment.id)
|
|
702
|
+
+ folio.sale_line_ids.ids.index(down_payment.id),
|
|
703
|
+
invoice_fpos=invoice_fpos,
|
|
697
704
|
)
|
|
698
705
|
invoice_lines_vals.append(invoice_down_payment_vals)
|
|
699
706
|
|
|
@@ -2101,6 +2108,15 @@ class PmsFolio(models.Model):
|
|
|
2101
2108
|
(making sure to call super() to establish a clean extension chain).
|
|
2102
2109
|
"""
|
|
2103
2110
|
self.ensure_one()
|
|
2111
|
+
if partner_invoice_id and partner_invoice_id != self.partner_id.id:
|
|
2112
|
+
partner = self.env["res.partner"].browse(partner_invoice_id)
|
|
2113
|
+
fiscal_position = (
|
|
2114
|
+
self.env["account.fiscal.position"]
|
|
2115
|
+
.with_company(self.company_id)
|
|
2116
|
+
._get_fiscal_position(partner)
|
|
2117
|
+
)
|
|
2118
|
+
else:
|
|
2119
|
+
fiscal_position = self.fiscal_position_id
|
|
2104
2120
|
journal = self.pms_property_id._get_folio_default_journal(
|
|
2105
2121
|
partner_invoice_id=partner_invoice_id,
|
|
2106
2122
|
room_ids=self.reservation_ids.mapped("reservation_line_ids.room_id.id"),
|
|
@@ -2148,7 +2164,7 @@ class PmsFolio(models.Model):
|
|
|
2148
2164
|
"invoice_line_ids": [],
|
|
2149
2165
|
"company_id": self.company_id.id,
|
|
2150
2166
|
"payment_reference": self.name,
|
|
2151
|
-
"fiscal_position_id":
|
|
2167
|
+
"fiscal_position_id": fiscal_position.id,
|
|
2152
2168
|
}
|
|
2153
2169
|
return invoice_vals
|
|
2154
2170
|
|
|
@@ -924,6 +924,7 @@ class PmsProperty(models.Model):
|
|
|
924
924
|
)
|
|
925
925
|
folio.sudo().message_post(body=mens)
|
|
926
926
|
raise ValidationError(mens)
|
|
927
|
+
invoice_fpos = invoice.fiscal_position_id
|
|
927
928
|
for downpayment in downpayments.filtered(
|
|
928
929
|
lambda d, i=invoice: d.default_invoice_to == i.partner_id
|
|
929
930
|
):
|
|
@@ -933,6 +934,7 @@ class PmsProperty(models.Model):
|
|
|
933
934
|
invoice_down_payment_vals = downpayment._prepare_invoice_line(
|
|
934
935
|
sequence=max(invoice.invoice_line_ids.mapped("sequence"))
|
|
935
936
|
+ 1,
|
|
937
|
+
invoice_fpos=invoice_fpos,
|
|
936
938
|
)
|
|
937
939
|
invoice.write(
|
|
938
940
|
{"invoice_line_ids": [(0, 0, invoice_down_payment_vals)]}
|
|
@@ -372,7 +372,7 @@ ul.auto-toc {
|
|
|
372
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
373
373
|
!! changes will be overwritten. !!
|
|
374
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
375
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:91774a4d1ecfe9c726ac0f4341c1f39b78535f68ad335321ef941f95c455eeb1
|
|
376
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
377
377
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/pms/tree/16.0/pms"><img alt="OCA/pms" src="https://img.shields.io/badge/github-OCA%2Fpms-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/pms-16-0/pms-16-0-pms"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/pms&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
378
378
|
<p>This module is an all-in-one property management system (PMS) focused on medium-sized properties
|
|
@@ -156,15 +156,28 @@ class FolioAdvancePaymentInv(models.TransientModel):
|
|
|
156
156
|
|
|
157
157
|
def _prepare_invoice_values(self, order, name, amount, line):
|
|
158
158
|
partner_id = (
|
|
159
|
-
self.partner_invoice_id.
|
|
160
|
-
if self.partner_invoice_id
|
|
161
|
-
else order.partner_invoice_id.id
|
|
159
|
+
self.partner_invoice_id if self.partner_invoice_id else order.partner_id
|
|
162
160
|
)
|
|
161
|
+
taxes = line.tax_ids
|
|
162
|
+
if partner_id == order.partner_id:
|
|
163
|
+
fiscal_position = order.fiscal_position_id
|
|
164
|
+
else:
|
|
165
|
+
fiscal_position = (
|
|
166
|
+
self.env["account.fiscal.position"]
|
|
167
|
+
.with_company(order.company_id)
|
|
168
|
+
._get_fiscal_position(partner_id)
|
|
169
|
+
)
|
|
170
|
+
product = line.product_id
|
|
171
|
+
taxes = fiscal_position.map_tax(
|
|
172
|
+
product.taxes_id.filtered(
|
|
173
|
+
lambda t, r=order: t.company_id == r.env.company
|
|
174
|
+
)
|
|
175
|
+
)
|
|
163
176
|
invoice_vals = {
|
|
164
177
|
"ref": order.name,
|
|
165
178
|
"move_type": "out_invoice",
|
|
166
179
|
"journal_id": order.pms_property_id._get_folio_default_journal(
|
|
167
|
-
partner_invoice_id=partner_id,
|
|
180
|
+
partner_invoice_id=partner_id.id,
|
|
168
181
|
room_ids=order.mapped(
|
|
169
182
|
"reservation_ids.reservation_line_ids.room_id.id"
|
|
170
183
|
),
|
|
@@ -172,14 +185,12 @@ class FolioAdvancePaymentInv(models.TransientModel):
|
|
|
172
185
|
"invoice_origin": order.name,
|
|
173
186
|
"invoice_user_id": order.user_id.id,
|
|
174
187
|
"narration": order.note,
|
|
175
|
-
"partner_id": partner_id,
|
|
188
|
+
"partner_id": partner_id.id,
|
|
176
189
|
"currency_id": order.pricelist_id.currency_id.id,
|
|
177
190
|
"folio_ids": [(6, 0, order.ids)],
|
|
178
191
|
"payment_reference": order.reference,
|
|
179
192
|
"invoice_payment_term_id": order.payment_term_id.id,
|
|
180
|
-
"fiscal_position_id":
|
|
181
|
-
.browse(partner_id)
|
|
182
|
-
.property_account_position_id.id,
|
|
193
|
+
"fiscal_position_id": fiscal_position.id,
|
|
183
194
|
# 'campaign_id': order.campaign_id.id,
|
|
184
195
|
# 'medium_id': order.medium_id.id,
|
|
185
196
|
# 'source_id': order.source_id.id,
|
|
@@ -193,7 +204,7 @@ class FolioAdvancePaymentInv(models.TransientModel):
|
|
|
193
204
|
"quantity": 1.0,
|
|
194
205
|
"product_id": self.product_id.id,
|
|
195
206
|
"product_uom_id": line.product_uom.id,
|
|
196
|
-
"tax_ids": [(6, 0,
|
|
207
|
+
"tax_ids": [(6, 0, taxes.ids)],
|
|
197
208
|
"folio_line_ids": [(6, 0, [line.id])],
|
|
198
209
|
# "analytic_tag_ids": [(6, 0, line.analytic_tag_ids.ids)],
|
|
199
210
|
# "analytic_account_id": order.analytic_account_id.id or False,
|
|
@@ -213,8 +224,6 @@ class FolioAdvancePaymentInv(models.TransientModel):
|
|
|
213
224
|
amount, name = self._get_advance_details(order)
|
|
214
225
|
|
|
215
226
|
invoice_vals = self._prepare_invoice_values(order, name, amount, line)
|
|
216
|
-
if order.fiscal_position_id:
|
|
217
|
-
invoice_vals["fiscal_position_id"] = order.fiscal_position_id.id
|
|
218
227
|
invoice = (
|
|
219
228
|
self.env["account.move"].sudo().create(invoice_vals).with_user(self.env.uid)
|
|
220
229
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-pms
|
|
3
|
-
Version: 16.0.2.
|
|
3
|
+
Version: 16.0.2.5.0.1
|
|
4
4
|
Summary: A property management system
|
|
5
5
|
Home-page: https://github.com/OCA/pms
|
|
6
6
|
Author: Commit [Sun], Odoo Community Association (OCA)
|
|
@@ -35,7 +35,7 @@ PMS (Property Management System)
|
|
|
35
35
|
!! This file is generated by oca-gen-addon-readme !!
|
|
36
36
|
!! changes will be overwritten. !!
|
|
37
37
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
38
|
-
!! source digest: sha256:
|
|
38
|
+
!! source digest: sha256:91774a4d1ecfe9c726ac0f4341c1f39b78535f68ad335321ef941f95c455eeb1
|
|
39
39
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
40
40
|
|
|
41
41
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/pms/README.rst,sha256=
|
|
1
|
+
odoo/addons/pms/README.rst,sha256=rEvoJoBJabfozNWVSIwRuKyQUPZRVK4vryjIjfcijuM,3898
|
|
2
2
|
odoo/addons/pms/__init__.py,sha256=uCUbRxtCubFHrz65XPTEmSu2XU6tpojVZ8MYot9bPMg,171
|
|
3
|
-
odoo/addons/pms/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/pms/__manifest__.py,sha256=b2_6FAM2I62dR6rKZym3WrJy_B2YvK4v5saf8W3xLWE,4723
|
|
4
4
|
odoo/addons/pms/init_hook.py,sha256=2QMZH2wbC7SJxHUM1SQMqjdQqLITbt3w8vK5noEjIjw,518
|
|
5
5
|
odoo/addons/pms/controllers/__init__.py,sha256=ac3kwg8QNSm7JicAACF5d8vPmqDydqO8gEiPh7SIeks,25
|
|
6
6
|
odoo/addons/pms/controllers/pms_portal.py,sha256=Xkxi-vY16mSNQRhXokbLFaehb8Ni5qew_J7pDKEg-Gc,18528
|
|
@@ -37,7 +37,7 @@ odoo/addons/pms/models/account_journal.py,sha256=rKRrGg-mF8zikzoamEUpu1fA53d-GIQ
|
|
|
37
37
|
odoo/addons/pms/models/account_move.py,sha256=C98kPfkjSdYb3CHGCwc619f7Vq-XGkpShNV9rAAuKkc,16727
|
|
38
38
|
odoo/addons/pms/models/account_move_line.py,sha256=SGjWLG9sbe-mo1eiqA1KMGK6GUHCayLGYUBF_nt3xRg,7429
|
|
39
39
|
odoo/addons/pms/models/account_payment.py,sha256=qEla5djD1qU5PaKKgaqQxDl9z8jBcdWl9HeyL34qQqk,8680
|
|
40
|
-
odoo/addons/pms/models/folio_sale_line.py,sha256=
|
|
40
|
+
odoo/addons/pms/models/folio_sale_line.py,sha256=bQfhWlGy3poyatGy8QJuQgYe_iFbxafJ1X6qUbUJR4E,46239
|
|
41
41
|
odoo/addons/pms/models/ir_config_parameter.py,sha256=vPqpdoYuQen-PbWwubXhwRnvIBA73UKO7YL3nyZg2Lg,732
|
|
42
42
|
odoo/addons/pms/models/ir_http.py,sha256=kTKKOGv4equREzHofRVNColahV71VD2rurJJacSAsAI,1877
|
|
43
43
|
odoo/addons/pms/models/ir_pms_property.py,sha256=OliJaVyh0OVY_2T491aooo6sctQhtkFd17QwP8YsEIs,5013
|
|
@@ -55,9 +55,9 @@ odoo/addons/pms/models/pms_board_service_line.py,sha256=_E4SckqTskSuVlxAtYNnNCE8
|
|
|
55
55
|
odoo/addons/pms/models/pms_board_service_room_type.py,sha256=PbDrVf50bwN49yKQDi8Sf92kxg0X3IHRLgfUzylSvt4,5783
|
|
56
56
|
odoo/addons/pms/models/pms_board_service_room_type_line.py,sha256=Xt78_qJPn4wIxiQaloPBKpIAIncBY0bjIQ6FdsxMQqk,2028
|
|
57
57
|
odoo/addons/pms/models/pms_cancelation_rule.py,sha256=G6IoM_h4XYJUqx8SlgFB7lPmwy7LBefJ4Gzreg0QUCA,3038
|
|
58
|
-
odoo/addons/pms/models/pms_checkin_partner.py,sha256=
|
|
59
|
-
odoo/addons/pms/models/pms_folio.py,sha256=
|
|
60
|
-
odoo/addons/pms/models/pms_property.py,sha256
|
|
58
|
+
odoo/addons/pms/models/pms_checkin_partner.py,sha256=8rkX0pl-YfGxwQVNLRPqCw3WxFyHsKfYiJ1cJ8SLFfE,28897
|
|
59
|
+
odoo/addons/pms/models/pms_folio.py,sha256=wcy6yA49_2pj3s-ccHjSSuHwRePLaVFFkJXPVg8RxlE,108586
|
|
60
|
+
odoo/addons/pms/models/pms_property.py,sha256=-9dk7BHKUNaN_ms1fSzktPcHP0ofzGhRbNk3uZdjBsI,45949
|
|
61
61
|
odoo/addons/pms/models/pms_reservation.py,sha256=8D0SNxiULBVzzbA8syc6aSsXpXE7GNIZIgRXY6bUsGo,107774
|
|
62
62
|
odoo/addons/pms/models/pms_reservation_line.py,sha256=HIVtAHiDT4GU9c1A9r2xuuCViqDZen1qJAIQBSR0ukE,27669
|
|
63
63
|
odoo/addons/pms/models/pms_room.py,sha256=CzeqXDrsDnYaGqRaw_LtWUIxJCdv4qYDpyBzaUpwbv4,12092
|
|
@@ -93,7 +93,7 @@ odoo/addons/pms/security/ir.model.access.csv,sha256=yLqMoKZR8eAuUWOm9Fys0JCeCZlo
|
|
|
93
93
|
odoo/addons/pms/security/pms_security.xml,sha256=ojrBeQtkn1D7EPnaVLRf4hT60JB4K2ma00hr9vv-LTo,13646
|
|
94
94
|
odoo/addons/pms/static/description/avatar.png,sha256=CWIs64cZDPrrZVmRCyV_cD_h03lWUoQikvCllgrsELY,4370
|
|
95
95
|
odoo/addons/pms/static/description/icon.png,sha256=_y1zF9kLND2nIpLMurvkkyiMfUq53JN26oN7_h-PfH0,24626
|
|
96
|
-
odoo/addons/pms/static/description/index.html,sha256=
|
|
96
|
+
odoo/addons/pms/static/description/index.html,sha256=09-gIOYHo7pdT9JfUdYOs1YUbkz5oiP2bXHAELM3ugY,14070
|
|
97
97
|
odoo/addons/pms/static/img/icon-door.svg,sha256=Vt62k1RKXIt7zha9_uZJKPrlgdEUto9d2q_IEbxRigI,1514
|
|
98
98
|
odoo/addons/pms/static/img/icon-mail.svg,sha256=H0NQ5fACCKoJ7KLfPQvaHMwhD2qNk6-T7FEkoW9r0Vo,950
|
|
99
99
|
odoo/addons/pms/static/img/icon-phone.svg,sha256=T03z7if6caEBtf_F_3HnRi6AgNeZxbgCGWeGzMMjZlw,1340
|
|
@@ -173,7 +173,7 @@ odoo/addons/pms/views/res_users_views.xml,sha256=bkNhDj75dnK93YnCfl1ELNvobE-Xhg3
|
|
|
173
173
|
odoo/addons/pms/views/reservation_portal_templates.xml,sha256=i6Bz8mrMHbzy1vx9AbqG4uwr91OtX6cX37TZVLzS3eE,13530
|
|
174
174
|
odoo/addons/pms/views/traveller_report_template.xml,sha256=3lq8ozeWAd03IFurWsGbOMAxoPfTXgsOOIDSnWOTm80,15334
|
|
175
175
|
odoo/addons/pms/wizards/__init__.py,sha256=GW9sc4cVPs-3swCnUa8pOdcmdQbGzKDrhpSxALLaZ9A,375
|
|
176
|
-
odoo/addons/pms/wizards/folio_make_invoice_advance.py,sha256=
|
|
176
|
+
odoo/addons/pms/wizards/folio_make_invoice_advance.py,sha256=VvZ5vH1pc5O4hKksdWDeFSRHCSTTQGlEafoDRJAx6Cs,13683
|
|
177
177
|
odoo/addons/pms/wizards/folio_make_invoice_advance_views.xml,sha256=5lWRyW7C_h2y6lkNG2gled_l40eUP2hnjqjA-tQfp_A,6308
|
|
178
178
|
odoo/addons/pms/wizards/folio_payment_link.py,sha256=Z_2JqwneS4fnobiq70ftyX0sq4S3OF5YyAVYttwimZs,1816
|
|
179
179
|
odoo/addons/pms/wizards/folio_payment_link_views.xml,sha256=i7bHNWlz73IbA6LKPzb7DGsomOZXAg43ZRWehPtdL5E,546
|
|
@@ -193,7 +193,7 @@ odoo/addons/pms/wizards/wizard_several_partners.py,sha256=nOYHInUyT7bV4opyk03_i-
|
|
|
193
193
|
odoo/addons/pms/wizards/wizard_several_partners.xml,sha256=tuSIYJiqN_EprlwI7cBrteMPblHoybcHBDrHO1di0DY,1382
|
|
194
194
|
odoo/addons/pms/wizards/wizard_split_join_swap_reservation.py,sha256=D0AFrimn4lViWSnQ0sgM1msVniUudbgqvS0hRIBkXfQ,13751
|
|
195
195
|
odoo/addons/pms/wizards/wizard_split_join_swap_reservation.xml,sha256=MDyXIdQfumI7WnXqO5E4fCqM4BW32CIwS97tF66gBy8,5940
|
|
196
|
-
odoo_addon_pms-16.0.2.
|
|
197
|
-
odoo_addon_pms-16.0.2.
|
|
198
|
-
odoo_addon_pms-16.0.2.
|
|
199
|
-
odoo_addon_pms-16.0.2.
|
|
196
|
+
odoo_addon_pms-16.0.2.5.0.1.dist-info/METADATA,sha256=KL_s8LMQyIHRU3pTjO3IFdp7PyutRX5Me9TzcmaSOxc,4919
|
|
197
|
+
odoo_addon_pms-16.0.2.5.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
198
|
+
odoo_addon_pms-16.0.2.5.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
199
|
+
odoo_addon_pms-16.0.2.5.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|