Golden Prairie Kennels

Information about the Golden Prairie Kennels instance of Odoo, the Open Source ERP.

Installed Applications

Sales
From quotations to invoices
Invoicing
Invoices & Payments
Website
Enterprise website builder
eCommerce
Sell your products online
Discuss
Chat, mail gateway and private channels
Contacts
Centralize your address book
Calendar
Schedule employees' meetings

Installed Localizations / Account Charts

Generic - Accounting
United States - Accounting
// Wait for the document to be fully loaded // Initialize a Mutation Observer const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { // Check if the element exists and its text is "Not Available For Sale" const spanElement = document.querySelector('span[data-oe-field="prevent_zero_price_sale_text"]'); if (spanElement && spanElement.textContent === "Not Available For Sale") { // Change the text to "This Puppy Found a Home" spanElement.textContent = "This Puppy Found a Home"; } }); }); // Configuration of the observer const config = { attributes: true, childList: true, characterData: true, subtree: true }; // Pass in the target node (document.body), as well as the observer options observer.observe(document.body, config);