case select语句出错

时间:2018-02-09 18:26:53

标签: crystal-reports

我有下面的代码抛出错误“剩余文本似乎不是公式的一部分”并从Default:语句中突出显示。我找不到错误

function my_first_custom_post_type() {

// Set UI labels for Custom Post Type
    $labels = array(
        'name'                => _x( 'Movies', 'Post Type General Name', 'twentythirteen' ),
        'singular_name'       => _x( 'Movie', 'Post Type Singular Name', 'twentythirteen' ),
        'menu_name'           => __( 'Movies', 'twentythirteen' ),
        'parent_item_colon'   => __( 'Parent Movie', 'twentythirteen' ),
        'all_items'           => __( 'All Movies', 'twentythirteen' ),
        'view_item'           => __( 'View Movie', 'twentythirteen' ),
        'add_new_item'        => __( 'Add New Movie', 'twentythirteen' ),
        'add_new'             => __( 'Add New', 'twentythirteen' ),
        'edit_item'           => __( 'Edit Movie', 'twentythirteen' ),
        'update_item'         => __( 'Update Movie', 'twentythirteen' ),
        'search_items'        => __( 'Search Movie', 'twentythirteen' ),
        'not_found'           => __( 'Not Found', 'twentythirteen' ),
        'not_found_in_trash'  => __( 'Not found in Trash', 'twentythirteen' ),
    );

// Set other options for Custom Post Type

    $args = array(
        'label'               => __( 'movies', 'twentythirteen' ),
        'description'         => __( 'Movie news and reviews', 'twentythirteen' ),
        'labels'              => $labels,
        // Features this CPT supports in Post Editor
        'supports'            => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),
        // You can associate this CPT with a taxonomy or custom taxonomy. 
        'taxonomies'          => array( 'genres' ),
        /* A hierarchical CPT is like Pages and can have
        * Parent and child items. A non-hierarchical CPT
        * is like Posts.
        */ 
        'hierarchical'        => false,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => true,
        'menu_position'       => 5,
        'can_export'          => true,
        'has_archive'         => true,
        'exclude_from_search' => false,
        'publicly_queryable'  => true,
        'capability_type'     => 'page',
    );

    // Registering your Custom Post Type
    register_post_type( 'movies', $args );

}

/* Hook into the 'init' action so that the function
* Containing our post type registration is not 
* unnecessarily executed. 
*/

add_action( 'init', 'my_first_custom_post_type', 0 );

1 个答案:

答案 0 :(得分:0)

由于Case语句包含多个执行/计算,因此执行/计算必须包含在括号中

  Select {CnBio.CnBio_Constit_Code}
    Case "Alumni":
    **(**
        SoftCreditCountCY_Alum := SoftCreditCountCY_Alum + 1;
        SoftCredit_CY_TotalDollars_Alum :=SoftCredit_CY_TotalDollars_Alum + {CnGf_1SfCrdt_1.CnGf_1SfCrdt_1_Amount};
        Total_SoftCredit_CY_TotalDollars_Alum :=Total_SoftCredit_CY_TotalDollars_Alum + {CnGf_1SfCrdt_1.CnGf_1SfCrdt_1_Amount};            
    **)**
    Default:
    **(**
        SoftCreditCountCY_NonAlum := SoftCreditCountCY_NonAlum + 1;
        SoftCredit_CY_TotalDollars_NonAlum :=SoftCredit_CY_TotalDollars_NonAlum + {CnGf_1SfCrdt_1.CnGf_1SfCrdt_1_Amount};
        Total_SoftCredit_CY_TotalDollars_NonAlum :=Total_SoftCredit_CY_TotalDollars_NonAlum + {CnGf_1SfCrdt_1.CnGf_1SfCrdt_1_Amount};
    **)**