ฉันมีการตั้งค่าร้านค้าด้วยผลิตภัณฑ์ 2 รายการ ทัวร์สาธารณะและส่วนตัว ทัวร์สาธารณะคือ 10 สำหรับแต่ละหน่วย
ในทางกลับกันทัวร์ส่วนตัวมีไว้เพื่อเก็บเงินมัดจำเท่านั้น ฉันต้องการยอดรวมเป็น $50 ไม่ว่าจะเลือกจำนวนเท่าใดก็ตาม และชำระส่วนที่เหลือ ณ สถานที่
ฉันพยายามสร้าง PromotionOffer แบบกำหนดเองตามที่แสดงด้านล่าง ฉันสร้างโปรโมชันได้ แต่ดูเหมือนจะใช้ไม่ได้ขณะอยู่ในรถเข็น/ชำระเงิน ฉันยังพยายามสร้างเป็นคูปองและเมื่อฉันใช้คูปอง มันบอกว่ามันใช้ไม่ได้ อาจหมดอายุหรือถูกใช้ไปแล้ว ฉันมีเงื่อนไขหนึ่งข้อและนั่นคือพวกเขามีทัวร์ส่วนตัวในรถเข็น
<?php
เนมสเปซ Drupal\tour_reservation\Plugin\Commerce\PromotionOffer;
ใช้ Drupal\commerce_order\Adjustment;
ใช้ Drupal\commerce_price\ราคา
ใช้ Drupal\commerce_promotion\Entity\PromotionInterface
ใช้ Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\PromotionOfferBase
ใช้ Drupal\Core\Entity\EntityInterface;
ใช้ Drupal\Core\Form\FormStateInterface;
/**
* ลดราคารถเข็นเป็นจำนวนคงที่
*
* @CommercePromotionOffer(
* id = "ทัวร์_reservation_discount_to_fixed",
* label = @Translation("กำหนดยอดรวมของรถเข็นเป็นจำนวนคงที่"),
*entity_type = "commerce_order_item",
* )
*/
class OrderFixedPrice ขยาย PromotionOfferBase {
/**
* {@inheritdoc}
*/
ฟังก์ชั่นสาธารณะ defaultConfiguration () {
กลับ [
'จำนวน' => NULL,
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
ฟังก์ชันสาธารณะ buildConfigurationForm (อาร์เรย์ $form, FormStateInterface $form_state) {
$form += parent::buildConfigurationForm($form, $form_state);
$amount = $this->configuration['จำนวน'];
// ข้อบกพร่องในองค์ประกอบฟอร์ม plugin_select ทำให้ $amount ไม่สมบูรณ์
ถ้า (isset($amount) && !isset($amount['number'], $amount['currency_code'])) {
จำนวน $ = NULL;
}
$แบบฟอร์ม['จำนวนเงิน'] = [
'#type' => 'commerce_price',
'#title' => $this->t('จำนวนเงิน'),
'#default_value' => จำนวน $,
'#required' => จริง,
'#description' => $this->t('ตั้งราคารถเข็น รูปแบบ: 9.99'),
];
คืนฟอร์ม $;
}
/**
* {@inheritdoc}
*/
ฟังก์ชันสาธารณะ validateConfigurationForm (อาร์เรย์ &$form, FormStateInterface $form_state) {
$values = $form_state->getValue($form['#parents']);
ถ้า ($values['amount']['number'] < 0) {
$form_state->setError($form, $this->t('จำนวนเงินไม่สามารถติดลบได้'));
}
}
/**
* {@inheritdoc}
*/
ฟังก์ชันสาธารณะ submitConfigurationForm (อาร์เรย์ &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
$values = $form_state->getValue($form['#parents']);
$this->configuration['amount'] = $values['amount'];
}
/**
* {@inheritdoc}
*/
ใช้ฟังก์ชันสาธารณะ (EntityInterface $entity, PromotionInterface $promotion) {
$this->assertEntity($entity);
/** @var \Drupal\commerce_order\Entity\OrderItemInterface $order_item */
$order_item = $เอนทิตี;
$target_amount = $this->getAmount();
$order_item->addAdjustment(การปรับใหม่([
'type' => 'โปรโมชั่น',
'label' => t('ส่วนลด'),
'จำนวน' => $target_amount,
'source_id' => $promotion->id(),
]));
}
/**
* รับจำนวนข้อเสนอพิเศษ
*
* @return \Drupal\commerce_price\ราคา|null
* จำนวน หรือ NULL ถ้าไม่ทราบ
*/
ฟังก์ชันที่ได้รับการป้องกัน getAmount() {
ถ้า (!empty($this->configuration['amount'])) {
$amount = $this->configuration['จำนวน'];
ส่งคืน Price($amount['number'], $amount['currency_code']);
}
}
}
ฉันไม่ต้องการใช้โปรโมชั่นและเพียงแค่ปรับราคาในรถเข็น ความคิดใด ๆ ?