The Chaplain Drinks OCP Patch (2024)

  1. Home
  2. Custom Patches
  3. U.S. Air Force
  4. HQ USAF
  5. USAF Chaplain Corps College
  6. The Chaplain Drinks OCP Patch

4 WEEKS FOR PRODUCTION

Made to order

$7.00 each

50+ 100+ 200+ 300+ 500+ 1000+
$4.90 $3.50 $2.80 $2.45 $2.24 $2.10

The Chaplain Drinks OCP Patch (1)

Details

The Chaplain Drinks OCP patch. Your USAF Chaplain Corps College patches are 3.5" tall, and 100% embroidered with Velcro backing.

";document.getElementById('qty-validation-msg-wrap-166433').innerHTML = message; //SWANKEDIT$('#quantity-166433').attr("aria-describedby", "quantity-validation-message");//$('#quantity-166433').focus(); //SWANKCOMMENT$('#quantity-166433').scrollTop();}return IsValidQty;}//ENDSWANKADDfunction UpdateRushOptions() {// Get Default Variant Prices & Determine if On Salevar Price = VarVariantPrice[CurrentVariantId];var SalePrice = VarVariantSalePrice[CurrentVariantId];var OnSale = SalePrice > 0.0 && SalePrice < Price;var BasePrice = CalculateQtyDiscountPrice(OnSale ? SalePrice : Price, 1);// Update Rush Options (when enabled)if (HasRushOptions_62926) {var DiscountChart = RushOptionsChart_62926;for (var i = 0; i < DiscountChart.length; i++) {$('#Rush_Price_' + DiscountChart[i].Id + '_62926').html('+ $' + Number(BasePrice * DiscountChart[i].PercentFee - DiscountChart[i].FixedFee).toLocaleFixed(2) + ' EACH');//SWANKEDIT}}}function UpdatePricesAndArrival() {// Get Default Variant Prices & Determine if On Salevar Price = VarVariantPrice[CurrentVariantId];var SalePrice = VarVariantSalePrice[CurrentVariantId];var OnSale = SalePrice > 0.0 && SalePrice < Price;var BasePrice = OnSale ? SalePrice : Price;var UnitQtyDiscountedPrice = CalculateQtyDiscountPrice(BasePrice, 1);// Update Unit Price$('.unitprice_62926_166433').html(Number(UnitQtyDiscountedPrice).toLocaleFixed(2));$('.origprice_62926').html(Number(Price).toLocaleFixed(2));if (OnSale) $('.on-sale').show(); else $('.on-sale').hide();// SWANKADD// Update Price & variant name on Variants accordin title .var variantHeadingText = $('label[for="variant_' + CurrentVariantId + '"] .option-info').clone().children().remove().end().text();$('.accordion-option-title span').html('(' + variantHeadingText.replace(' Model','') + ')');$('.accordion-price').html("$" + Number(UnitQtyDiscountedPrice).toLocaleFixed(2));// ENDSWANKADD// Update Combined Pricevar CombinedQtyDiscountedPrice = CalculateQtyDiscountPrice(BasePrice, CurrentQty);var CombinedQtyRushFees = CalculateQtyRushFees(UnitQtyDiscountedPrice, CurrentQty);//SWANKADDvar UpsellPriceTotal = parseFloat(document.getElementsByName('UpsellProducts')[0].getAttribute("dataupsellprice")) * CurrentQty;//ENDSWANKADDvar FinalPrice = CombinedQtyDiscountedPrice + CombinedQtyRushFees + UpsellPriceTotal; //SWANKEDIT - added upsell total to final price in js function.$('#price_62926_166433').html(Number(FinalPrice).toLocaleFixed(2));// Update Estimated ArrivalUpdateArrival();}function UpdateArrival() {var ProductionDays = 0;var HasRush = false;// Calculate Arrival from Rush ID (if enabled)if (HasRushOptions_62926) {var CurrentRushId = Number($('input[name="RushID"]').val());if (!isNaN(CurrentRushId) && CurrentRushId > 0) {HasRush = true;try {ProductionDays = GetRushProductionDays(CurrentRushId);} catch { ProductionDays = 0; HasRush = false; }}}// Fallback - Calculate Default Arrival from Productif (ProductionDays === 0) {if (BaseProductionString.indexOf("|") !== -1) {try {var BaseProductionArray = BaseProductionString.split("|");for (var i = 0; i < BaseProductionArray.length; i++) {var delim1 = BaseProductionArray[i].indexOf("-");var delim2 = BaseProductionArray[i].indexOf(",");var LowQty = parseInt(BaseProductionArray[i].substr(0, delim1));var HighQty = parseInt(BaseProductionArray[i].substr(delim1 + 1, delim2 - (delim1 + 1)));var Days = parseInt(BaseProductionArray[i].substr(delim2 + 1));if (parseInt(LowQty) <= parseInt(CurrentQty) && parseInt(CurrentQty) <= parseInt(HighQty)) {ProductionDays = parseInt(Days);break;}}} catch { ProductionDays = 0; HasRush = false; }}else {try {ProductionDays = parseInt(BaseProductionString);} catch { ProductionDays = 0; HasRush = false; }}}// Display Estimated Arrivalif (ProductionDays === 0)$('.prod-eta-date').html("Please Contact Us For More Info.");else {var ArrivalDate = new moment();ArrivalDate.add(ProductionDays, 'days');$('.prod-eta-date').html(ArrivalDate.format("MMMM DD, YYYY"));}// Update Title$('.prod-eta-label').html(HasRush ? "Guaranteed Delivery:" : "Estimated Delivery:");}// Helpers for calculating quantity discount pricesfunction CalculateQtyDiscountPrice(basePrice, qty) {if (HasQtyDiscounts_62926) {var QtyDiscount = GetQtyDiscount();if (QtyDiscountIsFixed_62926)return (basePrice - QtyDiscount) * qty;elsereturn (basePrice * qty * (1 - QtyDiscount));}elsereturn basePrice * qty;}function GetQtyDiscount() {var QtyDiscount = 0.0;var DiscountChart = QtyDiscountChart_62926;for (var i = 0; i < DiscountChart.length; i++) {if (CurrentQty >= DiscountChart[i].LowValue && CurrentQty <= DiscountChart[i].HighValue) {QtyDiscount = DiscountChart[i].Discount;break;}}return QtyDiscount;}// Helpers for calculating rush fees & production daysfunction CalculateQtyRushFees(basePrice, qty) {var RushFee = 0.0;if (HasRushOptions_62926) {var CurrentRushId = Number($('input[name="RushID"]').val());if (!isNaN(CurrentRushId) && CurrentRushId > 0) {var RushFees = GetRushFees(CurrentRushId);RushFee = (basePrice * qty * RushFees.PercentFee) + (qty * RushFees.FixedFee);}}return RushFee;}function GetRushFees(rushId) {var RushFees = { FixedFee: 0.0, PercentFee: 0.0 };if (HasRushOptions_62926) {var DiscountChart = RushOptionsChart_62926;for (var i = 0; i < DiscountChart.length; i++) {if (DiscountChart[i].Id === rushId) {RushFees.FixedFee = DiscountChart[i].FixedFee;RushFees.PercentFee = DiscountChart[i].PercentFee;break;}}}return RushFees;}function GetRushProductionDays(rushId) {var RushProductionDays = 0;if (HasRushOptions_62926) {var DiscountChart = RushOptionsChart_62926;for (var i = 0; i < DiscountChart.length; i++) {if (DiscountChart[i].Id === rushId) {RushProductionDays = DiscountChart[i].ProductionDays;break;}}}return RushProductionDays;}/*Upsells*/function UpsellClick(theItem) {try {var UpsellItemList = '';var UpsellList = document.getElementsByName('Upsell');var UpsellProductList = document.getElementsByName('UpsellProducts');var UpsellPriceTotal = 0;for (i = 0; i < UpsellList.length; i++) {if (UpsellList[i].checked) {UpsellItemList = UpsellItemList + (UpsellItemList.length > 0 ? ',' : '') + UpsellList[i].value;UpsellPriceTotal += parseFloat(UpsellList[i].getAttribute("data-upsell-price"));UpsellList[i].classList.add('checked');}elseUpsellList[i].classList.remove('checked');}for (j = 0; j < UpsellProductList.length; j++) {UpsellProductList[j].value = UpsellItemList;UpsellProductList[j].setAttribute("dataupsellprice", UpsellPriceTotal);}UpdatePricesAndArrival();} catch (err) { console.error(err); }}function SetDefaultUpsell() {try {if ($('#upsell-product-ids-166433').length && $('#upsell-product-ids-166433').val() == '' && $('.upsell-products-wrap input').length && $('.upsell-products-wrap input:checked').length) {$('.upsell-products-wrap input:checked').each(function () {UpsellClick($(this).val());});}} catch (err) { console.error(err); }}/*END Upsells*/

