API UpdateTransport: Porovnání verzí

Z Podpora.nextis.cz
Přejít na: navigace, hledání
(Založena nová stránka s textem „==== Description ==== Method allows You to update transport in system. ==== Exact name ==== <code>API_UpdateTransport</code> ==== Type ==== Standard exec…“)
 
Řádka 16: Řádka 16:
 
!Relation
 
!Relation
 
|-
 
|-
|ID
+
|I@D
 
|int
 
|int
 
|Internal system id
 
|Internal system id
 
|
 
|
 
|-
 
|-
|TransportName
+
|@TransportName
 
|varchar(250)
 
|varchar(250)
 
|Transport name
 
|Transport name
 
|
 
|
 
|-
 
|-
|Description
+
|@Description
 
|varchar(200)
 
|varchar(200)
 
|Description
 
|Description
 
|
 
|
 
|-
 
|-
|Prohibit
+
|@Prohibit
 
|int
 
|int
 
|Prohibit
 
|Prohibit
 
|
 
|
 
|-
 
|-
|CashPaymentAllowed
+
|@CashPaymentAllowed
 
|int
 
|int
 
|Cash payment allowed
 
|Cash payment allowed
 
|
 
|
 
|-
 
|-
|WireTransferPaymentAllowed
+
|@WireTransferPaymentAllowed
 
|int
 
|int
 
|Wire transfer payment allowed
 
|Wire transfer payment allowed
 
|
 
|
 
|-
 
|-
|HideOnEshop
+
|@HideOnEshop
 
|bit
 
|bit
 
|Hide on eshop
 
|Hide on eshop
 
|
 
|
 
|-
 
|-
|BranchID
+
|@BranchID
 
|int
 
|int
 
|ID of branch from branch list (see relation)
 
|ID of branch from branch list (see relation)

Verze z 2. 8. 2017, 09:21

Description

Method allows You to update transport in system.

Exact name

API_UpdateTransport

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
I@D int Internal system id
@TransportName varchar(250) Transport name
@Description varchar(200) Description
@Prohibit int Prohibit
@CashPaymentAllowed int Cash payment allowed
@WireTransferPaymentAllowed int Wire transfer payment allowed
@HideOnEshop bit Hide on eshop
@BranchID int ID of branch from branch list (see relation) API_GetBranches.ID


Example

 DECLARE @ID int
 DECLARE @TransportName
 DECLARE @Description
 DECLARE @Prohibit
 DECLARE @CashPaymentAllowed
 DECLARE @WireTransferPaymentAllowed
 DECLARE @HideOnEshop
 DECLARE @BranchID
 
 SELECT @ID = ID,
        @TransportName = 'Transport 2',
        @Description = Description,
        @Prohibit = Prohibit,
        @CashPaymentAllowed = CashPaymentAllowed,
        @WireTransferPaymentAllowed = WireTransferPaymentAllowed,
        @HideOnEshop = HideOnEshop,
        @BranchID = BranchID
 FROM   [API_GetTransports] 
 WHERE  ID = 3
 
 EXECUTE [API_UpdateTransport] 
 @ID,
 @TransportName,
 @Description,
 @Prohibit,
 @CashPaymentAllowed,
 @WireTransferPaymentAllowed,
 @HideOnEshop,
 @BranchID

Notices

None.