将销售员ID设置为SOLine上的必填字段 [英] Make Salesperson ID a Required field on SOLine

查看:164
本文介绍了将销售员ID设置为SOLine上的必填字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在SOLine上设置销售人员ID为必填字段。但是由于转账单没有销售员,因此仅当我创建转账单以外的其他订单时才应验证。

I need to make Salesperson ID on SOLine as a required field. But as Transfer orders do not have Salesperson, hence it should only validate when I create orders other than Transfer orders.

我尝试使用以下代码,但似乎无法正常工作。可能会被某些现有代码覆盖。让我知道是否有人提出建议。

I tried with below code but it seems it is not working. Might be it is overrided with some existing code. Let me know if anyone has any suggestions.

public PXSetup<SOOrderTypeOperation,
	Where<SOOrderTypeOperation.orderType, Equal<Optional<SOOrderType.orderType>>,
	And<SOOrderTypeOperation.operation, Equal<Optional<SOOrderType.defaultOperation>>>>> sooperation;
			
protected bool IsTransferOrder
{
	get
	{
		return (sooperation.Current.INDocType == INTranType.Transfer);
	}
}

protected virtual void SOLine_RowPersisting(PXCache sender, PXRowPersistingEventArgs e)
{
	var row = (SOLine)e.Row;
	if (row == null) return;

	PXDefaultAttribute.SetPersistingCheck<SOLine.salesPersonID>(sender, row, IsTransferOrder ? PXPersistingCheck.Nothing : PXPersistingCheck.Null);
}

推荐答案

当条件存在时,我通常在行持久化中抛出适当的异常。

I usually thrown an appropriate exception in Row Persisting when the condition exists.

这里是SOShipmentEntry检查传输和检查字段的空值的示例:

Here is an example from SOShipmentEntry checking for transfer and checking the null value of a field:

protected virtual void SOShipment_RowPersisting(PXCache sender, PXRowPersistingEventArgs e)
{
    SOShipment doc = (SOShipment)e.Row;
    if (doc.ShipmentType == SOShipmentType.Transfer && doc.DestinationSiteID == null)
    {
        throw new PXRowPersistingException(typeof(SOOrder.destinationSiteID).Name, null, ErrorMessages.FieldIsEmpty, typeof(SOOrder.destinationSiteID).Name);
    }
}

我也调用了RaiseExceptionHandling,与RowPersisting中的此示例类似

I have also called RaiseExceptionHandling similar to this example within RowPersisting

// sender = PXCache
if (row.OrderQty == Decimal.Zero)
    sender.RaiseExceptionHandling<POLine.orderQty>(row, row.OrderQty, new PXSetPropertyException(Messages.POLineQuantityMustBeGreaterThanZero, PXErrorLevel.Error));

两个示例都应停止保存页面。调用Raise Exception处理应该指出带有红色X的字段,这是更好的方法,并且使用户更容易找到相关字段。

Both examples should stop the page from the save. calling the Raise Exception handling should point out the field with the Red X which is the better approach and easier for the user to find the field in question.

对于您的示例:

protected virtual void SOLine_RowPersisting(PXCache sender, PXRowPersistingEventArgs e)
{
    SOLine row = (SOLine)e.Row;
    if (row == null)
    {
        return;
    }

    if (!IsTransferOrder && row.SalesPersonID == null)
    {
        sender.RaiseExceptionHandling<SOLine.salesPersonID>(row, row.SalesPersonID, new PXSetPropertyException(ErrorMessages.FieldIsEmpty, PXErrorLevel.Error));
    }
}

这篇关于将销售员ID设置为SOLine上的必填字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