Section 889 Certification Form

Section 889 Certification Form

  • Frequent questions
  • Product videos

What Determines Cost?

The size and order quantity determine the price of your patch. We do not charge extra for multiple colors of thread and our prices are quoted with Velcro included. Subtract $0.30 for any patches without Velcro.

What Does 100% Embroidered Mean?

100% embroidery means that the entire surface of your patch will be stitched with colored thread. In our opinion, a twill background patch is inferior and we do not recommend that option.

Sample Approval

Once your artwork is final, we will create a free sample patch and email a digital photo for your approval. The majority of our patch designs are approved via email. We are happy to mail the actual physical patch sample to you for a sample charge of $50.00, which will take about 2 weeks to arrive.

Artwork Creation

Our free artwork service applies to the designs that are placed into production.

Patch Detail

Depending on the size of your patch, we can actually accomplish very detailed replication of your artwork using embroidered thread. Small, intricate details will not stitch accurately and simpler is often better. Facial features and extremely small text are especially challenging. Cartoonish images stitch quite well and we do a great job with aircraft and weapons.

Rush Service

Rush production is not available, but let us know your deadline and we will do our best to make it happen.

Patch Order Time

Your reorders and our MAJCOM patches will ship about one week sooner than other patches.

Minimum Order Quantity

For new designs, the minimum order quantity is 50 patches, and for existing designs, it's 25 patches. If you would like to order just one or a couple of patches, please visit our Small Quantity Patches page.

