1. 【新增】售后单售后原因类型支持搜索

2. 【新增】手工创建订单折扣可输入正数

3. 【优化】盘点申请单确认

4. 【修复】采购退货单模拟出库失败问题

5. 【新增】订单金额客户实付与结算金额

6. 【优化】仓库发货统计报表物料名称显示

7. 【优化】自有仓储虚拟发货逻辑

8. 【修复】基础物料分类管理问题
This commit is contained in:
chenping
2026-04-01 11:59:17 +08:00
parent 9341122827
commit 61783b7d01
754 changed files with 46179 additions and 5700 deletions

View File

@@ -14,10 +14,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
class console_finder_delivery{
var $detail_basic = "发货单详情";
var $detail_item = "货品详情";
var $detail_item = "基础物料详情";
var $detail_delivery = "物流单列表";
private $write = '1';
@@ -255,12 +254,6 @@ class console_finder_delivery{
return $ret;
}
/**
* 获取ViewPanel
* @param mixed $caption caption
* @param mixed $color color
* @return mixed 返回结果
*/
public function getViewPanel($caption, $color) {
if ($color == '#eeeeee')
$caption .= '未打印';
@@ -298,11 +291,6 @@ class console_finder_delivery{
var $column_beartime = "成单时间";
var $column_beartime_width = '140';
var $column_beartime_order_field= 'order_createtime';
/**
* column_beartime
* @param mixed $row row
* @return mixed 返回值
*/
public function column_beartime($row) {
return $row[$this->col_prefix . 'order_createtime'] ? date('Y-m-d H:i:s',$row[$this->col_prefix . 'order_createtime']) : '-';
}
@@ -746,11 +734,6 @@ EOF;
var $column_delivery = '配送方式';
var $column_delivery_width = 90;
/**
* column_delivery
* @param mixed $row row
* @return mixed 返回值
*/
public function column_delivery($row)
{
$delivery_mode = $row[$this->col_prefix . 'delivery'];
@@ -765,10 +748,10 @@ EOF;
/**
* 查询仓库
*
*
* @return void
* @author
* */
**/
private function _getBranch($branch_id, $list)
{
static $branchList;
@@ -818,12 +801,6 @@ EOF;
public $column_order_label = '标记';
public $column_order_label_width = 160;
public $column_order_label_order = 30;
/**
* column_order_label
* @param mixed $row row
* @param mixed $list list
* @return mixed 返回值
*/
public function column_order_label($row, $list)
{
$delivery_id = $row['delivery_id'];
@@ -889,4 +866,4 @@ EOF;
return $arrOrderLabel;
}
}
}