did a little more work on Refills

This commit is contained in:
caschick221 2024-04-02 16:26:34 -04:00
parent 9c78ff1aed
commit 69e33fd0a8
9 changed files with 24 additions and 16 deletions

View File

@ -155,7 +155,7 @@
<virtualDirectoryDefaults allowSubDirConfig="true" /> <virtualDirectoryDefaults allowSubDirConfig="true" />
<site name="FWA_MAIN" id="1"> <site name="FWA_MAIN" id="1">
<application path="/" applicationPool="Clr4IntegratedAppPool"> <application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\eggman\Nextcloud\TSCT\2nd Year\SEM 4\RiderProjects\FWA_MAIN\FWA_MAIN" /> <virtualDirectory path="/" physicalPath="C:\Users\caschick221\RiderProjects\FWA_MAIN\FWA_MAIN" />
</application> </application>
<bindings> <bindings>
<binding protocol="http" bindingInformation="*:5000:localhost" /> <binding protocol="http" bindingInformation="*:5000:localhost" />

View File

@ -47,10 +47,18 @@ namespace FWA_MAIN
protected void btnRefDelete_OnClick(object sender, EventArgs e) protected void btnRefDelete_OnClick(object sender, EventArgs e)
{ {
try
{
PharmacyDataTier.DeleteRefill(gvRefills.SelectedRow.Cells[0].Text); PharmacyDataTier.DeleteRefill(gvRefills.SelectedRow.Cells[0].Text);
PharmacyDataTier.RefreshRefill(gvRefills.SelectedRow.Cells[4].Text); PharmacyDataTier.RefreshRefill(gvRefills.SelectedRow.Cells[4].Text);
Fill(); Fill();
} }
catch (Exception exception)
{
}
}
protected void gvRefills_OnRowCommand(object sender, GridViewCommandEventArgs e) protected void gvRefills_OnRowCommand(object sender, GridViewCommandEventArgs e)
{ {

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
70b4448723339e99ed60f3c81dc6a5d1da61b1ddf61a97f8541739006170aed6 feafdb195a4113bc7d55e6cf55d7dcf2413ba64944ee378d3abf65104964d9e6

Binary file not shown.

Binary file not shown.