"""Contract Constants.""" SUCCESS_CODE = 200 SUCCESS_MESSAGE = 'ok' ACTIVE_CONTRACT_PROCEDURE_NAME = 'sp_get_active_vendor_contract' VENDOR_CONTRACT_CHANGE_HISTORY_TABLE = 'vendor_contract_change_history' SET_PRODUCT_SPLIT_MESSAGE = 'Product arrangement was created for release upc {upc} and Label Product Split is now {product_split}' # noqa Q000, E501 UPDATE_PRODUCT_SPLIT_MESSAGE = ( 'Label Product Split for release upc: {upc} was changed to {product_split}' # noqa Q000, E501 ) DELETE_PRODUCT_SPLIT_MESSAGE = 'Label Product Split for release upc: {upc} was deleted' # noqa Q000, E501 SET_TRACK_SPLIT_MESSAGE = 'Track arrangement was created for track isrc {isrc}, vendor_id {vendor_id} and Label Track Split is now {track_split}.' # noqa Q000, E501 UPDATE_TRACK_SPLIT_MESSAGE = ( 'Track split for isrc {isrc} was changed from {old_track_split} to {track_split}.' # noqa Q000, E501 ) DELETE_TRACK_SPLIT_MESSAGE = ( 'Track Split for isrc {isrc} and vendor_id {vendor_id} was deleted.' # noqa Q000, E501 ) DELETE_PRODUCT_TERRITORY_SPLIT_MESSAGE = ( 'Product Territory Split for UPC {upc} and country name {country_name} was deleted.' # noqa Q000, E501 ) SET_PRODUCT_TERRITORY_SPLIT_MESSAGE = 'Product arrangement in country name {country_name} was created for release UPC {upc} and Label Product Split is now {split_rate}.' # noqa Q000, E501 UPDATE_PRODUCT_TERRITORY_SPLIT_MESSAGE = 'Label Product Split in country name {country_name} for release UPC {upc} was changed from {old_split_rate} to {split_rate}.' # noqa Q000, E501