Skip to content

Commit

Permalink
Merge PR #1071 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by chienandalu
  • Loading branch information
OCA-git-bot committed Nov 2, 2023
2 parents 5cd4b1c + 87c144b commit ed4299f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pos_partner_birthdate/static/src/js/ClientDetailsEdit.esm.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
/** @odoo-module **/
const {useState} = owl;
import PartnerDetailsEdit from "point_of_sale.PartnerDetailsEdit";
import Registries from "point_of_sale.Registries";

const PartnerDetailsEditBirthdate = (OriginalPartnerDetailsEdit) =>
class extends OriginalPartnerDetailsEdit {
setup() {
super.setup();
this.changes = {
this.changes = useState({
...this.changes,
birthdate_date: this.props.partner.birthdate_date || null,
};
});
}
};

Expand Down

0 comments on commit ed4299f

Please sign in to comment.