本文整理汇总了Python中shuup_tests.simple_supplier.utils.get_simple_supplier函数的典型用法代码示例。如果您正苦于以下问题:Python get_simple_supplier函数的具体用法?Python get_simple_supplier怎么用?Python get_simple_supplier使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get_simple_supplier函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_refund_with_product_restock
def test_refund_with_product_restock():
shop = get_default_shop()
supplier = get_simple_supplier()
product = create_product(
"test-sku",
shop=get_default_shop(),
default_price=10,
stock_behavior=StockBehavior.STOCKED
)
supplier.adjust_stock(product.id, 5)
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 5
order = create_order_with_product(product, supplier, 2, 200, shop=shop)
order.cache_prices()
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 3
# Create a refund with a parent line and quanity with `restock_products` set to False
product_line = order.lines.first()
order.create_refund([{"line": product_line, "quantity": 1, "restock_products": False}])
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 3
assert order.lines.last().taxful_price == -product_line.base_unit_price
assert order.get_total_unrefunded_amount() == product_line.base_unit_price.amount
# Create a refund with a parent line and quanity with `restock_products` set to True
product_line = order.lines.first()
order.create_refund([{"line": product_line, "quantity": 1, "restock_products": True}])
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 4
assert not order.taxful_total_price
示例2: test_supplier_with_stock_counts
def test_supplier_with_stock_counts(rf, stock_managed):
supplier = get_simple_supplier(stock_managed=stock_managed)
shop = get_default_shop()
product = create_product("simple-test-product", shop, supplier)
quantity = random.randint(100, 600)
if stock_managed:
# Adjust
supplier.adjust_stock(product.pk, quantity)
# Check that count is adjusted
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == quantity
# Since product is stocked with quantity we get no orderability error with quantity
assert not list(supplier.get_orderability_errors(product.get_shop_instance(shop), quantity, customer=None))
# Since product is stocked with quantity we get orderability error with quantity + 1
assert list(supplier.get_orderability_errors(product.get_shop_instance(shop), quantity+1, customer=None))
else:
# Check that count is not adjusted
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 0
# No orderability errors since product is not stocked
assert not list(supplier.get_orderability_errors(product.get_shop_instance(shop), quantity, customer=None))
# Turn it to stocked
supplier.stock_managed = True
supplier.save()
supplier.adjust_stock(product.pk, quantity)
# Check that count is adjusted
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == quantity
# No orderability errors since product is stocked with quantity
assert not list(supplier.get_orderability_errors(product.get_shop_instance(shop), quantity, customer=None))
# Since product is stocked with quantity we get orderability errors with quantity + 1
assert list(supplier.get_orderability_errors(product.get_shop_instance(shop), quantity+1, customer=None))
示例3: test_get_listed_products_orderable_only
def test_get_listed_products_orderable_only():
context = get_jinja_context()
shop = get_default_shop()
simple_supplier = get_simple_supplier()
n_products = 2
# Create product without stock
product = create_product(
"test-sku",
supplier=simple_supplier,
shop=shop,
stock_behavior=StockBehavior.STOCKED
)
assert len(general.get_listed_products(context, n_products, orderable_only=True)) == 0
assert len(general.get_listed_products(context, n_products, orderable_only=False)) == 1
# Increase stock on product
quantity = product.get_shop_instance(shop).minimum_purchase_quantity
simple_supplier.adjust_stock(product.id, quantity)
assert len(general.get_listed_products(context, n_products, orderable_only=True)) == 1
assert len(general.get_listed_products(context, n_products, orderable_only=False)) == 1
# Decrease stock on product
simple_supplier.adjust_stock(product.id, -quantity)
assert len(general.get_listed_products(context, n_products, orderable_only=True)) == 0
assert len(general.get_listed_products(context, n_products, orderable_only=False)) == 1
示例4: test_simple_supplier
def test_simple_supplier(rf):
supplier = get_simple_supplier()
shop = get_default_shop()
product = create_product("simple-test-product", shop)
ss = supplier.get_stock_status(product.pk)
assert ss.product == product
assert ss.logical_count == 0
num = random.randint(100, 500)
supplier.adjust_stock(product.pk, +num)
assert supplier.get_stock_status(product.pk).logical_count == num
# Create order ...
order = create_order_with_product(product, supplier, 10, 3, shop=shop)
quantities = order.get_product_ids_and_quantities()
pss = supplier.get_stock_status(product.pk)
assert pss.logical_count == (num - quantities[product.pk])
assert pss.physical_count == num
# Create shipment ...
shipment = order.create_shipment_of_all_products(supplier)
pss = supplier.get_stock_status(product.pk)
assert pss.physical_count == (num - quantities[product.pk])
# Cancel order...
order.set_canceled()
pss = supplier.get_stock_status(product.pk)
assert pss.logical_count == (num)
# physical stock still the same until shipment exists
assert pss.physical_count == (num - quantities[product.pk])
shipment.soft_delete()
pss = supplier.get_stock_status(product.pk)
assert pss.logical_count == num
assert pss.physical_count == num
示例5: test_process_stock_managed
def test_process_stock_managed(rf, admin_user):
supplier = get_simple_supplier(stock_managed=False)
shop = get_default_shop()
product = create_product("simple-test-product", shop)
request = apply_request_middleware(rf.get("/", data={"stock_managed": True}), user=admin_user)
with pytest.raises(Exception) as ex:
# Should raise exception becasue only POST is allowed
response = process_stock_managed(request, supplier.id, product.id)
request = apply_request_middleware(rf.post("/", data={"stock_managed": True}), user=admin_user)
response = process_stock_managed(request, supplier.id, product.id)
assert response.status_code == 200
# Check no stock count
sc = StockCount.objects.filter(supplier=supplier, product=product).first()
assert sc.logical_count == 0
# Check stock count managed by default
assert sc.stock_managed == True
# Now test with stock managed turned off
request = apply_request_middleware(rf.post("/", data={"stock_managed": False}), user=admin_user)
response = process_stock_managed(request, supplier.id, product.id)
assert response.status_code == 200
# Check stock management is disabled for product
sc = StockCount.objects.filter(
supplier=supplier, product=product).first()
assert sc.stock_managed == False
# Now test with stock managed turned on
request = apply_request_middleware(rf.post("/", data={"stock_managed": True}), user=admin_user)
response = process_stock_managed(request, supplier.id, product.id)
assert response.status_code == 200
# Check stock management is enabled for product
sc = StockCount.objects.filter(
supplier=supplier, product=product).first()
assert sc.stock_managed == True
示例6: test_refund_entire_order
def test_refund_entire_order():
shop = get_default_shop()
supplier = get_simple_supplier()
product = create_product(
"test-sku",
shop=get_default_shop(),
default_price=10,
)
supplier.adjust_stock(product.id, 5)
check_stock_counts(supplier, product, 5, 5)
order = create_order_with_product(product, supplier, 2, 200, Decimal("0.24"), shop=shop)
order.cache_prices()
original_total_price = order.taxful_total_price
check_stock_counts(supplier, product, 5, 3)
# Create a full refund with `restock_products` set to False
order.create_full_refund(restock_products=False)
# Confirm the refund was created with correct amount
assert order.taxless_total_price.amount.value == 0
assert order.taxful_total_price.amount.value == 0
refund_line = order.lines.order_by("ordering").last()
assert refund_line.type == OrderLineType.REFUND
assert refund_line.taxful_price == -original_total_price
# Make sure logical count reflects refunded products
check_stock_counts(supplier, product, 5, 3)
示例7: test_refund_entire_order
def test_refund_entire_order():
shop = get_default_shop()
supplier = get_simple_supplier()
product = create_product(
"test-sku",
shop=get_default_shop(),
default_price=10,
stock_behavior=StockBehavior.STOCKED
)
supplier.adjust_stock(product.id, 5)
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 5
order = create_order_with_product(product, supplier, 2, 200, Decimal("0.1"), shop=shop)
order.cache_prices()
original_total_price = order.taxful_total_price
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 3
# Create a full refund with `restock_products` set to False
order.create_full_refund(restock_products=False)
# Confirm the refund was created with correct amount
assert order.taxless_total_price.amount.value == 0
assert order.taxful_total_price.amount.value == 0
refund_line = order.lines.order_by("ordering").last()
assert refund_line.type == OrderLineType.REFUND
assert refund_line.taxful_price == -original_total_price
# Make sure stock status didn't change
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == 3
示例8: test_refund_entire_order_with_restock
def test_refund_entire_order_with_restock(admin_user):
shop = get_default_shop()
supplier = get_simple_supplier()
product = create_product(
"test-sku",
shop=get_default_shop(),
default_price=10,
)
supplier.adjust_stock(product.id, 5)
_check_stock_counts(supplier, product, 5, 5)
order = create_order_with_product(product, supplier, 2, 200, shop=shop)
order.payment_status = PaymentStatus.DEFERRED
order.cache_prices()
order.save()
_check_stock_counts(supplier, product, 5, 3)
assert not StockAdjustment.objects.filter(created_by=admin_user).exists()
client = _get_client(admin_user)
refund_url = "/api/shuup/order/%s/create_full_refund/" % order.id
data = {"restock_products": True}
response = client.post(refund_url, data, format="json")
assert response.status_code == status.HTTP_201_CREATED
order.refresh_from_db()
# restock logical count
_check_stock_counts(supplier, product, 5, 5)
assert StockAdjustment.objects.filter(created_by=admin_user).exists()
示例9: test_admin_form
def test_admin_form(rf, admin_user):
supplier = get_simple_supplier()
shop = get_default_shop()
product = create_product("simple-test-product", shop, supplier)
request = rf.get("/")
request.user = admin_user
frm = SimpleSupplierForm(product=product, request=request)
# Form contains 1 product even if the product is not stocked
assert len(frm.products) == 1
assert not frm.products[0].is_stocked()
product.stock_behavior = StockBehavior.STOCKED # Make product stocked
product.save()
# Now since product is stocked it should be in the form
frm = SimpleSupplierForm(product=product, request=request)
assert len(frm.products) == 1
# Add stocked children for product
child_product = create_product("child-test-product", shop, supplier)
child_product.stock_behavior = StockBehavior.STOCKED
child_product.save()
child_product.link_to_parent(product)
# Admin form should now contain only child products for product
frm = SimpleSupplierForm(product=product, request=request)
assert len(frm.products) == 1
assert frm.products[0] == child_product
示例10: test_order_source
def test_order_source(rf, admin_user):
"""
Test order source validation with stocked products.
"""
shop = get_default_shop()
supplier = get_simple_supplier()
product = create_product("simple-test-product", shop, supplier)
product.stock_behavior = StockBehavior.STOCKED
product.save()
quantity = 345
supplier.adjust_stock(product.pk, quantity)
assert supplier.get_stock_statuses([product.id])[product.id].logical_count == quantity
assert not list(supplier.get_orderability_errors(product.get_shop_instance(shop), quantity, customer=None))
assert list(supplier.get_orderability_errors(product.get_shop_instance(shop), quantity+1, customer=None))
source = seed_source(admin_user, shop)
source.add_line(
type=OrderLineType.PRODUCT,
product=product,
supplier=supplier,
quantity=quantity,
base_unit_price=source.create_price(10),
)
assert not list(source.get_validation_errors())
source.add_line(
type=OrderLineType.PRODUCT,
product=product,
supplier=supplier,
quantity=quantity,
base_unit_price=source.create_price(10),
)
assert list(source.get_validation_errors())
示例11: test_refund_without_shipment
def test_refund_without_shipment(restock):
shop = get_default_shop()
supplier = get_simple_supplier()
product = create_product(
"test-sku",
shop=get_default_shop(),
default_price=10,
)
# Start out with a supplier with quantity of 10 of a product
supplier.adjust_stock(product.id, 10)
check_stock_counts(supplier, product, physical=10, logical=10)
order = create_order_with_product(product, supplier, 2, 200, shop=shop)
order.cache_prices()
check_stock_counts(supplier, product, physical=10, logical=8)
# Restock value shouldn't matter if we don't have any shipments
product_line = order.lines.first()
order.create_refund([
{"line": product_line, "quantity": 2, "amount": Money(400, order.currency), "restock_products": restock}])
if restock:
check_stock_counts(supplier, product, physical=10, logical=10)
else:
check_stock_counts(supplier, product, physical=10, logical=8)
assert product_line.refunded_quantity == 2
assert order.get_total_tax_amount() == Money(
order.taxful_total_price_value - order.taxless_total_price_value,
order.currency)
示例12: test_create_refund_amount
def test_create_refund_amount(prices_include_tax):
supplier = get_simple_supplier()
order = _get_order(prices_include_tax, True, True)
original_order_total = order.taxful_total_price
num_order_lines = order.lines.count()
# refund the discount lines first
for line in order.lines.discounts():
order.create_refund([
{"line": "amount", "quantity": line.quantity, "amount": line.taxful_price.amount}])
# refund each line 1 by 1
for line in order.lines.products():
order.create_refund([
{"line": "amount", "quantity": 1, "amount": line.taxful_price.amount, "restock_products": True}])
assert order.has_refunds()
#assert not order.can_create_refund()
assert not order.taxful_total_price_value
assert not order.taxless_total_price_value
assert order.lines.refunds().count() == num_order_lines
# we haven't refunded any quantity so the shipping status remains as-is
assert order.shipping_status == ShippingStatus.NOT_SHIPPED
assert order.payment_status == PaymentStatus.FULLY_PAID
assert order.get_total_refunded_amount() == original_order_total.amount
assert not order.get_total_unrefunded_amount().value
for line in order.lines.products():
order.create_refund([
{"line": line, "quantity": line.quantity, "amount": Money(0, "EUR"), "restock_products": True}])
assert order.shipping_status == ShippingStatus.FULLY_SHIPPED
示例13: test_quantity_has_to_be_in_stock
def test_quantity_has_to_be_in_stock(admin_user, settings):
configure(settings)
from shuup_tests.simple_supplier.utils import get_simple_supplier
from shuup.core.models import StockBehavior
shop = factories.get_default_shop()
basket = factories.get_basket()
supplier = get_simple_supplier()
product = factories.create_product("simple-test-product", shop, supplier)
quantity = 256
supplier.adjust_stock(product.pk, quantity)
product.stock_behavior = StockBehavior.STOCKED
product.save()
shop_product = product.shop_products.first()
shop_product.suppliers.add(supplier)
shop_product.save()
client = _get_client(admin_user)
payload = {
'shop': shop.id,
'product': shop_product.id,
'quantity': 493020
}
response = client.post('/api/shuup/basket/{}-{}/add/'.format(shop.pk, basket.key), payload)
assert response.status_code == status.HTTP_400_BAD_REQUEST
assert '"Insufficient stock"' in str(response.content)
示例14: test_create_refund_line_by_line
def test_create_refund_line_by_line(prices_include_tax):
supplier = get_simple_supplier()
order = _get_order(prices_include_tax, True, True)
for line in order.lines.products():
check_stock_counts(supplier, line.product, INITIAL_PRODUCT_QUANTITY, INITIAL_PRODUCT_QUANTITY - line.quantity)
original_order_total = order.taxful_total_price
num_order_lines = order.lines.count()
# refund the discount lines first
for line in order.lines.discounts():
order.create_refund([
{"line": line, "quantity": line.quantity, "amount": line.taxful_price.amount}])
# refund each line 1 by 1
for line in order.lines.products():
order.create_refund([
{"line": line, "quantity": line.quantity, "amount": line.taxful_price.amount, "restock_products": True}])
for line in order.lines.products():
check_stock_counts(supplier, line.product, INITIAL_PRODUCT_QUANTITY, INITIAL_PRODUCT_QUANTITY)
assert order.has_refunds()
assert not order.can_create_refund()
assert not order.taxful_total_price_value
assert not order.taxless_total_price_value
assert order.lines.refunds().count() == num_order_lines
assert order.shipping_status == ShippingStatus.FULLY_SHIPPED
assert order.get_total_refunded_amount() == original_order_total.amount
assert not order.get_total_unrefunded_amount().value
示例15: test_simple_supplier
def test_simple_supplier(rf):
supplier = get_simple_supplier()
shop = get_default_shop()
product = create_product("simple-test-product", shop)
ss = supplier.get_stock_status(product.pk)
assert ss.product == product
assert ss.logical_count == 0
num = random.randint(100, 500)
supplier.adjust_stock(product.pk, +num)
assert supplier.get_stock_status(product.pk).logical_count == num
# Create order
order = create_order_with_product(product, supplier, 10, 3, shop=shop)
quantities = order.get_product_ids_and_quantities()
pss = supplier.get_stock_status(product.pk)
assert pss.logical_count == (num - quantities[product.pk])
assert pss.physical_count == num
# Create shipment
shipment = order.create_shipment_of_all_products(supplier)
assert isinstance(shipment, Shipment)
pss = supplier.get_stock_status(product.pk)
assert pss.logical_count == (num - quantities[product.pk])
assert pss.physical_count == (num - quantities[product.pk])
# Delete shipment
with pytest.raises(NotImplementedError):
shipment.delete()
shipment.soft_delete()
assert shipment.is_deleted()
pss = supplier.get_stock_status(product.pk)
assert pss.logical_count == (num - quantities[product.pk])
assert pss.physical_count == (num)