TYPO3: Tt_products, shipping and payment integration

The following code represents how the payment and shipping is integrated in tt_products extension configuration

 

plugin.tt_products{
    
    ### PAYMENT ###
    payment {
        radio = 1
        TAXpercentage = 16
        
        10.title = Payment with Invoice
        10.percentOfTotalShipping = 0
        
        20.title = Payment in Advance
        20.discountDeactive = 1
        20.price.type = count
        20.price.1 = 4
        20.price.6 = 5.8
        20.price.noCostsAmount = 20
        20.showLimit = 99
        
        40.title = Payment by Paypal
        40.handleLib = paymentlib
        40.image.file = EXT:paymentlib_paypal/res/logo_saferpay_color_low.png
        40.handleLib {
            extName = paymentlib_paypal
            extTitle = Paypal Gateway
            extInfo = PayPal enables any business or consumer with an email 
            address to securely, conveniently, and cost-effectively send and receive 
            payments online.
            extImage = typo3conf/ext/paymentlib_paypal/res/paypal_euro.gif
            gatewaymode = form
            paymentMethod = paypal_webpayment_euro
        }
    }

    ### SHIPPING ###
    shipping {
        10.title = Condition One
        10.priceTax.type = weight
        # Weight in Grams
        10.priceTax.1 = 7.50
        10.priceTax.10001 = 15.00
        10.priceTax.30001 = 22.50
        10.priceTax.50001 = 30.00


        20.title = Condition Two
        20.priceTax.type = weight
        20.priceTax.1 = 75.00
        20.priceTax.200001 = 150.00
        20.priceTax.500001 = 250.00
        20.priceTax.1000001 = 450.00
        
        30.title = Condition Three
        30.priceTax.type = weight
        30.priceTax.1 = 40.00
        30.priceTax.10001 = 60.00
        30.priceTax.30001 = 100.00
        30.priceTax.50001 = 150.00
        
        40.title = Condition Four
        40.priceTax.type = weight
        40.priceTax.1 = 175.00
        40.priceTax.10001 = 290.00
    }
}