Patch Colors

View Thread Chart - PDF

Number of Colors

Your patch price includes 12 colors at no additional charge. We will use as many colors as needed to make you the best quality patch and we will not nickel and dime you for additional colors. Most companies charge an extra $0.15 per color for more than 7 colors.

889 Compliance Forms FAQs

889 Compliance Forms PDF

Aviator Gear Competition Grand Winner

'There is only one place to turn' - 2020 Aviator Gear Competition Grand Winner

At the start of January we launched a competition to see who could send us the best content with their Aviator Gear. Cue Torn Tompkins who blew us all away with this hilarious take on his Aviator Gear...

Aviator Gear Custom Patch Production

Aviator Gear Custom Patch Production

Thank you for visiting us! We are ready to bring your ideas to life with free design services and unlimited revisions. Our mission is to take care of your squadron, and make you look good. Let's get started

Aviator Gear Patches - Before and After

Aviator Gear Patches - Before &After

Free artwork and no setup charges! Our high-quality custom patches are 100% embroidered and designed by the best artists in the business. Send us your ideas at https://www.aviatorgear.com/v-127-custom-pvc-patches.aspx

Aviator Gear PVC Patches

Aviator Gear PVC Patches

Thank you for visiting us! Check out our amazing PVC patches. https://www.aviatorgear.com/v-127-custom-pvc-patches.aspx. Let's get started!

Aviator Gear Pencil Patches

Aviator Gear Pencil Patches

Thank you for visiting us! We are ready to bring your ideas to life with free design services and unlimited revisions. Our 1" x 2" flight suit pencil pocket patches are 100% embroidered with Velcro ba...

The Chaplain Drinks OCP Patch (2)

Any questions? get in Touch

Not sure about the details?Or looking for something extra customized?Just drop us a line and we'll get back to you within 24 hours.

The Chaplain Drinks OCP Patch (2024)

References

Top Articles
Latest Posts
Article information

Author: Sen. Ignacio Ratke

Last Updated:

Views: 5526

Rating: 4.6 / 5 (76 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Sen. Ignacio Ratke

Birthday: 1999-05-27

Address: Apt. 171 8116 Bailey Via, Roberthaven, GA 58289

Phone: +2585395768220

Job: Lead Liaison

Hobby: Lockpicking, LARPing, Lego building, Lapidary, Macrame, Book restoration, Bodybuilding

Introduction: My name is Sen. Ignacio Ratke, I am a adventurous, zealous, outstanding, agreeable, precious, excited, gifted person who loves writing and wants to share my knowledge and understanding with you.