I need a solution, will pay $30 // SIMPLE // 20 min job
Posted: 2018-03-14 14:34
Ok.... tough times getting support, lets jump right to it, I will pay you $30 through paypal if you can solve this issue and give me clear directions on how to set this up.
I have 4 tables: gutter_tbl, screen_tbl, roofing_tbl and master_table
I wanna filter the invoiced field (and other fields) of the first 3 tables but appgini does not support views so I wanna clone these values inside the master_table.
scenario 1 (gutter page):
scenario 1(master page):
scenario 2 (screen page):
scenario 2 (master page):
scenario 3 (roofing page):
scenario 3 (master page):
Now... if we are in the gutter section trying to create a record, first we gotta check if that record exists in the master table ( we can use the gutterid field for this ), if it exists we update and if not we create a new record. Then, if we delete a record from the gutter table (or screen or roofing) it has to be deleted from the master_table as well. Lastly, it would be awesome if the mass delete function of each table was connected to the master_table.
Whos in for the job? Thanks in advance, have a good day.
*sql statements in the hooks might be the way to do it but I couldnt build it myself*
I have 4 tables: gutter_tbl, screen_tbl, roofing_tbl and master_table
I wanna filter the invoiced field (and other fields) of the first 3 tables but appgini does not support views so I wanna clone these values inside the master_table.
scenario 1 (gutter page):
Code: Select all
gutter_tbl.id = 127
gutter_tbl.invoiced = "yes"
gutter_tbl.add = "Downspot"
Code: Select all
master_table.gutterid = 127
master_table.gutterinvoiced = "yes"
master_table.gutteradd = "Downspot"
master_screenid = ""
master_screeninvoiced = ""
master_table.screendogdoors = ""
master_roofingid = ""
master_rooinfinvoiced = ""
master_table.roofingtype = ""
Code: Select all
screen_tbl.id = 231
screen_tbl.invoiced = "no"
screen_tbl.dogdoors = 3
Code: Select all
master_table.gutterid = ""
master_table.gutterinvoiced = ""
master_table.gutteradd = ""
master_table.screenid = 231
master_table.screeninvoiced = "no"
master_table.screendogdoors = 3
master_table.roofingid = ""
master_table.rooinfinvoiced = ""
master_table.roofingtype = ""
Code: Select all
roofing_tbl.id = 786
roofing_tbl.invoiced = "yes"
roofing.type = "SHINGLE"
Code: Select all
master_table.gutterid =
master_table.gutterinvoiced = ""
master_table.gutteradd = ""
master_table.screenid = ""
master_table.screendogdoors = ""
master_table.screeninvoiced = ""
master_table.roofingid = 786
master_table.rooinfinvoiced = "yes"
master_table.roofingtype = "SHINGLE"
Whos in for the job? Thanks in advance, have a good day.
*sql statements in the hooks might be the way to do it but I couldnt build it myself*