This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE OR REPLACE procedure GRIFES.SP_PRODUCT_AGE_LIMIT_LIST(P_PRODUCTNUMBER VARCHAR2, P_EFFECTIVEDATE DATE, p_recordset OUT SYS_REFCURSOR) | |
| IS | |
| BEGIN | |
| OPEN p_recordset FOR | |
| SELECT | |
| * | |
| FROM (SELECT * | |
| FROM PRODUCT_AGE_SETUP "pas" | |
| ORDER BY "pas".ID ASC) "tbl" | |
| WHERE 1 = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE OR REPLACE PROCEDURE GRIFES.SP_SISMENUWEB_ISHAVEROLE_LIST | |
| ( | |
| P_IDROLE IN SISROLEMENUWEB.IDROLE%TYPE, | |
| P_RECORDSET OUT SYS_REFCURSOR | |
| ) | |
| IS | |
| BEGIN | |
| OPEN P_RECORDSET FOR | |
| SELECT | |
| ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE OR REPLACE PROCEDURE GRIFES.SP_SISMENUWEB_ISHAVEROLE_LIST | |
| ( | |
| P_IDROLE IN SISROLEMENUWEB.IDROLE%TYPE, | |
| P_RECORDSET OUT SYS_REFCURSOR | |
| ) | |
| IS | |
| BEGIN | |
| OPEN P_RECORDSET FOR | |
| SELECT | |
| ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Widget buildListItem(MarketPlaceItemRespValue dataSnapshot) { | |
| return GridView.count( | |
| crossAxisCount: 2, | |
| padding: EdgeInsets.only(top: 13, bottom: 13, left: 4, right: 4), | |
| shrinkWrap: true, | |
| scrollDirection: Axis.vertical, | |
| physics: ClampingScrollPhysics(), | |
| children: List.generate(dataSnapshot.results[0].length, (index) { | |
| return Padding( | |
| padding: const EdgeInsets.all(2.0), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_calendar_carousel/flutter_calendar_carousel.dart' | |
| show CalendarCarousel; | |
| import 'package:flutter_calendar_carousel/classes/event.dart'; | |
| import 'package:flutter_calendar_carousel/classes/event_list.dart'; | |
| import 'package:global_sevilla/views/widgets-container/appBarMainMenu.dart'; | |
| class CalendarPage2 extends StatefulWidget { | |
| @override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| List itemShopTittle = [ | |
| "Homecare Mother", | |
| "Homecare Baby", | |
| "Homecare Child Gold", | |
| "Homecare Kit", | |
| "Homecare Platinium", | |
| "Homecare Bronze", | |
| "Homecare Silver" | |
| ]; | |
| List itemShopPrice = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --Query for Main Chart 2 Percentage | |
| SELECT | |
| ( | |
| SELECT | |
| COUNT(*) | |
| FROM | |
| vwNextService v | |
| WHERE | |
| ROUND(v.LastServiceKm1, -4) = :periodNumber | |
| AND v.CabangID = :idCabang |