This slide will show that how to add button in the header of list view in Odoo 17. In certain situations, we may need to add a custom button to a specific list view, such as the sales order tree view header.
This document provides an overview of the basic terminology and tools in Microsoft PowerPoint. It discusses how to get started with PowerPoint and open a new presentation. It then summarizes the main menus and tools for formatting text, inserting images, tables, charts and other objects. The tools covered include changing fonts, formatting text, inserting slides, tables, pictures, and shapes. The document aims to accelerate learning PowerPoint through understanding its menus and ribbon interface.
This document discusses how freezing panes in Microsoft Excel can help create a more user-friendly interface for entering and editing data across multiple columns. It explains that freezing the column titles is a simple process that increases data validity by ensuring the column titles remain visible as the user scrolls down. The document demonstrates how to freeze the top row of column titles in Excel by selecting Freeze Panes from the View tab after scrolling to position the column titles in the top row.
Este documento describe los pasos para instalar y configurar un servidor WSUS (Windows Server Update Services) en Windows Server 2008 R2. Incluye instalar roles y funciones como IIS y WSUS, configurar pol¨ªticas de grupo para actualizaciones autom¨¢ticas desde el servidor WSUS local, y aprobar y distribuir actualizaciones a clientes unidos al dominio.
How to add button in list view Odoo 17 - Odoo 17 ºÝºÝߣsCeline George
?
In this slide we¡¯ll discuss on how to add button in the tree view in odoo 17. This will enable enhanced user interactions directly from list views. This functionality allows users to perform actions on records without needing to open individual forms, streamlining workflow processes.
How to Create a Popup in Odoo POS 17 - Odoo 17 ºÝºÝߣsCeline George
?
In this slide we¡¯ll discuss how to create a custom popup in POS. We can use a pop-up for various purposes, such as displaying important messages, collecting additional customer information, or prompting users for specific actions.
View Button in Odoo 18 Contact Module - Odoo 18 ºÝºÝߣsCeline George
?
As in every new version before, Odoo 18 also have some nice features which revamp the brand new feel and thereby increases the easiness of using it. Today we are going to discuss a new thing introduced in the base Contact module, that is a ¡®View¡¯ button inside it.
Technical chamber is one of the best website that help you to get the best technical nad programming solutions, Visit website for more details : https://www.technicalchamber.com/2023/04/how-to-create-toggle-button-in-reactjs.html
How to Create and Manage Wizard in Odoo 17Celine George
?
Wizards are very useful for creating a good user experience. In all businesses, interactive sessions are most beneficial. To improve the user experience, wizards in Odoo provide an interactive session.
For creating wizards, we can use transient models or abstract models. This gives features of a model class except the data storing. Transient and abstract models have permanent database persistence. For them, database tables are made, and the records in such tables are kept until they are specifically erased.
How to Use JS Class in Form Views in Odoo 17 - Odoo 17 ºÝºÝߣsCeline George
?
This slide will represent how to use JS class in form views in odoo 17. This slide will explain the creation of a custom view using a Javascript class to render the form view.
How to Open a Form View on Button Click in Odoo 17Celine George
?
In this slide, we'll show you how to activate a form display as you press a button. We can return the view we need to access in this way, on the button action.
Lab StepsSTEP 1 Login Form1. In order to do this lab, we need.docxsmile790243
?
Lab Steps
STEP 1: Login Form
1. In order to do this lab, we need to assign a primary key to the tblUserLogin table. This will allow us to modify the user login table from our Manage Users form that we will create later. Go to Windows Explorer and open the?PayrollSystem_DB.accdb.?Set the UserID as the Primary key and save the table. Close the database.
2. Open Microsoft Visual Studio.NET.
3. Click the ASP.NET website named PayrollSystem to open it.
4. Create a new Web form named?frmLogin.
5. Add the?ACIT logo?to the top of the frmLogin page. Do not hyperlink the logo.
6. Under the login controls, you will see?Login. Drop the Login control onto the form. Set the properties of the login control as follows:
Property
Value
DestinationPageUrl
frmMain.aspx
TitleText
Please enter your UserName and Password in order to log in to the system.
7. Highlight everything in the form, then click Format, Justify, Center. Save your work.
8. Go to the
Solution
Explorer, right-click on?frmLogin, and left-click on?Set As Start Page.
Then run the website to check if the Web form appears correctly.
If you receive an error, add the following code to the?web.config?file right above the?</configuration>?line:
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
STEP 2: Login Check
9. Create a new DataSet called?dsUser. Use the table?tblUserLogin?as the database table for this dataset. Do this in the same way that you added datasets in the previous labs.
10. Open the?clsDataLayer?and add the following function:
// This function verifies a user in the tblUser table
public static dsUser VerifyUser(string Database, string UserName, string UserPassword)
{
// Add your comments here
dsUser DS;
OleDbConnection sqlConn;
OleDbDataAdapter sqlDA;
// Add your comments here
sqlConn = new OleDbConnection("PROVIDER=Microsoft.ACE.OLEDB.12.0;" +
"Data Source=" + Database);
// Add your comments here
sqlDA = new OleDbDataAdapter("Select SecurityLevel from tblUserLogin " +
"where UserName like '" + UserName + "' " +
"and UserPassword like '" + UserPassword + "'", sqlConn);
// Add your comments here
DS = new dsUser();
// Add your comments here
sqlDA.Fill(DS.tblUserLogin);
// Add your comments here
return DS;
}
11. Double-click on the login control that you added. Add the following code to the login control?Authenticate event handler:
// Add your comments here
dsUser dsUserLogin;
// Add your comments here
string SecurityLevel;
// Add your comments here
dsUserLogin = clsDataLayer.VerifyUser(Server.MapPath("PayrollSystem_DB.accdb"),
Login1.UserName, Login1.Password);
// Add your comments here
if (dsUserLogin.tblUserLogin.Count < 1)
{
e.Authenticated = false;
return;
}
// Add your comments here
SecurityLevel = dsUserLogin.tblUserLogin[0].SecurityLevel.ToString();
// Add your comments here
switch (SecurityLevel)
{
case "A":
// Add your comments here
e.Authenticated = true;
Session["SecurityLevel"] = "A";
break;
case "U":
// Add your comments ...
How to Add Notes, Sections & Catalog in Odoo 18Celine George
?
In this slide, we¡¯ll discuss how to add notes, sections, and catalogs in Odoo 18. You can add detailed notes to records for better context and tracking. Custom sections can be created to organize and categorize information effectively.
How to Create Action Type & Object Type Button in Odoo 17Celine George
?
In Odoo, we have two types of buttons they are "Object Type" and "Action Type". In the case of the Object type button, the Python method mentioned in the name attribute of the button will be executed on the button click but in the case of the Action type, it's possible to call an action record using the button.
How to Empty a One2Many Field in Odoo 17Celine George
?
This slide discusses how to delete or clear records in an Odoo 17 one2many field. We'll achieve this by adding a button named "Delete Records." Clicking this button will delete all associated one2many records.
How To Create Record From Code In Odoo 17Celine George
?
In this slide we¡¯ll discuss how to create a record from code in odoo 17. In Odoo, creating records in a database table can be easily achieved using python code through the ORM (Object-Relational Mapping) framework. By using odoo's create() method, developers can insert new records into models, making data management more efficient and seamless.
How to modify_create components control buttons in Pos odoo.pptxCeline George
?
The Odoo Javascript framework uses a custom component framework called Owl. Odoo 17 uses relies on the Odoo Web Library (OWL) for web development. It employs OWL concepts and principles in its POS system, with JavaScript code.
This document discusses how freezing panes in Microsoft Excel can help create a more user-friendly interface for entering and editing data across multiple columns. It explains that freezing the column titles is a simple process that increases data validity by ensuring the column titles remain visible as the user scrolls down. The document demonstrates how to freeze the top row of column titles in Excel by selecting Freeze Panes from the View tab after scrolling to position the column titles in the top row.
Este documento describe los pasos para instalar y configurar un servidor WSUS (Windows Server Update Services) en Windows Server 2008 R2. Incluye instalar roles y funciones como IIS y WSUS, configurar pol¨ªticas de grupo para actualizaciones autom¨¢ticas desde el servidor WSUS local, y aprobar y distribuir actualizaciones a clientes unidos al dominio.
How to add button in list view Odoo 17 - Odoo 17 ºÝºÝߣsCeline George
?
In this slide we¡¯ll discuss on how to add button in the tree view in odoo 17. This will enable enhanced user interactions directly from list views. This functionality allows users to perform actions on records without needing to open individual forms, streamlining workflow processes.
How to Create a Popup in Odoo POS 17 - Odoo 17 ºÝºÝߣsCeline George
?
In this slide we¡¯ll discuss how to create a custom popup in POS. We can use a pop-up for various purposes, such as displaying important messages, collecting additional customer information, or prompting users for specific actions.
View Button in Odoo 18 Contact Module - Odoo 18 ºÝºÝߣsCeline George
?
As in every new version before, Odoo 18 also have some nice features which revamp the brand new feel and thereby increases the easiness of using it. Today we are going to discuss a new thing introduced in the base Contact module, that is a ¡®View¡¯ button inside it.
Technical chamber is one of the best website that help you to get the best technical nad programming solutions, Visit website for more details : https://www.technicalchamber.com/2023/04/how-to-create-toggle-button-in-reactjs.html
How to Create and Manage Wizard in Odoo 17Celine George
?
Wizards are very useful for creating a good user experience. In all businesses, interactive sessions are most beneficial. To improve the user experience, wizards in Odoo provide an interactive session.
For creating wizards, we can use transient models or abstract models. This gives features of a model class except the data storing. Transient and abstract models have permanent database persistence. For them, database tables are made, and the records in such tables are kept until they are specifically erased.
How to Use JS Class in Form Views in Odoo 17 - Odoo 17 ºÝºÝߣsCeline George
?
This slide will represent how to use JS class in form views in odoo 17. This slide will explain the creation of a custom view using a Javascript class to render the form view.
How to Open a Form View on Button Click in Odoo 17Celine George
?
In this slide, we'll show you how to activate a form display as you press a button. We can return the view we need to access in this way, on the button action.
Lab StepsSTEP 1 Login Form1. In order to do this lab, we need.docxsmile790243
?
Lab Steps
STEP 1: Login Form
1. In order to do this lab, we need to assign a primary key to the tblUserLogin table. This will allow us to modify the user login table from our Manage Users form that we will create later. Go to Windows Explorer and open the?PayrollSystem_DB.accdb.?Set the UserID as the Primary key and save the table. Close the database.
2. Open Microsoft Visual Studio.NET.
3. Click the ASP.NET website named PayrollSystem to open it.
4. Create a new Web form named?frmLogin.
5. Add the?ACIT logo?to the top of the frmLogin page. Do not hyperlink the logo.
6. Under the login controls, you will see?Login. Drop the Login control onto the form. Set the properties of the login control as follows:
Property
Value
DestinationPageUrl
frmMain.aspx
TitleText
Please enter your UserName and Password in order to log in to the system.
7. Highlight everything in the form, then click Format, Justify, Center. Save your work.
8. Go to the
Solution
Explorer, right-click on?frmLogin, and left-click on?Set As Start Page.
Then run the website to check if the Web form appears correctly.
If you receive an error, add the following code to the?web.config?file right above the?</configuration>?line:
<appSettings>
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
</appSettings>
STEP 2: Login Check
9. Create a new DataSet called?dsUser. Use the table?tblUserLogin?as the database table for this dataset. Do this in the same way that you added datasets in the previous labs.
10. Open the?clsDataLayer?and add the following function:
// This function verifies a user in the tblUser table
public static dsUser VerifyUser(string Database, string UserName, string UserPassword)
{
// Add your comments here
dsUser DS;
OleDbConnection sqlConn;
OleDbDataAdapter sqlDA;
// Add your comments here
sqlConn = new OleDbConnection("PROVIDER=Microsoft.ACE.OLEDB.12.0;" +
"Data Source=" + Database);
// Add your comments here
sqlDA = new OleDbDataAdapter("Select SecurityLevel from tblUserLogin " +
"where UserName like '" + UserName + "' " +
"and UserPassword like '" + UserPassword + "'", sqlConn);
// Add your comments here
DS = new dsUser();
// Add your comments here
sqlDA.Fill(DS.tblUserLogin);
// Add your comments here
return DS;
}
11. Double-click on the login control that you added. Add the following code to the login control?Authenticate event handler:
// Add your comments here
dsUser dsUserLogin;
// Add your comments here
string SecurityLevel;
// Add your comments here
dsUserLogin = clsDataLayer.VerifyUser(Server.MapPath("PayrollSystem_DB.accdb"),
Login1.UserName, Login1.Password);
// Add your comments here
if (dsUserLogin.tblUserLogin.Count < 1)
{
e.Authenticated = false;
return;
}
// Add your comments here
SecurityLevel = dsUserLogin.tblUserLogin[0].SecurityLevel.ToString();
// Add your comments here
switch (SecurityLevel)
{
case "A":
// Add your comments here
e.Authenticated = true;
Session["SecurityLevel"] = "A";
break;
case "U":
// Add your comments ...
How to Add Notes, Sections & Catalog in Odoo 18Celine George
?
In this slide, we¡¯ll discuss how to add notes, sections, and catalogs in Odoo 18. You can add detailed notes to records for better context and tracking. Custom sections can be created to organize and categorize information effectively.
How to Create Action Type & Object Type Button in Odoo 17Celine George
?
In Odoo, we have two types of buttons they are "Object Type" and "Action Type". In the case of the Object type button, the Python method mentioned in the name attribute of the button will be executed on the button click but in the case of the Action type, it's possible to call an action record using the button.
How to Empty a One2Many Field in Odoo 17Celine George
?
This slide discusses how to delete or clear records in an Odoo 17 one2many field. We'll achieve this by adding a button named "Delete Records." Clicking this button will delete all associated one2many records.
How To Create Record From Code In Odoo 17Celine George
?
In this slide we¡¯ll discuss how to create a record from code in odoo 17. In Odoo, creating records in a database table can be easily achieved using python code through the ORM (Object-Relational Mapping) framework. By using odoo's create() method, developers can insert new records into models, making data management more efficient and seamless.
How to modify_create components control buttons in Pos odoo.pptxCeline George
?
The Odoo Javascript framework uses a custom component framework called Owl. Odoo 17 uses relies on the Odoo Web Library (OWL) for web development. It employs OWL concepts and principles in its POS system, with JavaScript code.
How to make a field widget in odoo 17 - Odoo ºÝºÝߣsCeline George
?
In this slide we¡¯ll discuss on how to create and override existing field widget in odoo 17. Custom field widgets allow developers to enhance user interfaces by adding tailored functionality or altering the behavior of default widgets.
How to hide the buttons on the POS screen in Odoo 17Celine George
?
The Point of Sale Product Screen in Odoo is a central interface that provides various functionalities through buttons such as Discount, Info, Refund, Reward, and others. Customising the visibility of these buttons based on user roles or permissions can enhance usability and security.
How to Add a Custom Button in Pos Odoo 17Celine George
?
The Odoo Javascript framework uses a custom component framework called Owl.
Odoo 17 uses relies on the Odoo Web Library (OWL) for web development. It employs OWL concepts and principles in its POS system, with JavaScript code.
How to Create an App Using Odoo 17 StudioCeline George
?
Odoo Studio is a powerful tool that allows us to build custom applications without needing to write code. Creating an app with Odoo 17 Studio can greatly enhance our business processes by tailoring the software to fit our specific needs. Let¡¯s explore this interesting feature of Odoo in detail.
The app we'll build in this tutorial is going to let users get connected to their Google account, download their calendars, and create a new event with a description and a date/time. The new event will be posted to a calendar that the user selects.
How to Empty a Many2Many Field in Odoo 17Celine George
?
In this slide we will discuss how to make many2many field empty in Odoo 17. We have already created a Tips and trick module, here we can see a Many2many field called Product.
How to Identify the Margin from the Sales Orders using Odoo 17Celine George
?
In Odoo Sales, the Sales Margin or the Profit Margin feature allows us to track and analyze the profitability of our sales. It helps you calculate the difference between the sale price and the cost price of a product, giving you insights into your profit margins.
Field Parameters in Odoo 18 - Odoo 18 ºÝºÝߣsCeline George
?
In this slide we¡¯ll discuss on the field parameters in Odoo 18. These parameters are essential for customizing and controlling the behavior of fields in models. We will review some of the most commonly used parameters and their applications in development.
How to Invoice Shipping Cost to Customer in Odoo 17Celine George
?
Odoo allows the invoicing of the shipping costs after delivery and this ensures that the charges are accurate based on the real time factors like weight, distance and chosen shipping method.
How to configure the retail shop in Odoo 17 Point of SaleCeline George
?
Odoo's Retail Shop is managed by the module Point of Sale(POS). It is a powerful tool designed to streamline and optimize the operations of retail businesses. It provides a comprehensive solution for managing various aspects of a retail store, from inventory and sales to customer management and reporting.
How to process Interwarehouse and Intrawarehouse transfers in OdooCeline George
?
Inventory management is a critical component of any business that deals with physical goods. In Odoo, the Inventory module provides a comprehensive solution for managing stock, tracking inventory movements, and optimizing supply chain operations.
How to manage Customer Tips with Odoo 17 Point Of SaleCeline George
?
In the context of point-of-sale (POS) systems, a tip refers to the optional amount of money a customer leaves for the service they received. It's a way to show appreciation to the cashier, server, or whoever provided the service.
Analysis of Conf File Parameters in the Odoo 18Celine George
?
n Odoo, the configuration file (commonly named odoo.conf) is a critical file that allows administrators to define various parameters to control the behavior of the Odoo server. These parameters include settings for database connections, server performance, logging, and other operational configurations.
Purchase Analysis in Odoo 17 - Odoo ºÝºÝߣsCeline George
?
Purchase is one of the important things as a part of a business. It is essential to analyse everything that is happening inside the purchase and keep tracking. In Odoo 17, the reporting section is inside the purchase module, which is purchase analysis.
Analysis of Conf File Parameters in Odoo 17Celine George
?
In this slide, we will analyse the configuration file parameters in Odoo 17. The odoo.conf file plays a pivotal role in configuring and managing the Odoo 17 server. It contains essential parameters that control database connections, server behaviour, logging, and performance settings.
Managing Online Signature and Payment with Odoo 17Celine George
?
Odoo Digital Signature is a feature that allows users to sign documents electronically within the Odoo platform. This functionality streamlines workflows by enabling the creation, distribution, and signing of documents digitally, reducing the need for physical paperwork and speeding up processes.
Recruitment in the Odoo 17 - Odoo 17 ºÝºÝߣsCeline George
?
It is a sad fact that finding qualified candidates for open positions has grown to be a challenging endeavor for an organization's human resource management. In Odoo, we can manage this easily by using the recruitment module
How to Setup Company Data in Odoo 17 Accounting AppCeline George
?
The Accounting module in Odoo 17 is a comprehensive tool designed to manage all financial aspects of a business. It provides a range of features that help with everything from day-to-day bookkeeping to advanced financial analysis.
How to Install Odoo 18 with Pycharm - Odoo 18 ºÝºÝߣsCeline George
?
In this slide we¡¯ll discuss the installation of odoo 18 with pycharm. Odoo 18 is a powerful business management software known for its enhanced features and ability to streamline operations. Built with Python 3.10+ for the backend and PostgreSQL as its database, it provides a reliable and efficient system.
How to Manage Purchase Order Approval in Odoo 18Celine George
?
In Odoo 18, you can set a minimum amount as a limit, and whenever an order comes above the limit, it requires the approval of the manager. In this slide, we are diving into the crucial aspect of procurement, which is managing purchase order approval.
How to Configure Outgoing and Incoming mail servers in Odoo 18Celine George
?
Odoo 18 features a powerful email management system designed to streamline business communications directly within the platform. By setting up Outgoing Mail Servers, users can effortlessly send emails. Similarly, configuring Incoming Mail Servers enables Odoo to process incoming emails and generate records such as leads or helpdesk tickets.
How to Grant Discounts in Sale Order Lines in Odoo 18 SalesCeline George
?
Odoo offers several ways to apply the discounts on sales orders, providing flexibility for various scenarios. The discounts applied on the sales order lines are global discounts, fixed discounts, and discounts on all order lines. In this slide, we will learn how to grant discounts on the sale order line in Odoo 18.
URLS and routing in odoo 18 - Odoo ºÝºÝߣsCeline George
?
In Odoo 18, URLs and routing are key components of its web framework, used to handle HTTP requests. Understanding them is essential for customizing Odoo¡¯s behavior, creating new pages, and integrating with external systems.
Comparing RFQ Lines for the best price in Odoo 17Celine George
?
The Purchase module in Odoo 17 is a powerful tool designed to streamline the procurement process for businesses. It offers a wide range of features that help manage supplier relationships, track purchase orders, and ensure that procurement activities align with the company's needs.
List View Attributes in Odoo 18 - Odoo ºÝºÝߣsCeline George
?
In this slide, we will explore some of the most useful list view attributes in Odoo 18, explaining their functionalities and demonstrating how they can improve the user experience.
Different Facets of Knowledge on different View.pptxNrapendraVirSingh
?
Knowledge is a fundamental aspect of human understanding, evolving through different dimensions and perspectives. The nature of knowledge varies depending on its scope, application, and contextual relevance. In this lecture, we explore four key distinctions in knowledge: Particular vs. Universal, Concrete vs. Abstract, Practical vs. Theoretical, and Textual vs. Contextual. Each of these dichotomies helps us comprehend how knowledge is categorized, interpreted, and applied across different fields of study.
Relive the excitement of the Sports Quiz conducted as part of the prestigious Quizzitch Cup 2025 at NIT Durgapur! Organized by QuizINC, the official quizzing club, this quiz challenged students with some of the most thrilling and thought-provoking sports trivia.
? What¡¯s Inside?
? A diverse mix of questions across multiple sports ¨C Cricket, Football, Olympics, Formula 1, Tennis, and more!
? Challenging and unique trivia from historic moments to recent sporting events
? Engaging visuals and fact-based questions to test your sports knowledge
? Designed for sports enthusiasts, quiz lovers, and competitive minds
Students, sports fans, and quizzers looking for an exciting challenge
College quizzing clubs and organizers seeking inspiration for their own sports quizzes
Trivia buffs and general knowledge enthusiasts who love sports-related facts
Quizzing is more than just answering questions¡ªit¡¯s about learning, strategizing, and competing. This quiz was crafted to challenge even the sharpest minds and celebrate the world of sports with intellect and passion!
Team Science in the AI Era: Talk for the Association of Cancer Center Administrators (ACCA) Team Science Network (April 2, 2025, 3pm ET)
Host: Jill Slack-Davis (https://www.linkedin.com/in/jill-slack-davis-56024514/)
20250402 Team Science in the AI Era
These slides: TBD
Jim Twin V1 (English video - Heygen) - https://youtu.be/T4S0uZp1SHw
Jim Twin V1 (French video - Heygen) - https://youtu.be/02hCGRJnCoc
Jim Twin (Chat) Tmpt.me Platform ¨C https://tmpt.app/@jimtwin
Jim Twin (English video ¨C OpenSource) ¨C https://youtu.be/mwnZjTNegXE
Jim Blog Post - https://service-science.info/archives/6612
Jim EIT Article (Real Jim) - https://www.eitdigital.eu/newsroom/grow-digital-insights/personal-ai-digital-twins-the-future-of-human-interaction/
Jim EIT Talk (Real Jim) - https://youtu.be/_1X6bRfOqc4
Reid Hoffman (English video) - https://youtu.be/rgD2gmwCS10
A measles outbreak originating in West Texas has been linked to confirmed cases in New Mexico, with additional cases reported in Oklahoma and Kansas. 58 individuals have required hospitalization, and 3 deaths, 2 children in Texas and 1 adult in New Mexico. These fatalities mark the first measles-related deaths in the United States since 2015 and the first pediatric measles death since 2003. The YSPH The Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by faculty and graduate students at the Yale School of Public Health in response to the 2010 Haiti Earthquake. Each year, the VMOC Briefs are produced by students enrolled in Environmental Health Science Course 581 - Public Health Emergencies: Disaster Planning and Response. These briefs compile diverse information sources ¨C including status reports, maps, news articles, and web content¨C into a single, easily digestible document that can be widely shared and used interactively.Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The ¡°unlocked" format enables other responders to share, copy, and adapt it seamlessly.
The students learn by doing, quickly discovering how and where to find critical?information and presenting?it in an easily understood manner.??
Unit No 4- Chemotherapy of Malignancy.pptxAshish Umale
?
In the Pharmacy profession there are many dangerous diseases from which the most dangerous is cancer. Here we study about the cancer as well as its treatment that is supportive to the students of semester VI of Bachelor of Pharmacy. Cancer is a disease of cells of characterized by Progressive, Persistent, Perverted (abnormal), Purposeless and uncontrolled Proliferation of tissues. There are many types of cancer that are harmful to the human body which are responsible to cause the disease condition. The position 7 of guanine residues in DNA is especially susceptible. Cyclophosphamide is a prodrug converted to the active metabolite aldophosphamide in the liver. Procarbazine is a weak MAO inhibitor; produces sedation and other CNS effects, and can interact with foods and drugs. Methotrexate is one of the most commonly used anticancer drugs. Methotrexate (MTX) is a folic acid antagonist. 6-MP and 6-TG are activated to their ribonucleotides, which inhibit purine ring biosynthesis and nucleotide inter conversion. Pyrimidine analogue used in antineoplastic, antifungal and anti psoriatic agents.
5-Fluorouracil (5-FU) is a pyrimidine analog. It is a complex diterpin taxane obtained from bark of the Western yew tree. Actinomycin D is obtained from the fungus of Streptomyces species. Gefitinib and Erlotinib inhibit epidermal growth factor receptor (EGFR) tyrosine kinase. Sunitinib inhibits multiple receptor tyrosine kinases like platelet derived growth factor (PDGF) Rituximab target antigen on the B cells causing lysis of these cells.
Prednisolone is 4 times more potent than hydrocortisone, also more selective glucocorticoid, but fluid retention does occur with high doses. Estradiol is a major regulator of growth for the subset of breast cancers that express the estrogen receptor (ER, ESR1).
Finasteride and dutasteride inhibit conversion of testosterone to dihydrotestosterone in prostate (and other tissues), have palliative effect in advanced carcinoma prostate; occasionally used. Chemotherapy in most cancers (except curable cancers) is generally palliative and suppressive. Chemotherapy is just one of the modes in the treatment of cancer. Other modes like radiotherapy and surgery are also employed to ensure 'total cell kill'.
General Quiz at Maharaja Agrasen College | Amlan Sarkar | Prelims with Answer...Amlan Sarkar
?
Prelims (with answers) + Finals of a general quiz originally conducted on 13th November, 2024.
Part of The Maharaja Quiz - the Annual Quiz Fest of Maharaja Agrasen College, University of Delhi.
Feedback welcome at amlansarkr@gmail.com
Pass SAP C_C4H47_2503 in 2025 | Latest Exam Questions & Study MaterialJenny408767
?
Pass SAP C_C4H47_2503 with expert-designed practice tests & real questions. Start preparing today with ERPPrep.com and boost your SAP Sales Cloud career!
Strategic Corporate Social Responsibility: Sustainable Value Creation Fourthkeileyrazawi
?
Strategic Corporate Social Responsibility: Sustainable Value Creation Fourth
Strategic Corporate Social Responsibility: Sustainable Value Creation Fourth
Strategic Corporate Social Responsibility: Sustainable Value Creation Fourth
URINE SPECIMEN COLLECTION AND HANDLING CLASS 1 FOR ALL PARAMEDICAL OR CLINICA...Prabhakar Singh Patel
?
1. Urine analysis provides important information about renal and metabolic function through physical, chemical, and microscopic examination of urine samples.
2. Proper collection, preservation and timely testing of urine samples is necessary to obtain accurate results and detect abnormalities that can indicate underlying diseases.
3.
A Systematic Review:
Provides a clear and transparent process
? Facilitates efficient integration of information for rational decision
making
? Demonstrates where the effects of health care are consistent and
where they do vary
? Minimizes bias (systematic errors) and reduce chance effects
? Can be readily updated, as needed.
? Meta-analysis can provide more precise estimates than individual
studies
? Allows decisions based on evidence , whole of it and not partial
How to Add Button in the Header of List View in Odoo 17
1. How to add button in the
header of list view in
Odoo 17
Enterprise
2. Introduction
Enterprise
This slide will show that how to add button in the header of list
view in Odoo 17.
In certain situations, we may need to add a custom button to a
specific list view, such as the sales order tree view header.
Let¡¯s look into it.
3. Enterprise
¡ñ Let¡¯s create the templates file inside static/src/xml directory.
¡ñ To add a button in the list view, we need to inherit the
¡®web.ListView.Buttons¡¯ template where the list view buttons are
defined. Within this templates, we¡¯ll add the ¡®Custom Button¡¯ button
along with its ¡®t-on-click¡¯ functionality.
4. Enterprise
¡ñ Create a js file inside static/src/js directory.
¡ñ We can extend the default ListController component and
the template. Then, we can register a new
¡®list_view_button¡¯ item to the view register.
¡ñ Within the js file, we can define the button¡¯s ¡®t-on-click¡¯
function. Here, we can initiate the opening of a wizard for
Quotation Template using the ¡®doAction¡¯ method. Since
we¡¯ve already added the action from the hook in the
default ListController.
6. Enterprise
¡ñ Create a view file inside the views directory.
¡ñ Now, we need to add the created js_class in the list view
of the sale order.
7. Enterprise
¡ñ Then run the pycharm and upgrade the module.
¡ñ Go to the Sales > Orders > Orders > List view.
¡ñ We can see the Custom Button on the list view.
10. For More Info.
Check our company website for related
blogs and Odoo book.
Check our YouTube channel for
functional and technical videos in Odoo.
Enterprise
www.cybrosys.com